Searched refs:high_val (Results 1 - 5 of 5) sorted by relevance
/third_party/node/deps/brotli/c/dec/ |
H A 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()
|
H A 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/ |
H A 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()
|
H A 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/mesa3d/src/compiler/nir/ |
H A D | nir_opt_load_store_vectorize.c | 848 nir_ssa_def *high_val = high->intrin->src[high->info->value_src].ssa; in vectorize_stores() local 850 high_val = high_val->bit_size == 1 ? nir_b2i(b, high_val, 32) : high_val; in vectorize_stores() 864 data_channels[i] = nir_extract_bits(b, &high_val, 1, offset, 1, new_bit_size); in vectorize_stores() 1249 nir_ssa_def *high_val = high->intrin->src[high->info->value_src].ssa; in try_vectorize_shared2() local 1251 nir_bitcast_vector(&b, high_val, low_size * 8u)); in try_vectorize_shared2()
|
Completed in 5 milliseconds