Searched refs:high_val (Results 1 – 7 of 7) sorted by relevance
/third_party/node/deps/brotli/c/dec/ |
D | bit_reader.c | 60 uint32_t high_val; in BrotliSafeReadBits32Slow() local 66 !BrotliSafeReadBits(br, n_bits - 16, &high_val)) { in BrotliSafeReadBits32Slow() 70 *val = low_val | (high_val << 16); in BrotliSafeReadBits32Slow()
|
D | bit_reader.h | 259 uint32_t high_val; in BrotliReadBits24() local 263 BrotliTakeBits(br, n_bits - 16, &high_val); in BrotliReadBits24() 264 return low_val | (high_val << 16); in BrotliReadBits24() 279 uint32_t high_val; in BrotliReadBits32() local 283 BrotliTakeBits(br, n_bits - 16, &high_val); in BrotliReadBits32() 284 return low_val | (high_val << 16); in BrotliReadBits32()
|
/third_party/skia/third_party/externals/brotli/c/dec/ |
D | bit_reader.c | 60 uint32_t high_val; in BrotliSafeReadBits32Slow() local 66 !BrotliSafeReadBits(br, n_bits - 16, &high_val)) { in BrotliSafeReadBits32Slow() 70 *val = low_val | (high_val << 16); in BrotliSafeReadBits32Slow()
|
D | bit_reader.h | 259 uint32_t high_val; in BrotliReadBits24() local 263 BrotliTakeBits(br, n_bits - 16, &high_val); in BrotliReadBits24() 264 return low_val | (high_val << 16); in BrotliReadBits24() 279 uint32_t high_val; in BrotliReadBits32() local 283 BrotliTakeBits(br, n_bits - 16, &high_val); in BrotliReadBits32() 284 return low_val | (high_val << 16); in BrotliReadBits32()
|
/third_party/boost/libs/geometry/test/algorithms/envelope_expand/ |
D | envelope.cpp | 71 ct high_val = boost::numeric::bounds<ct>::highest(); in test_empty_geometry() local 74 test_envelope<Geometry>(wkt, high_val, low_val, high_val, low_val); in test_empty_geometry()
|
D | envelope_on_spheroid.cpp | 511 ct high_val = boost::numeric::bounds<ct>::highest(); in test_empty_geometry() local 518 high_val, high_val, low_val, low_val); in test_empty_geometry() 524 high_val, high_val, high_val, low_val, low_val, low_val); in test_empty_geometry()
|
/third_party/mesa3d/src/compiler/nir/ |
D | nir_opt_load_store_vectorize.c | 837 nir_ssa_def *high_val = high->intrin->src[high->info->value_src].ssa; in vectorize_stores() local 839 high_val = high_val->bit_size == 1 ? nir_b2i(b, high_val, 32) : high_val; in vectorize_stores() 853 data_channels[i] = nir_extract_bits(b, &high_val, 1, offset, 1, new_bit_size); in vectorize_stores()
|