Searched refs:endian_test (Results 1 – 3 of 3) sorted by relevance
| /OK3568_Linux_fs/kernel/scripts/mod/ |
| H A D | mk_elfconfig.c | 11 union { short s; char c[2]; } endian_test; in main() local 48 endian_test.s = 0x0102; in main() 49 if (memcmp(endian_test.c, "\x01\x02", 2) == 0) in main() 51 else if (memcmp(endian_test.c, "\x02\x01", 2) == 0) in main()
|
| /OK3568_Linux_fs/u-boot/tools/ |
| H A D | pblimage.c | 41 } endian_test = { {'l', '?', '?', 'b'} }; variable 43 #define ENDIANNESS ((char)endian_test.l)
|
| /OK3568_Linux_fs/kernel/arch/arm/kernel/ |
| H A D | setup.c | 161 static union { char c[4]; unsigned long l; } endian_test __initdata = { { 'l', '?', '?', 'b' } }; 162 #define ENDIANNESS ((char)endian_test.l)
|