| /src/tests/usr.bin/xlint/lint1/ |
| msg_166.c | 34 struct bit_set bits; local 38 bits.minus_1_to_0 = -2; 39 bits.minus_1_to_0 = -1; 40 bits.minus_1_to_0 = 0; 42 bits.minus_1_to_0 = 1; 44 bits.minus_1_to_0 = 2; 47 bits.minus_8_to_7 = -9; 48 bits.minus_8_to_7 = -8; 49 bits.minus_8_to_7 = 7; 51 bits.minus_8_to_7 = 8 [all...] |
| msg_145.c | 8 struct bits { struct 16 struct bits local_bits; 25 struct bits local_bits;
|
| msg_102.c | 14 unsigned bits; member in union:unrelated::__anon8059 36 return u1->bits == u2->bits; 39 * The struct does not have a member named 'bits'. There's another 44 /* expect+2: error: invalid use of member 'bits' [102] */ 45 /* expect+1: error: invalid use of member 'bits' [102] */ 46 return b1->bits == b2->bits;
|
| expr.c | 17 struct bit_fields bits = { 0 }; local 20 return bits.u32 < ul ? bits.u32 : ul;
|
| /src/external/bsd/jemalloc/dist/test/src/ |
| btalloc.c | 4 btalloc(size_t size, unsigned bits) { 5 return btalloc_0(size, bits);
|
| /src/external/bsd/jemalloc.old/dist/test/src/ |
| btalloc.c | 4 btalloc(size_t size, unsigned bits) { 5 return btalloc_0(size, bits);
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/parallel/ |
| basic_iterator.h | 36 #include <bits/c++config.h> 37 #include <bits/stl_iterator_base_types.h> 38 #include <bits/stl_iterator_base_funcs.h> 39 #include <bits/stl_iterator.h>
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/parallel/ |
| basic_iterator.h | 36 #include <bits/c++config.h> 37 #include <bits/stl_iterator_base_types.h> 38 #include <bits/stl_iterator_base_funcs.h> 39 #include <bits/stl_iterator.h>
|
| /src/external/bsd/ipf/dist/lib/ |
| fill6bits.c | 14 void fill6bits(bits, msk) 15 int bits; 18 if (bits == 0) { 31 if (bits == 128) 33 if (bits > 96) { 34 msk[3] = htonl(msk[3] << (128 - bits)); 35 } else if (bits > 64) { 37 msk[2] = htonl(msk[2] << (96 - bits)); 38 } else if (bits > 32) { 41 msk[1] = htonl(msk[1] << (64 - bits)); [all...] |
| /src/external/apache2/llvm/dist/clang/utils/ABITest/ |
| build-and-summarize-all.sh | 10 for bits in 32 64; do 12 echo "-- $kind-$bits --" 13 (cd $kind-$bits && ../build-and-summarize.sh $1)
|
| /src/external/bsd/jemalloc/dist/test/include/test/ |
| btalloc.h | 2 void *btalloc(size_t size, unsigned bits); 5 void *btalloc_##n(size_t size, unsigned bits); 11 btalloc_##n(size_t size, unsigned bits) { \ 14 if (bits == 0) { \ 17 switch (bits & 0x1U) { \ 19 p = (btalloc_0(size, bits >> 1)); \ 22 p = (btalloc_1(size, bits >> 1)); \
|
| /src/external/bsd/jemalloc.old/dist/test/include/test/ |
| btalloc.h | 2 void *btalloc(size_t size, unsigned bits); 5 void *btalloc_##n(size_t size, unsigned bits); 11 btalloc_##n(size_t size, unsigned bits) { \ 14 if (bits == 0) { \ 17 switch (bits & 0x1U) { \ 19 p = (btalloc_0(size, bits >> 1)); \ 22 p = (btalloc_1(size, bits >> 1)); \
|
| /src/lib/libc/gdtoa/test/ |
| xQtest.c | 34 union { long double d; unsigned int bits[4]; } u, w; member in union:__anon339 37 w.bits[0] = w.bits[3] = 0; 41 if (w.bits[0] && w.bits[3])
|
| xtest.c | 86 union { long double d; UShort bits[5]; } u, v[2]; member in union:__anon340 105 sscanf(s+1, "%hx %hx %hx %hx %hx", &u.bits[_0], 106 &u.bits[_1], &u.bits[_2], &u.bits[_3], 107 &u.bits[_4]); 109 printf(" --> f = #%x %x %x %x %x\n", u.bits[_0], 110 u.bits[_1], u.bits[_2], u.bits[_3], u.bits[_4]) [all...] |
| Qtest.c | 85 union { long double d; ULong bits[4]; } u, v[2], w; member in union:__anon331 87 w.bits[0] = w.bits[3] = 0; 91 Ltest = sizeof(long double) == 16 && w.bits[0] && w.bits[3]; 109 /* sscanf(s+1, "%lx %lx %lx %lx", &u.bits[_0], */ 110 /* &u.bits[_1], &u.bits[_2], &u.bits[_3]); */ 111 u.bits[_0] = (ULong)strtoul(s1 = s+1, &se, 16) [all...] |
| /src/external/lgpl3/gmp/dist/ |
| gen-jacobitab.c | 60 #define JACOBI_A(bits) (decode_table[(bits)>>1].a) 61 #define JACOBI_B(bits) (decode_table[(bits)>>1].b) 63 #define JACOBI_E(bits) ((bits) & 1) 64 #define JACOBI_D(bits) (((bits)>>1) == 7) /* Gives 0 for don't care states. */ 90 unsigned bits; local 92 for (bits = 0; bits < 208; bits++ [all...] |
| /src/sys/external/bsd/drm2/include/linux/ |
| hash.h | 39 hash_long(unsigned long value, unsigned int bits) 44 return ((value * factor) >> ((CHAR_BIT * sizeof(value)) - bits)); 48 hash_32(uint32_t value, unsigned int bits) 50 return (value * 0x61c88647) >> (32 - bits); 54 hash_64(uint64_t value, unsigned int bits) 56 return (value * 0x61c8864680b583ebull) >> (64 - bits);
|
| /src/lib/libc/gdtoa/ |
| strtordd.c | 38 ULtodd(L, bits, expt, k) ULong *L; ULong *bits; Long expt; int k; 40 ULtodd(ULong *L, ULong *bits, Long expt, int k) 52 L[_1] = (bits[1] >> 21 | bits[2] << 11) & (ULong)0xffffffffL; 53 L[_0] = (bits[2] >> 21) | (bits[3] << 11 & 0xfffff) 56 if (bits[1] &= 0x1fffff) { 57 i = hi0bits(bits[1]) - 11; 65 bits[1] = bits[1] << i | bits[0] >> (32-i) 189 ULong bits[4]; local [all...] |
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| requires_hosted.h | 23 /** @file bits/requires_hosted.h 31 #include <bits/c++config.h>
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/ |
| complex.h | 32 #include <bits/requires_hosted.h> // TR1
|
| ctype.h | 32 #include <bits/requires_hosted.h> // TR1
|
| fenv.h | 32 #include <bits/requires_hosted.h> // TR1
|
| float.h | 32 #include <bits/requires_hosted.h> // TR1
|
| inttypes.h | 32 #include <bits/requires_hosted.h> // TR1
|
| limits.h | 32 #include <bits/requires_hosted.h> // TR1
|