Searched refs:low_bits (Results 1 – 13 of 13) sorted by relevance
/third_party/rust/crates/minimal-lexical/etc/correctness/test-parse-random/ |
D | runtests.py | 289 low_bits = bits & 0xFFFFFFFFFFFFF 291 mantissa = low_bits 296 assert low_bits == 0, "NaN" 302 mantissa = low_bits | (1 << 52) 322 low_bits = bits & 0x7FFFFF 324 mantissa = low_bits 334 mantissa = low_bits | (1 << 23)
|
/third_party/ffmpeg/libavcodec/ |
D | sonic.c | 257 int i, j, x = 0, low_bits = 0, max = 0; in intlist_write() local 272 low_bits = bits_to_store(energy / (entries * 2)); in intlist_write() 273 if (low_bits > 15) in intlist_write() 274 low_bits = 15; in intlist_write() 276 put_bits(pb, 4, low_bits); in intlist_write() 281 put_bits(pb, low_bits, abs(buf[i])); in intlist_write() 282 copy[i] = abs(buf[i]) >> low_bits; in intlist_write() 354 int i, low_bits = 0, x = 0; in intlist_read() local 364 low_bits = get_bits(gb, 4); in intlist_read() 366 if (low_bits) in intlist_read() [all …]
|
D | vorbisdec.c | 704 unsigned high_bits, low_bits; in vorbis_parse_setup_hdr_residues() local 740 low_bits = get_bits(gb, 3); in vorbis_parse_setup_hdr_residues() 743 cascade[j] = (high_bits << 3) + low_bits; in vorbis_parse_setup_hdr_residues()
|
/third_party/flutter/skia/third_party/externals/wuffs/std/adler32/ |
D | common_adler32.wuffs | 35 s1 = this.state.low_bits(n:16)
|
/third_party/flutter/skia/third_party/externals/wuffs/std/deflate/ |
D | decode_deflate.wuffs | 271 if (length.low_bits(n:16) + length.high_bits(n:16)) <> 0xFFFF { 274 length = length.low_bits(n:16) 355 n_lit = bits.low_bits(n:5) + 257 360 n_dist = bits.low_bits(n:5) + 1 365 n_clen = bits.low_bits(n:4) + 4 466 rep_count += bits.low_bits(n:n_extra_bits) 757 key = key.low_bits(n:cl)
|
D | decode_huffman_slow.wuffs | 136 length = ((length + 253 + bits.low_bits(n:table_entry_n_bits)) & 0xFF) + 3 199 dist_minus_1 = (dist_minus_1 + bits.low_bits(n:table_entry_n_bits)) & 0x7FFF
|
D | decode_huffman_fast.wuffs | 191 length = ((length + 253 + bits.low_bits(n:table_entry_n_bits)) & 0xFF) + 3 283 dist_minus_1 = (dist_minus_1 + bits.low_bits(n:table_entry_n_bits)) & 0x7FFF
|
/third_party/mesa3d/src/compiler/nir/ |
D | nir_search_helpers.h | 459 uint32_t low_bits = in is_lower_half_zero() local 461 if ((nir_src_comp_as_int(instr->src[src].src, swizzle[i]) & low_bits) != 0) in is_lower_half_zero()
|
/third_party/flutter/skia/third_party/externals/wuffs/std/lzw/ |
D | decode_lzw.wuffs | 195 code = bits.low_bits(n:width)
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_arit.c | 1396 LLVMValueRef low_bits; in lp_build_lerp_simple() local 1397 low_bits = lp_build_const_int_vec(bld->gallivm, bld->type, (1 << half_width) - 1); in lp_build_lerp_simple() 1398 res = LLVMBuildAnd(builder, res, low_bits, ""); in lp_build_lerp_simple()
|
/third_party/mesa3d/src/gtest/src/ |
D | gtest.cc | 1753 const UInt32 low_bits = *bits & ((static_cast<UInt32>(1) << n) - 1); in ChopLowBits() local 1755 return low_bits; in ChopLowBits()
|
/third_party/googletest/googletest/src/ |
D | gtest.cc | 1919 const uint32_t low_bits = *bits & ((static_cast<uint32_t>(1) << n) - 1); in ChopLowBits() local 1921 return low_bits; in ChopLowBits()
|
/third_party/cef/tools/distrib/gtest/ |
D | gtest-all.cc | 3410 const uint32_t low_bits = *bits & ((static_cast<uint32_t>(1) << n) - 1); in ChopLowBits() local 3412 return low_bits; in ChopLowBits()
|