/external/libcxx/test/std/depr/depr.c.headers/ |
D | stdint_h.pass.cpp | 24 static_assert(sizeof(int8_t)*CHAR_BIT == 8, in main() 29 static_assert(sizeof(int16_t)*CHAR_BIT == 16, in main() 34 static_assert(sizeof(int32_t)*CHAR_BIT == 32, in main() 39 static_assert(sizeof(int64_t)*CHAR_BIT == 64, in main() 45 static_assert(sizeof(uint8_t)*CHAR_BIT == 8, in main() 50 static_assert(sizeof(uint16_t)*CHAR_BIT == 16, in main() 55 static_assert(sizeof(uint32_t)*CHAR_BIT == 32, in main() 60 static_assert(sizeof(uint64_t)*CHAR_BIT == 64, in main() 66 static_assert(sizeof(int_least8_t)*CHAR_BIT >= 8, in main() 71 static_assert(sizeof(int_least16_t)*CHAR_BIT >= 16, in main() [all …]
|
/external/libcxx/test/std/language.support/cstdint/cstdint.syn/ |
D | cstdint.pass.cpp | 25 static_assert(sizeof(std::int8_t)*CHAR_BIT == 8, in main() 30 static_assert(sizeof(std::int16_t)*CHAR_BIT == 16, in main() 35 static_assert(sizeof(std::int32_t)*CHAR_BIT == 32, in main() 40 static_assert(sizeof(std::int64_t)*CHAR_BIT == 64, in main() 46 static_assert(sizeof(std::uint8_t)*CHAR_BIT == 8, in main() 51 static_assert(sizeof(std::uint16_t)*CHAR_BIT == 16, in main() 56 static_assert(sizeof(std::uint32_t)*CHAR_BIT == 32, in main() 61 static_assert(sizeof(std::uint64_t)*CHAR_BIT == 64, in main() 67 static_assert(sizeof(std::int_least8_t)*CHAR_BIT >= 8, in main() 72 static_assert(sizeof(std::int_least16_t)*CHAR_BIT >= 16, in main() [all …]
|
/external/bison/src/ |
D | Sbitset.h | 28 (((NBITS) + CHAR_BIT - 1) / CHAR_BIT) 30 (((SELF) + (INDEX) / CHAR_BIT)) 32 (1 << (CHAR_BIT - 1 - (INDEX) % CHAR_BIT)) 34 (UCHAR_MAX << (CHAR_BIT - 1 - ((NBITS) - 1) % CHAR_BIT)) 87 for ((INDEX) = ((ITER)-(SELF))*CHAR_BIT; \ 88 (INDEX) < (NBITS) && (SELF)+(INDEX)/CHAR_BIT < (ITER)+1; \
|
/external/clang/test/Sema/ |
D | shift.c | 5 #define WORD_BIT (sizeof(int) * CHAR_BIT) 32 c <<= CHAR_BIT; // expected-warning {{shift count >= width of type}} in test() 33 c >>= CHAR_BIT; // expected-warning {{shift count >= width of type}} in test() 34 c <<= CHAR_BIT+1; // expected-warning {{shift count >= width of type}} in test() 35 c >>= CHAR_BIT+1; // expected-warning {{shift count >= width of type}} in test() 36 (void)((long)c << CHAR_BIT); in test() 53 lli = 1LL << (sizeof(long long) * CHAR_BIT - 2); in test()
|
/external/libvpx/libvpx/vpx_dsp/ |
D | bitreader.c | 45 const size_t bits_left = bytes_left * CHAR_BIT; in vpx_reader_fill() 46 int shift = BD_VALUE_SIZE - CHAR_BIT - (count + CHAR_BIT); in vpx_reader_fill() 55 const int bits = (shift & 0xfffffff8) + CHAR_BIT; in vpx_reader_fill() 69 const int bits_over = (int)(shift + CHAR_BIT - (int)bits_left); in vpx_reader_fill() 78 count += CHAR_BIT; in vpx_reader_fill() 80 shift -= CHAR_BIT; in vpx_reader_fill() 95 while (r->count > CHAR_BIT && r->count < BD_VALUE_SIZE) { in vpx_reader_find_end() 96 r->count -= CHAR_BIT; in vpx_reader_find_end()
|
D | bitwriter_buffer.c | 18 return wb->bit_offset / CHAR_BIT + (wb->bit_offset % CHAR_BIT > 0); in vpx_wb_bytes_written() 23 const int p = off / CHAR_BIT; in vpx_wb_write_bit() 24 const int q = CHAR_BIT - 1 - off % CHAR_BIT; in vpx_wb_write_bit() 25 if (q == CHAR_BIT - 1) { in vpx_wb_write_bit()
|
D | bitreader.h | 29 #define BD_VALUE_SIZE ((int)sizeof(BD_VALUE) * CHAR_BIT) 79 unsigned int split = (r->range * prob + (256 - prob)) >> CHAR_BIT; in vpx_read() 86 bigsplit = (BD_VALUE)split << (BD_VALUE_SIZE - CHAR_BIT); in vpx_read()
|
/external/v4l2_codec2/vda/ |
D | vp8_bool_decoder.cc | 53 static_cast<int>(sizeof(Vp8BoolDecoder::value_) * CHAR_BIT) 104 int shift = VP8_BD_VALUE_BIT - CHAR_BIT - (count_ + CHAR_BIT); in FillDecoder() 106 size_t bits_left = bytes_left * CHAR_BIT; in FillDecoder() 107 int x = static_cast<int>(shift + CHAR_BIT - bits_left); in FillDecoder() 117 count_ += CHAR_BIT; in FillDecoder() 120 shift -= CHAR_BIT; in FillDecoder() 151 DCHECK_LE(num_bits, sizeof(int) * CHAR_BIT); in ReadLiteral()
|
/external/libvpx/libvpx/vp8/decoder/ |
D | dboolhuff.c | 38 int shift = VP8_BD_VALUE_SIZE - CHAR_BIT - (count + CHAR_BIT); in vp8dx_bool_decoder_fill() 40 size_t bits_left = bytes_left * CHAR_BIT; in vp8dx_bool_decoder_fill() 41 int x = shift + CHAR_BIT - (int)bits_left; in vp8dx_bool_decoder_fill() 58 count += CHAR_BIT; in vp8dx_bool_decoder_fill() 62 shift -= CHAR_BIT; in vp8dx_bool_decoder_fill()
|
/external/bison/lib/ |
D | float+.h | 138 #define SIZEOF_FLT ((FLT_TOTAL_BIT + CHAR_BIT - 1) / CHAR_BIT) 139 #define SIZEOF_DBL ((DBL_TOTAL_BIT + CHAR_BIT - 1) / CHAR_BIT) 140 #define SIZEOF_LDBL ((LDBL_TOTAL_BIT + CHAR_BIT - 1) / CHAR_BIT)
|
D | fcntl.c | 56 unsigned char fds_to_close[OPEN_MAX_MAX / CHAR_BIT]; in dupfd() 112 index = (unsigned int) duplicated_fd / CHAR_BIT; in dupfd() 122 fds_to_close[index] |= 1 << ((unsigned int) duplicated_fd % CHAR_BIT); in dupfd() 131 duplicated_fd < fds_to_close_bound * CHAR_BIT; in dupfd() 133 if ((fds_to_close[duplicated_fd / CHAR_BIT] in dupfd() 134 >> (duplicated_fd % CHAR_BIT)) in dupfd()
|
/external/llvm/unittests/ADT/ |
D | PointerEmbeddedIntTest.cpp | 17 PointerEmbeddedInt<int, CHAR_BIT> I = 42, J = 43; in TEST() 21 EXPECT_EQ(sizeof(uintptr_t) * CHAR_BIT - CHAR_BIT, in TEST() 47 PointerEmbeddedInt<intptr_t, CHAR_BIT> IPos = 42, INeg = -42; in TEST() 51 PointerEmbeddedInt<uintptr_t, CHAR_BIT> U = 42, USaturated = 255; in TEST() 69 PointerEmbeddedInt<int, CHAR_BIT> I = 42; in TEST()
|
/external/libcxx/test/std/utilities/template.bitset/bitset.members/ |
D | to_ullong.pass.cpp | 21 …onst std::size_t M = sizeof(unsigned long long) * CHAR_BIT < N ? sizeof(unsigned long long) * CHAR… in test_to_ullong() 23 …ze_t X = is_M_zero ? sizeof(unsigned long long) * CHAR_BIT - 1 : sizeof(unsigned long long) * CHAR… in test_to_ullong()
|
D | to_ulong.pass.cpp | 22 … const std::size_t M = sizeof(unsigned long) * CHAR_BIT < N ? sizeof(unsigned long) * CHAR_BIT : N; in test_to_ulong() 24 … std::size_t X = is_M_zero ? sizeof(unsigned long) * CHAR_BIT - 1 : sizeof(unsigned long) * CHAR_B… in test_to_ulong()
|
/external/syslinux/lzo/src/ |
D | lzo1x_c.ch | 186 m_len += lzo_bitops_ctlz64(v) / CHAR_BIT; 188 if ((v >> (64 - CHAR_BIT)) == 0) do { 189 v <<= CHAR_BIT; 191 } while ((v >> (64 - CHAR_BIT)) == 0); 193 m_len += lzo_bitops_cttz64(v) / CHAR_BIT; 196 v >>= CHAR_BIT; 220 m_len += lzo_bitops_ctlz32(v) / CHAR_BIT; 222 if ((v >> (32 - CHAR_BIT)) == 0) do { 223 v <<= CHAR_BIT; 225 } while ((v >> (32 - CHAR_BIT)) == 0); [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | SmallBitVector.h | 38 NumBaseBits = sizeof(uintptr_t) * CHAR_BIT, 174 if (sizeof(uintptr_t) * CHAR_BIT == 32) in count() 176 if (sizeof(uintptr_t) * CHAR_BIT == 64) in count() 211 if (sizeof(uintptr_t) * CHAR_BIT == 32) in find_first() 213 if (sizeof(uintptr_t) * CHAR_BIT == 64) in find_first() 229 if (sizeof(uintptr_t) * CHAR_BIT == 32) in find_next() 231 if (sizeof(uintptr_t) * CHAR_BIT == 64) in find_next()
|
/external/e2fsprogs/intl/ |
D | vasnprintf.c | 332 (unsigned int) (sizeof (unsigned long long) * CHAR_BIT in VASNPRINTF() 342 (unsigned int) (sizeof (unsigned long) * CHAR_BIT in VASNPRINTF() 350 (unsigned int) (sizeof (unsigned int) * CHAR_BIT in VASNPRINTF() 362 (unsigned int) (sizeof (unsigned long long) * CHAR_BIT in VASNPRINTF() 371 (unsigned int) (sizeof (unsigned long) * CHAR_BIT in VASNPRINTF() 378 (unsigned int) (sizeof (unsigned int) * CHAR_BIT in VASNPRINTF() 389 (unsigned int) (sizeof (unsigned long long) * CHAR_BIT in VASNPRINTF() 398 (unsigned int) (sizeof (unsigned long) * CHAR_BIT in VASNPRINTF() 405 (unsigned int) (sizeof (unsigned int) * CHAR_BIT in VASNPRINTF() 468 (unsigned int) (sizeof (void *) * CHAR_BIT in VASNPRINTF()
|
/external/swiftshader/third_party/subzero/src/ |
D | IceUtils.h | 41 (static_cast<unsigned int>(N) < (CHAR_BIT * sizeof(value)))); in IsInt() 48 (static_cast<unsigned int>(N) < (CHAR_BIT * sizeof(value)))); in IsUint() 57 (static_cast<unsigned int>(N) < (CHAR_BIT * sizeof(Value)))); in IsAbsoluteUint() 141 ((1 << (CHAR_BIT * sizeof(uint32_t) - __builtin_clz(Size))) - 1) - 1;
|
/external/llvm/include/llvm/ADT/ |
D | PointerEmbeddedInt.h | 30 template <typename IntT, int Bits = sizeof(IntT) * CHAR_BIT> 36 static_assert(Bits < sizeof(uintptr_t) * CHAR_BIT, 42 Shift = sizeof(uintptr_t) * CHAR_BIT - Bits,
|
/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/ |
D | NaClBitstreamReader.h | 541 return NextChar*CHAR_BIT - BitsInCurWord; in GetCurrentBitNo() 546 return BitStream->getErrorOffset() * CHAR_BIT + Position; in getErrorBitNo() 621 return uintptr_t(BitNo/CHAR_BIT) & ~(sizeof(word_t)-1); in getStartWordByteForBit() 626 return unsigned(BitNo & (sizeof(word_t)*CHAR_BIT-1)); in getWordBitNo() 678 BitsInCurWord = BytesRead * CHAR_BIT; in fillCurWord() 682 static const unsigned BitsInWord = sizeof(word_t) * CHAR_BIT; in Read() 761 unsigned BitsToSkip = BitsInCurWord % CHAR_BIT; in SkipToByteBoundary() 814 size_t SkipTo = GetCurrentBitNo() + NumFourBytes*4*CHAR_BIT; in SkipBlock() 815 if (AtEndOfStream() || !canSkipToPos(SkipTo/CHAR_BIT)) in SkipBlock()
|
/external/compiler-rt/test/builtins/Unit/ |
D | fixsfdi_test.c | 36 char assumption_2[sizeof(su_int)*CHAR_BIT == 32] = {0}; 37 char assumption_3[sizeof(float)*CHAR_BIT == 32] = {0};
|
D | floatundisf_test.c | 37 char assumption_2[sizeof(du_int)*CHAR_BIT == 64] = {0}; 38 char assumption_3[sizeof(float)*CHAR_BIT == 32] = {0};
|
D | floatdisf_test.c | 37 char assumption_2[sizeof(di_int)*CHAR_BIT == 64] = {0}; 38 char assumption_3[sizeof(float)*CHAR_BIT == 32] = {0};
|
D | fixunssfsi_test.c | 37 char assumption_2[sizeof(su_int)*CHAR_BIT == 32] = {0}; 38 char assumption_3[sizeof(float)*CHAR_BIT == 32] = {0};
|
D | fixdfdi_test.c | 36 char assumption_2[sizeof(su_int)*CHAR_BIT == 32] = {0}; 37 char assumption_3[sizeof(double)*CHAR_BIT == 64] = {0};
|