/third_party/elfutils/tests/ |
H A D | run-allregs.sh | 32 0: %eax (eax), signed 32 bits 33 1: %ecx (ecx), signed 32 bits 34 2: %edx (edx), signed 32 bits 35 3: %ebx (ebx), signed 32 bits 36 4: %esp (esp), address 32 bits 37 5: %ebp (ebp), address 32 bits 38 6: %esi (esi), signed 32 bits 39 7: %edi (edi), signed 32 bits 40 8: %eip (eip), address 32 bits 41 9: %eflags (eflags), unsigned 32 bits [all...] |
/third_party/libsnd/src/ALAC/ |
H A D | ALACBitUtilities.c | 34 void BitBufferInit (BitBuffer * bits, uint8_t * buffer, uint32_t byteSize) in BitBufferInit() argument 36 bits->cur = buffer ; in BitBufferInit() 37 bits->end = bits->cur + byteSize ; in BitBufferInit() 38 bits->bitIndex = 0 ; in BitBufferInit() 39 bits->byteSize = byteSize ; in BitBufferInit() 44 uint32_t BitBufferRead (BitBuffer * bits, uint8_t numBits) in BitBufferRead() argument 50 returnBits = ((uint32_t) bits->cur [0] << 16) | ((uint32_t) bits->cur [1] << 8) | ((uint32_t) bits in BitBufferRead() 69 BitBufferReadSmall(BitBuffer * bits, uint8_t numBits) BitBufferReadSmall() argument 93 BitBufferReadOne(BitBuffer * bits) BitBufferReadOne() argument 111 BitBufferPeek(BitBuffer * bits, uint8_t numBits) BitBufferPeek() argument 119 BitBufferPeekOne(BitBuffer * bits) BitBufferPeekOne() argument 126 BitBufferUnpackBERSize(BitBuffer * bits) BitBufferUnpackBERSize() argument 139 BitBufferGetPosition(BitBuffer * bits) BitBufferGetPosition() argument 150 BitBufferByteAlign(BitBuffer * bits, int32_t addZeros) BitBufferByteAlign() argument 164 BitBufferAdvance(BitBuffer * bits, uint32_t numBits) BitBufferAdvance() argument 176 BitBufferRewind(BitBuffer * bits, uint32_t numBits) BitBufferRewind() argument 214 BitBufferWrite(BitBuffer * bits, uint32_t bitValues, uint32_t numBits) BitBufferWrite() argument 253 BitBufferReset(BitBuffer * bits) BitBufferReset() argument [all...] |
H A D | alac_decoder.c | 51 static int32_t alac_fill_element (struct BitBuffer * bits) ; 52 static int32_t alac_data_stream_element (struct BitBuffer * bits) ; 137 alac_decode (ALAC_DECODER *p, struct BitBuffer * bits, int32_t * sampleBuffer, uint32_t numSamples, uint32_t * outNumSamples) in alac_decode() argument 168 RequireAction ((bits != NULL) && (sampleBuffer != NULL) && (outNumSamples != NULL), return kALAC_ParamError ;) ; in alac_decode() 180 RequireAction (bits->cur < bits->end, status = kALAC_ParamError ; goto Exit ;) ; in alac_decode() 186 tag = BitBufferReadSmall (bits, 3) ; in alac_decode() 193 elementInstanceTag = BitBufferReadSmall (bits, 4) ; in alac_decode() 196 // read the 12 unused header bits in alac_decode() 197 unusedHeader = (uint16_t) BitBufferRead (bits, 1 in alac_decode() 587 alac_fill_element(struct BitBuffer * bits) alac_fill_element() argument 609 alac_data_stream_element(struct BitBuffer * bits) alac_data_stream_element() argument [all...] |
/third_party/skia/third_party/externals/dawn/src/tests/unittests/ |
H A D | ITypBitsetTests.cpp | 44 void ExpectBits(const Bitset& bits, std::set<size_t> indices) { in ExpectBits() argument 47 for (size_t i = 0; i < bits.size(); ++i) { in ExpectBits() 49 ASSERT_FALSE(bits[Key(i)]) << i; in ExpectBits() 50 ASSERT_FALSE(bits.test(Key(i))) << i; in ExpectBits() 53 ASSERT_TRUE(bits[Key(i)]) << i; in ExpectBits() 54 ASSERT_TRUE(bits.test(Key(i))) << i; in ExpectBits() 58 ASSERT_EQ(bits.to_ullong(), mask); in ExpectBits() 59 ASSERT_EQ(bits.to_ulong(), mask); in ExpectBits() 60 ASSERT_EQ(bits.count(), indices.size()); in ExpectBits() 61 ASSERT_EQ(bits in ExpectBits() 69 Bitset bits; TEST_F() local 75 Bitset bits = {1 << 1 | 1 << 2 | 1 << 7}; TEST_F() local 81 Bitset bits; TEST_F() local 99 Bitset bits = {1 << 1 | 1 << 2 | 1 << 7}; TEST_F() local 116 Bitset bits; TEST_F() local 143 Bitset bits = {1 << 1 | 1 << 2 | 1 << 7}; TEST_F() local 156 Bitset bits = {1 << 1 | 1 << 2 | 1 << 7}; TEST_F() local 169 Bitset bits = {1 << 1 | 1 << 2 | 1 << 7}; TEST_F() local [all...] |
/third_party/astc-encoder/Source/ |
H A D | astcenc_integer_sequence.cpp | 335 * @brief The number of bits, trits, and quints needed for a quant level. 339 /** @brief The number of bits. */ 340 uint8_t bits:6; member 350 * @brief The table of bits, trits, and quints needed for a quant encode. 379 * The length of a quantized sequence in bits is: 436 * @brief Write up to 8 bits at an arbitrary bit offset. 438 * The stored value is at most 8 bits, but can be stored at an offset of between 0 and 7 bits so may 442 * @param bitcount The number of bits to write, starting from LSB. 467 * @brief Read up to 8 bits a 502 unsigned int bits = btq_counts[quant_level].bits; encode_ise() local 666 unsigned int bits = btq_counts[quant_level].bits; decode_ise() local [all...] |
/third_party/node/deps/v8/third_party/zlib/contrib/optimizations/ |
H A D | inffast_chunk.c | 30 state->bits < 8 31 (state->hold >> state->bits) == 0 47 - The maximum input bits used by a length/distance pair is 15 bits for the 48 length code, 5 bits for the length extra, 15 bits for the distance code, 49 and 13 bits for the distance extra. This totals 48 bits, or six bytes. 53 - The wide input data reading option reads 64 input bits at a time. Thus, 57 hold |= read64le(in) << bits; 93 unsigned bits; /* local strm->bits */ global() local [all...] |
/third_party/skia/third_party/externals/zlib/contrib/optimizations/ |
H A D | inffast_chunk.c | 30 state->bits < 8 31 (state->hold >> state->bits) == 0 47 - The maximum input bits used by a length/distance pair is 15 bits for the 48 length code, 5 bits for the length extra, 15 bits for the distance code, 49 and 13 bits for the distance extra. This totals 48 bits, or six bytes. 53 - The wide input data reading option reads 64 input bits at a time. Thus, 57 hold |= read64le(in) << bits; 93 unsigned bits; /* local strm->bits */ global() local [all...] |
/third_party/libevdev/libevdev/ |
H A D | make-event-names.py | 69 def print_bits(bits, prefix): 70 if not hasattr(bits, prefix): 73 for val, name in sorted(list(getattr(bits, prefix).items())): 76 for val, name in sorted(list(getattr(bits, "btn").items())): 82 def print_map(bits): 101 for val in range(bits.max_codes["EV_MAX"] + 1): 102 if val in bits.ev: 103 prefix = bits.ev[val][3:] 117 def print_lookup(bits, prefix): 118 if not hasattr(bits, prefi [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/astc-encoder/Source/ |
H A D | astc_integer_sequence.cpp | 130 int* bits, in find_number_of_bits_trits_quints() 134 *bits = 0; in find_number_of_bits_trits_quints() 140 *bits = 1; in find_number_of_bits_trits_quints() 143 *bits = 0; in find_number_of_bits_trits_quints() 147 *bits = 2; in find_number_of_bits_trits_quints() 150 *bits = 0; in find_number_of_bits_trits_quints() 154 *bits = 1; in find_number_of_bits_trits_quints() 158 *bits = 3; in find_number_of_bits_trits_quints() 161 *bits = 1; in find_number_of_bits_trits_quints() 165 *bits in find_number_of_bits_trits_quints() 128 find_number_of_bits_trits_quints( int quantization_level, int* bits, int* trits, int* quints ) find_number_of_bits_trits_quints() argument 248 int bits, trits, quints; decode_ise() local [all...] |
/third_party/pulseaudio/src/pulsecore/ |
H A D | ipacl.c | 57 int bits; member 77 uint32_t bits; in pa_ip_acl_new() local 82 if (pa_atou(slash, &bits) < 0) { in pa_ip_acl_new() 83 pa_log_warn("Failed to parse number of bits: %s", slash); in pa_ip_acl_new() 87 bits = (uint32_t) -1; in pa_ip_acl_new() 91 e.bits = bits == (uint32_t) -1 ? 32 : (int) bits; in pa_ip_acl_new() 93 if (e.bits > 32) { in pa_ip_acl_new() 94 pa_log_warn("Number of bits ou in pa_ip_acl_new() 207 int i, bits; pa_ip_acl_check() local [all...] |
/third_party/node/deps/zlib/contrib/optimizations/ |
H A D | inffast_chunk.c | 31 state->bits < 8 32 (state->hold >> state->bits) == 0 48 - The maximum input bits used by a length/distance pair is 15 bits for the 49 length code, 5 bits for the length extra, 15 bits for the distance code, 50 and 13 bits for the distance extra. This totals 48 bits, or six bytes. 54 - The wide input data reading option reads 64 input bits at a time. Thus, 58 hold |= read64le(in) << bits; 91 unsigned bits; /* local strm->bits */ inflate_fast_chunk_() local [all...] |
/third_party/rust/crates/bitflags/src/ |
H A D | lib.rs | 28 //! const ABC = Self::A.bits | Self::B.bits | Self::C.bits; 62 //! self.bits = 0; // The `bits` field can be accessed from within the 146 //! implemented by displaying the bits value of the internal struct. 164 //! - `bits`: the raw value of the flags currently stored 166 //! representation contains bits that do not correspond to a 169 //! any bits that do not correspond to defined flags 171 //! all bits (eve [all...] |
/third_party/node/deps/v8/third_party/zlib/ |
H A D | inffast.c | 29 state->bits < 8 41 - The maximum input bits used by a length/distance pair is 15 bits for the 42 length code, 5 bits for the length extra, 15 bits for the distance code, 43 and 13 bits for the distance extra. This totals 48 bits, or six bytes. 72 unsigned bits; /* local strm->bits */ local 78 unsigned op; /* code bits, operatio [all...] |
H A D | infback.c | 92 unsigned sym, bits; local 103 bits = 9; 104 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); 110 bits = 5; 111 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); 135 bits = state->bits; \ 146 state->bits = bits; \ 153 bits 262 unsigned bits; /* bits in bit buffer */ global() local [all...] |
/third_party/node/deps/zlib/ |
H A D | inffast.c | 29 state->bits < 8 41 - The maximum input bits used by a length/distance pair is 15 bits for the 42 length code, 5 bits for the length extra, 15 bits for the distance code, 43 and 13 bits for the distance extra. This totals 48 bits, or six bytes. 69 unsigned bits; /* local strm->bits */ in inflate_fast() local 75 unsigned op; /* code bits, operatio in inflate_fast() [all...] |
H A D | infback.c | 84 unsigned sym, bits; in fixedtables() local 95 bits = 9; in fixedtables() 96 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); in fixedtables() 102 bits = 5; in fixedtables() 103 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); in fixedtables() 127 bits = state->bits; \ 138 state->bits = bits; \ 145 bits 249 unsigned bits; /* bits in bit buffer */ inflateBack() local [all...] |
/third_party/skia/third_party/externals/zlib/ |
H A D | inffast.c | 29 state->bits < 8 41 - The maximum input bits used by a length/distance pair is 15 bits for the 42 length code, 5 bits for the length extra, 15 bits for the distance code, 43 and 13 bits for the distance extra. This totals 48 bits, or six bytes. 72 unsigned bits; /* local strm->bits */ local 78 unsigned op; /* code bits, operatio [all...] |
H A D | infback.c | 92 unsigned sym, bits; local 103 bits = 9; 104 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); 110 bits = 5; 111 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); 135 bits = state->bits; \ 146 state->bits = bits; \ 153 bits 262 unsigned bits; /* bits in bit buffer */ global() local [all...] |
/third_party/zlib/ |
H A D | inffast.c | 29 state->bits < 8 39 - The maximum input bits used by a length/distance pair is 15 bits for the 40 length code, 5 bits for the length extra, 15 bits for the distance code, 41 and 13 bits for the distance extra. This totals 48 bits, or six bytes. 65 unsigned bits; /* local strm->bits */ in inflate_fast() local 71 unsigned op; /* code bits, operatio in inflate_fast() [all...] |
/third_party/node/deps/v8/src/codegen/arm64/ |
H A D | utils-arm64.cc | 15 uint32_t bits = bit_cast<uint32_t>(val); in float_sign() local 16 return unsigned_bitextract_32(31, 31, bits); in float_sign() 20 uint32_t bits = bit_cast<uint32_t>(val); in float_exp() local 21 return unsigned_bitextract_32(30, 23, bits); in float_exp() 25 uint32_t bits = bit_cast<uint32_t>(val); in float_mantissa() local 26 return unsigned_bitextract_32(22, 0, bits); in float_mantissa() 30 uint64_t bits = bit_cast<uint64_t>(val); in double_sign() local 31 return static_cast<uint32_t>(unsigned_bitextract_64(63, 63, bits)); in double_sign() 35 uint64_t bits = bit_cast<uint64_t>(val); in double_exp() local 36 return static_cast<uint32_t>(unsigned_bitextract_64(62, 52, bits)); in double_exp() 40 uint64_t bits = bit_cast<uint64_t>(val); double_mantissa() local 45 uint32_t bits = sign << kFloatExponentBits | exp; float_pack() local 50 uint64_t bits = sign << kDoubleExponentBits | exp; double_pack() local [all...] |
/third_party/mesa3d/src/gallium/frontends/va/ |
H A D | picture_vc1.c | 38 context->desc.vc1.picture_type = vc1->picture_fields.bits.picture_type; in vlVaHandlePictureParameterBufferVC1() 39 context->desc.vc1.frame_coding_mode = vc1->picture_fields.bits.frame_coding_mode; in vlVaHandlePictureParameterBufferVC1() 41 context->desc.vc1.pulldown = vc1->sequence_fields.bits.pulldown; in vlVaHandlePictureParameterBufferVC1() 42 context->desc.vc1.interlace = vc1->sequence_fields.bits.interlace; in vlVaHandlePictureParameterBufferVC1() 43 context->desc.vc1.tfcntrflag = vc1->sequence_fields.bits.tfcntrflag; in vlVaHandlePictureParameterBufferVC1() 44 context->desc.vc1.finterpflag = vc1->sequence_fields.bits.finterpflag; in vlVaHandlePictureParameterBufferVC1() 45 context->desc.vc1.psf = vc1->sequence_fields.bits.psf; in vlVaHandlePictureParameterBufferVC1() 46 context->desc.vc1.dquant = vc1->pic_quantizer_fields.bits.dquant; in vlVaHandlePictureParameterBufferVC1() 47 context->desc.vc1.panscan_flag = vc1->entrypoint_fields.bits.panscan_flag; in vlVaHandlePictureParameterBufferVC1() 49 vc1->reference_fields.bits in vlVaHandlePictureParameterBufferVC1() [all...] |
/third_party/skia/third_party/externals/angle2/src/common/ |
H A D | mathutil.h | 519 static_assert(inputBitCount < (sizeof(T) * 8), "T must have more bits than inputBitCount."); in normalizedToFloat() 552 static_assert(outputBitCount < (sizeof(T) * 8), "T must have more bits than outputBitCount."); 569 "T must have at least as many bits as inputBitCount + inputBitStart."); 578 "T must have at least as many bits as inputBitCount + inputBitStart."); 788 // The first float value will be written to the least significant bits of the output; 789 // the last float value will be written to the most significant bits. 802 // float values. The first float value will be extracted from the least significant bits of the 803 // input; the last float value will be extracted from the most-significant bits. The conversion for 816 // The first float value will be written to the least significant bits of the output; 817 // the last float value will be written to the most significant bits 862 uint8_t bits[4]; PackUnorm4x8() local 884 uint8_t bits = static_cast<uint8_t>((u >> shift) & 0xFF); UnpackUnorm4x8() local 894 int8_t bits[4]; PackSnorm4x8() local 916 int8_t bits = static_cast<int8_t>((u >> shift) & 0xFF); UnpackSnorm4x8() local 1013 BitCountPolyfill(uint32_t bits) BitCountPolyfill() argument 1021 BitCountPolyfill(uint64_t bits) BitCountPolyfill() argument 1029 BitCount(uint32_t bits) BitCount() argument 1038 BitCount(uint64_t bits) BitCount() argument 1057 BitCount(uint32_t bits) BitCount() argument 1066 BitCount(uint64_t bits) BitCount() argument 1078 BitCount(uint32_t bits) BitCount() argument 1083 BitCount(uint64_t bits) BitCount() argument 1089 BitCount(uint8_t bits) BitCount() argument 1094 BitCount(uint16_t bits) BitCount() argument 1102 ScanForward(uint32_t bits) ScanForward() argument 1111 ScanForward(uint64_t bits) ScanForward() argument 1135 ScanReverse(uint32_t bits) ScanReverse() argument 1144 ScanReverse(uint64_t bits) ScanReverse() argument 1168 ScanForward(uint32_t bits) ScanForward() argument 1174 ScanForward(uint64_t bits) ScanForward() argument 1186 ScanReverse(uint32_t bits) ScanReverse() argument 1192 ScanReverse(uint64_t bits) ScanReverse() argument 1211 ScanForward(uint8_t bits) ScanForward() argument 1216 ScanForward(uint16_t bits) ScanForward() argument 1221 ScanReverse(uint8_t bits) ScanReverse() argument 1226 ScanReverse(uint16_t bits) ScanReverse() argument 1233 FindLSB(T bits) FindLSB() argument 1248 FindMSB(T bits) FindMSB() argument [all...] |
/third_party/libwebsockets/win32port/zlib/ |
H A D | infback.c | 83 unsigned sym, bits;
local 94 bits = 9;
95 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
101 bits = 5;
102 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
126 bits = state->bits; \
137 state->bits = bits; \
144 bits 253 unsigned bits; /* bits in bit buffer */ global() local [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | CLBitField.h | 20 explicit BitField(cl_bitfield bits) noexcept : mBits(bits) {} in mBits() 22 BitField &operator=(cl_bitfield bits) in operator =() argument 24 mBits = bits; in operator =() 28 bool operator==(cl_bitfield bits) const { return mBits == bits; } in operator ==() 29 bool operator!=(cl_bitfield bits) const { return mBits != bits; } in operator !=() 35 bool isSet(cl_bitfield bits) const { return (mBits & bits) ! 56 set(cl_bitfield bits) set() argument 58 clear(cl_bitfield bits) clear() argument [all...] |
/third_party/mesa3d/src/intel/vulkan/ |
H A D | anv_util.c | 60 anv_dump_pipe_bits(enum anv_pipe_bits bits) in anv_dump_pipe_bits() argument 62 if (bits & ANV_PIPE_DEPTH_CACHE_FLUSH_BIT) in anv_dump_pipe_bits() 64 if (bits & ANV_PIPE_DATA_CACHE_FLUSH_BIT) in anv_dump_pipe_bits() 66 if (bits & ANV_PIPE_HDC_PIPELINE_FLUSH_BIT) in anv_dump_pipe_bits() 68 if (bits & ANV_PIPE_RENDER_TARGET_CACHE_FLUSH_BIT) in anv_dump_pipe_bits() 70 if (bits & ANV_PIPE_TILE_CACHE_FLUSH_BIT) in anv_dump_pipe_bits() 72 if (bits & ANV_PIPE_STATE_CACHE_INVALIDATE_BIT) in anv_dump_pipe_bits() 74 if (bits & ANV_PIPE_CONSTANT_CACHE_INVALIDATE_BIT) in anv_dump_pipe_bits() 76 if (bits & ANV_PIPE_VF_CACHE_INVALIDATE_BIT) in anv_dump_pipe_bits() 78 if (bits in anv_dump_pipe_bits() [all...] |