代码搜索:alignment
找到约 6,879 项符合「alignment」的源代码
代码结果 6,879
www.eeworm.com/read/190666/5175619
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/190666/5177473
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/190666/5177564
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/190666/5177761
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/162614/5515357
c cls_18byte.c
/* Area: ffi_call, closure_call
Purpose: Check structure passing with different structure size.
Depending on the ABI. Double alignment check on darwin.
Limitations: none.
PR: none.
Orig
www.eeworm.com/read/162614/5515375
c cls_19byte.c
/* Area: ffi_call, closure_call
Purpose: Check structure passing with different structure size.
Depending on the ABI. Double alignment check on darwin.
Limitations: none.
PR: none.
Orig
www.eeworm.com/read/347503/3171595
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/340665/3273564
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/340665/3276273
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/340665/3278156
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;
}