代码搜索:alignment
找到约 6,879 项符合「alignment」的源代码
代码结果 6,879
www.eeworm.com/read/127781/5996956
s copy_user.s
/* Copyright 2002 Andi Kleen, SuSE Labs.
* Subject to the GNU Public License v2.
*
* Functions to copy from and to user space.
*/
#define FIX_ALIGNMENT 1
#define movnti movq /* write to c
www.eeworm.com/read/113685/6126348
changes
Tue 16 May 16:07:18 1995
------------------------
Changes to `trans1.f', renamed `trans1.h90'...
1) Declare alignment dummies `I', `J'
2) Move type declarations for:
LOGN,NITER
www.eeworm.com/read/121651/14744993
h grxlib.h
/*
* $Id: grxlib.h,v 1.2 1998/04/20 07:26:21 mason Exp $
*/
#include "rxvtgrx.h" /* text alignment */
/*function pointer to either StartLine or StartPoint */
typedef void (*LineFunction) (long id
www.eeworm.com/read/477344/1362829
h _noalign.h
/* _noalign.h starts byte data alignment.
*/
#if defined(__IC286__)
#pragma noalign
#elif defined(__IC386__)
#pragma noalign
#elif defined(__BORLANDC__)
#pragma option -a-
#elif defin
www.eeworm.com/read/470720/1445117
c align.c
// Skip if not target: i?86-*-linux* i?86-*-freebsd*
// Special g++ Options: -malign-double
// Origin: Alex Samuel
/* Test the size and alignment of fundamental C types for
www.eeworm.com/read/470720/1447826
c anon4.c
// PRMS Id: 5371
// Bug: g++ screws up the alignment of buff and dies.
// Build don't link:
// Special g++ Options: -O
main()
{
union {
double a;
char buff[sizeof(double)];
};
void *p
www.eeworm.com/read/470720/1449705
c align-wchar.c
#include
#include
static wchar_t w;
int main(void)
{
printf ("+++wchar_t alignment:\n");
printf ("%d\n", __alignof__ (w));
return 0;
}
www.eeworm.com/read/470720/1449796
c align-size.c
#include
#include
static size_t sss;
int main(void)
{
printf ("+++size_t alignment:\n");
printf ("%d\n", __alignof__ (sss));
return 0;
}
www.eeworm.com/read/470720/1449993
c align-ptrdiff.c
#include
#include
static ptrdiff_t pd;
int main(void)
{
printf ("+++ptrdiff_t alignment:\n");
printf ("%d\n", __alignof__ (pd));
return 0;
}
www.eeworm.com/read/470693/1457063
c align.c
// Skip if not target: i?86-*-linux* i?86-*-freebsd*
// Special g++ Options: -malign-double
// Origin: Alex Samuel
/* Test the size and alignment of fundamental C types for