Searched refs:x (Results 1 – 9 of 9) sorted by relevance
/string/ |
A D | endian.h | 39 # define htobe16(x) __bswap_16 (x) argument 41 # define be16toh(x) __bswap_16 (x) argument 44 # define htobe32(x) __bswap_32 (x) argument 46 # define be32toh(x) __bswap_32 (x) argument 49 # define htobe64(x) __bswap_64 (x) argument 51 # define be64toh(x) __bswap_64 (x) argument 56 # define htole16(x) __bswap_16 (x) argument 58 # define le16toh(x) __bswap_16 (x) argument 61 # define htole32(x) __bswap_32 (x) argument 63 # define le32toh(x) __bswap_32 (x) argument [all …]
|
A D | byteswap.h | 32 #define bswap_16(x) __bswap_16 (x) argument 35 #define bswap_32(x) __bswap_32 (x) argument 38 #define bswap_64(x) __bswap_64 (x) argument
|
A D | ffs.c | 40 unsigned int x = i & -i; in __ffs() local 42 a = x <= 0xffff ? (x <= 0xff ? 0 : 8) : (x <= 0xffffff ? 16 : 24); in __ffs() 44 return table[x >> a] + a; in __ffs()
|
A D | memcmp.c | 205 op_t x; in memcmp_not_common_alignment() local 261 if (x != b3) in memcmp_not_common_alignment() 262 return CMP_LT_OR_GT (x, b3); in memcmp_not_common_alignment() 268 if (x != b0) in memcmp_not_common_alignment() 269 return CMP_LT_OR_GT (x, b0); in memcmp_not_common_alignment() 275 if (x != b1) in memcmp_not_common_alignment() 276 return CMP_LT_OR_GT (x, b1); in memcmp_not_common_alignment() 282 if (x != b2) in memcmp_not_common_alignment() 283 return CMP_LT_OR_GT (x, b2); in memcmp_not_common_alignment() 294 x = MERGE(a2, shl, a3, shr); in memcmp_not_common_alignment() [all …]
|
A D | ffsll.c | 28 unsigned long long int x = i & -i; in ffsll() local 30 if (x <= 0xffffffff) in ffsll()
|
A D | testcopy.c | 45 int x; in do_test() local 47 x = random (); in do_test() 48 while (x == 0); in do_test() 49 rand_mem[i] = x; in do_test()
|
A D | test-string.h | 66 #define GL(x) _##x argument 67 #define GLRO(x) _##x argument
|
A D | Versions | 77 # x*
|
A D | tester.c | 1188 const char *x = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; in test_memcpy() local 1189 strcpy (one, x); in test_memcpy() 1192 check (memcmp (one, x, i) == 0, 8 + (i * 6)); /* Wrote under? */ in test_memcpy() 1225 const char *x = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; in test_mempcpy() local 1226 strcpy (one, x); in test_mempcpy() 1229 check (memcmp (one, x, i) == 0, 8 + (i * 6)); /* Wrote under? */ in test_mempcpy()
|
Completed in 16 milliseconds