/external/e2fsprogs/lib/blkid/ |
tst_types.c | 20 if (sizeof(__u8) != 1) { 21 printf("Sizeof(__u8) is %d should be 1\n", 22 (int)sizeof(__u8)); 25 if (sizeof(__s8) != 1) { 26 printf("Sizeof(_s8) is %d should be 1\n", 27 (int)sizeof(__s8)); 30 if (sizeof(__u16) != 2) { 31 printf("Sizeof(__u16) is %d should be 2\n", 32 (int)sizeof(__u16)); 35 if (sizeof(__s16) != 2) [all...] |
/external/e2fsprogs/lib/ext2fs/ |
tst_types.c | 20 if (sizeof(__u8) != 1) { 21 printf("Sizeof(__u8) is %d should be 1\n", 22 (int)sizeof(__u8)); 25 if (sizeof(__s8) != 1) { 26 printf("Sizeof(_s8) is %d should be 1\n", 27 (int)sizeof(__s8)); 30 if (sizeof(__u16) != 2) { 31 printf("Sizeof(__u16) is %d should be 2\n", 32 (int)sizeof(__u16)); 35 if (sizeof(__s16) != 2) [all...] |
/hardware/ti/wlan/wl1271/utils/ |
report.c | 58 pReport = os_memoryAlloc(hOs, sizeof(TReport)); 66 os_memoryZero(hOs, pReport->aSeverityTable, sizeof(pReport->aSeverityTable)); 67 os_memoryZero(hOs, pReport->aFileEnable, sizeof(pReport->aFileEnable)); 74 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_0 ]), "timer " , sizeof("timer ")); 75 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_1 ]), "measurementMgr " , sizeof("measurementMgr ")); 76 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_2 ]), "measurementMgrSM " , sizeof("measurementMgrSM ")); 77 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_3 ]), "regulatoryDomain " , sizeof("regulatoryDomain ")); 78 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_4 ]), "requestHandler " , sizeof("requestHandler ")); 79 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_5 ]), "SoftGemini " , sizeof("SoftGemini ")); 80 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_6 ]), "spectrumMngmntMgr " , sizeof("spectrumMngmntMgr ")) [all...] |
/system/wlan/ti/wilink_6_1/utils/ |
report.c | 58 pReport = os_memoryAlloc(hOs, sizeof(TReport)); 66 os_memoryZero(hOs, pReport->aSeverityTable, sizeof(pReport->aSeverityTable)); 67 os_memoryZero(hOs, pReport->aFileEnable, sizeof(pReport->aFileEnable)); 74 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_0 ]), "timer " , sizeof("timer ")); 75 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_1 ]), "measurementMgr " , sizeof("measurementMgr ")); 76 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_2 ]), "measurementMgrSM " , sizeof("measurementMgrSM ")); 77 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_3 ]), "regulatoryDomain " , sizeof("regulatoryDomain ")); 78 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_4 ]), "requestHandler " , sizeof("requestHandler ")); 79 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_5 ]), "SoftGemini " , sizeof("SoftGemini ")); 80 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_6 ]), "spectrumMngmntMgr " , sizeof("spectrumMngmntMgr ")) [all...] |
/external/icu4c/samples/layout/ |
arraymem.h | 12 #define ARRAY_SIZE(array) (sizeof array / sizeof array[0]) 14 #define ARRAY_COPY(dst, src, count) memcpy((void *) (dst), (void *) (src), (count) * sizeof (src)[0]) 16 #define NEW_ARRAY(type,count) (type *) malloc((count) * sizeof(type)) 20 #define GROW_ARRAY(array,newSize) realloc((void *) (array), (newSize) * sizeof (array)[0])
|
/external/e2fsprogs/config/ |
parse-types.sh | 24 if (sizeof(__U8_TYPEDEF) != 1) { 25 printf("Sizeof(__U8__TYPEDEF) is %d should be 1\n", 26 sizeof(__U8_TYPEDEF)); 33 if (sizeof(__S8_TYPEDEF) != 1) { 34 printf("Sizeof(_S8__TYPEDEF) is %d should be 1\n", 35 sizeof(__S8_TYPEDEF)); 42 if (sizeof(__U16_TYPEDEF) != 2) { 43 printf("Sizeof(__U16__TYPEDEF) is %d should be 2\n", 44 sizeof(__U16_TYPEDEF)); 51 if (sizeof(__S16_TYPEDEF) != 2) [all...] |
/external/kernel-headers/original/asm-x86/ |
siginfo.h | 5 # define __ARCH_SI_PREAMBLE_SIZE (4 * sizeof(int))
|
/external/oprofile/libabi/ |
op_abi.c | 23 { "sizeof_double", sizeof(double) }, 24 { "sizeof_time_t", sizeof(time_t) }, 25 { "sizeof_u8", sizeof(u8) }, 26 { "sizeof_u32", sizeof(u32) }, 27 { "sizeof_int", sizeof(int) }, 28 { "sizeof_unsigned_int", sizeof(unsigned int) }, 29 { "sizeof_odb_key_t", sizeof(odb_key_t) }, 30 { "sizeof_odb_index_t", sizeof(odb_index_t) }, 31 { "sizeof_odb_value_t", sizeof(odb_value_t) }, 32 { "sizeof_odb_node_nr_t", sizeof(odb_node_nr_t) } [all...] |
/bionic/libc/unistd/ |
eventfd.c | 9 int ret = read(fd, counter, sizeof(*counter)); 11 if (ret == sizeof(*counter)) 19 int ret = write(fd, &counter, sizeof(counter)); 21 if (ret == sizeof(counter))
|
/external/chromium/base/third_party/dmg_fp/ |
gcc_64_bit.patch | 21 -#define PRIVATE_mem ((PRIVATE_MEM+sizeof(double)-1)/sizeof(double)) 22 +#define PRIVATE_mem ((unsigned)((PRIVATE_MEM+sizeof(double)-1)/sizeof(double)))
|
/build/tools/isprelinked/ |
prelink_info.c | 23 FAILIF(sizeof(prelink_info_t) != 8, "Unexpected sizeof(prelink_info_t) == %d!\n", sizeof(prelink_info_t)); 38 FAILIF(sizeof(prelink_info_t) != 8, "Unexpected sizeof(prelink_info_t) == %d!\n", sizeof(prelink_info_t)); 44 int nr = sizeof(prelink_info_t); 55 "read(%d, &info, sizeof(prelink_info_t)): %s (%d)!\n", 57 FAILIF(num_read != sizeof(info), 58 "read(%d, &info, sizeof(prelink_info_t)): did not read %d bytes as [all...] |
/external/elfutils/libelf/ |
gelf_getvernaux.c | 49 assert (sizeof (GElf_Vernaux) == sizeof (Elf32_Verneed)); 50 assert (sizeof (GElf_Vernaux) == sizeof (Elf64_Verneed)); 51 assert (sizeof (GElf_Vernaux) == sizeof (Elf32_Vernaux)); 52 assert (sizeof (GElf_Vernaux) == sizeof (Elf64_Vernaux)); 59 || unlikely (offset + sizeof (GElf_Vernaux) > data->d_size) 60 || unlikely (offset % sizeof (GElf_Vernaux) != 0) [all...] |
gelf_getverneed.c | 49 assert (sizeof (GElf_Verneed) == sizeof (Elf32_Verneed)); 50 assert (sizeof (GElf_Verneed) == sizeof (Elf64_Verneed)); 51 assert (sizeof (GElf_Verneed) == sizeof (Elf32_Vernaux)); 52 assert (sizeof (GElf_Verneed) == sizeof (Elf64_Vernaux)); 59 || unlikely (offset + sizeof (GElf_Verneed) > data->d_size) 60 || unlikely (offset % sizeof (GElf_Verneed) != 0) [all...] |
gelf_fsize.c | 43 [ELF_T_EHDR] = sizeof (ElfW2(LIBELFBITS, Ext_Ehdr)), \ 44 [ELF_T_SHDR] = sizeof (ElfW2(LIBELFBITS, Ext_Shdr)), \ 45 [ELF_T_SYM] = sizeof (ElfW2(LIBELFBITS, Ext_Sym)), \ 46 [ELF_T_REL] = sizeof (ElfW2(LIBELFBITS, Ext_Rel)), \ 47 [ELF_T_RELA] = sizeof (ElfW2(LIBELFBITS, Ext_Rela)), \ 48 [ELF_T_PHDR] = sizeof (ElfW2(LIBELFBITS, Ext_Phdr)), \ 49 [ELF_T_DYN] = sizeof (ElfW2(LIBELFBITS, Ext_Dyn)), \ 50 [ELF_T_VDEF] = sizeof (ElfW2(LIBELFBITS, Ext_Verdef)), \ 51 [ELF_T_VDAUX] = sizeof (ElfW2(LIBELFBITS, Ext_Verdaux)), \ 52 [ELF_T_VNEED] = sizeof (ElfW2(LIBELFBITS, Ext_Verneed)), [all...] |
/bionic/libm/amd64/ |
s_llrint.S | 4 /* sizeof(long) == sizeof(long long) */
|
s_llrintf.S | 4 /* sizeof(long) == sizeof(long long) */
|
/external/libvpx/vp8/common/ |
common.h | 26 assert( sizeof( Dest) == sizeof( Src)); \ 27 vpx_memcpy( Dest, Src, sizeof( Src)); \ 33 assert( sizeof( *Dest) == sizeof( *Src)); \ 34 vpx_memcpy( Dest, Src, N * sizeof( *Src)); \ 37 #define vp8_zero( Dest) vpx_memset( &Dest, 0, sizeof( Dest)); 39 #define vp8_zero_array( Dest, N) vpx_memset( Dest, 0, N * sizeof( *Dest));
|
/bionic/libc/kernel/common/linux/ |
xattr.h | 19 #define XATTR_OS2_PREFIX_LEN (sizeof (XATTR_OS2_PREFIX) - 1) 22 #define XATTR_SECURITY_PREFIX_LEN (sizeof (XATTR_SECURITY_PREFIX) - 1) 25 #define XATTR_SYSTEM_PREFIX_LEN (sizeof (XATTR_SYSTEM_PREFIX) - 1) 28 #define XATTR_TRUSTED_PREFIX_LEN (sizeof (XATTR_TRUSTED_PREFIX) - 1) 31 #define XATTR_USER_PREFIX_LEN (sizeof (XATTR_USER_PREFIX) - 1)
|
/development/ndk/platforms/android-3/include/linux/ |
xattr.h | 19 #define XATTR_OS2_PREFIX_LEN (sizeof (XATTR_OS2_PREFIX) - 1) 22 #define XATTR_SECURITY_PREFIX_LEN (sizeof (XATTR_SECURITY_PREFIX) - 1) 25 #define XATTR_SYSTEM_PREFIX_LEN (sizeof (XATTR_SYSTEM_PREFIX) - 1) 28 #define XATTR_TRUSTED_PREFIX_LEN (sizeof (XATTR_TRUSTED_PREFIX) - 1) 31 #define XATTR_USER_PREFIX_LEN (sizeof (XATTR_USER_PREFIX) - 1)
|
/external/chromium/third_party/icu/source/test/letest/ |
letest.h | 25 #define ARRAY_SIZE(array) (sizeof array / sizeof array[0]) 27 #define ARRAY_COPY(dst, src, count) memcpy((void *) (dst), (void *) (src), (count) * sizeof (src)[0]) 29 #define NEW_ARRAY(type,count) (type *) malloc((count) * sizeof(type)) 33 #define GROW_ARRAY(array,newSize) realloc((void *) (array), (newSize) * sizeof (array)[0])
|
/external/icu4c/test/letest/ |
letest.h | 25 #define ARRAY_SIZE(array) (sizeof array / sizeof array[0]) 27 #define ARRAY_COPY(dst, src, count) memcpy((void *) (dst), (void *) (src), (count) * sizeof (src)[0]) 29 #define NEW_ARRAY(type,count) (type *) malloc((count) * sizeof(type)) 33 #define GROW_ARRAY(array,newSize) realloc((void *) (array), (newSize) * sizeof (array)[0])
|
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/ |
xattr.h | 19 #define XATTR_OS2_PREFIX_LEN (sizeof (XATTR_OS2_PREFIX) - 1) 22 #define XATTR_SECURITY_PREFIX_LEN (sizeof (XATTR_SECURITY_PREFIX) - 1) 25 #define XATTR_SYSTEM_PREFIX_LEN (sizeof (XATTR_SYSTEM_PREFIX) - 1) 28 #define XATTR_TRUSTED_PREFIX_LEN (sizeof (XATTR_TRUSTED_PREFIX) - 1) 31 #define XATTR_USER_PREFIX_LEN (sizeof (XATTR_USER_PREFIX) - 1)
|
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/ |
xattr.h | 19 #define XATTR_OS2_PREFIX_LEN (sizeof (XATTR_OS2_PREFIX) - 1) 22 #define XATTR_SECURITY_PREFIX_LEN (sizeof (XATTR_SECURITY_PREFIX) - 1) 25 #define XATTR_SYSTEM_PREFIX_LEN (sizeof (XATTR_SYSTEM_PREFIX) - 1) 28 #define XATTR_TRUSTED_PREFIX_LEN (sizeof (XATTR_TRUSTED_PREFIX) - 1) 31 #define XATTR_USER_PREFIX_LEN (sizeof (XATTR_USER_PREFIX) - 1)
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/ |
xattr.h | 19 #define XATTR_OS2_PREFIX_LEN (sizeof (XATTR_OS2_PREFIX) - 1) 22 #define XATTR_SECURITY_PREFIX_LEN (sizeof (XATTR_SECURITY_PREFIX) - 1) 25 #define XATTR_SYSTEM_PREFIX_LEN (sizeof (XATTR_SYSTEM_PREFIX) - 1) 28 #define XATTR_TRUSTED_PREFIX_LEN (sizeof (XATTR_TRUSTED_PREFIX) - 1) 31 #define XATTR_USER_PREFIX_LEN (sizeof (XATTR_USER_PREFIX) - 1)
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/ |
xattr.h | 19 #define XATTR_OS2_PREFIX_LEN (sizeof (XATTR_OS2_PREFIX) - 1) 22 #define XATTR_SECURITY_PREFIX_LEN (sizeof (XATTR_SECURITY_PREFIX) - 1) 25 #define XATTR_SYSTEM_PREFIX_LEN (sizeof (XATTR_SYSTEM_PREFIX) - 1) 28 #define XATTR_TRUSTED_PREFIX_LEN (sizeof (XATTR_TRUSTED_PREFIX) - 1) 31 #define XATTR_USER_PREFIX_LEN (sizeof (XATTR_USER_PREFIX) - 1)
|