代码搜索:alignment
找到约 6,879 项符合「alignment」的源代码
代码结果 6,879
www.eeworm.com/read/340665/3278247
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/340665/3278444
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/312645/3658839
changelog
2005-11-17 Harald Brandl
* Fixed data alignment problems. Cleaned up the naming of
functions to avoid name space pollution. Us the HAL macros to
access the hardw
www.eeworm.com/read/288222/4009051
h resp_defs.h
#ifndef PRINTDEFS_H
#define PRINTDEFS_H
static char *com_strt="#\t\t"; /* used to pad comments for alignment */
static char *fld_pref="F"; /* used as field designator prefix */
#endif
www.eeworm.com/read/287729/4018220
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/447738/1697698
d cfi-s390-1.d
#readelf: -wf
#name: CFI on s390
#as: -m31 -march=g5
The section .eh_frame contains:
00000000 00000010 00000000 CIE
Version: 1
Augmentation: "zR"
Code alignment factor:
www.eeworm.com/read/440906/1775196
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/440906/1777905
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/440906/1779788
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/440906/1779879
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;
}