Home
last modified time | relevance | path

Searched refs:next_bit (Results 1 – 9 of 9) sorted by relevance

/third_party/openssl/crypto/bn/
Dbn_intern.c27 int bit, next_bit, mask; in bn_compute_wNAF() local
47 next_bit = bit << 1; /* at most 256 */ in bn_compute_wNAF()
48 mask = next_bit - 1; /* at most 255 */ in bn_compute_wNAF()
82 digit = window_val - next_bit; /* -2^w < digit < 0 */ in bn_compute_wNAF()
111 if (window_val != 0 && window_val != next_bit in bn_compute_wNAF()
123 if (window_val > next_bit) { in bn_compute_wNAF()
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/test/
Dcmap_iterator_test.cc108 for (int32_t next_bit = current - beginning; in CompareCMapIterAndBitSet() local
110 next_bit = current - init_beginning) { in CompareCMapIterAndBitSet()
112 EXPECT_TRUE(c <= next_bit || current == end); in CompareCMapIterAndBitSet()
113 if (!(c <= next_bit || current == end)) in CompareCMapIterAndBitSet()
115 if (c == next_bit) { in CompareCMapIterAndBitSet()
/third_party/skia/third_party/externals/sfntly/cpp/src/test/
Dcmap_iterator_test.cc108 for (int32_t next_bit = current - beginning; in CompareCMapIterAndBitSet() local
110 next_bit = current - init_beginning) { in CompareCMapIterAndBitSet()
112 EXPECT_TRUE(c <= next_bit || current == end); in CompareCMapIterAndBitSet()
113 if (!(c <= next_bit || current == end)) in CompareCMapIterAndBitSet()
115 if (c == next_bit) { in CompareCMapIterAndBitSet()
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-ot-map.cc203 unsigned int next_bit = global_bit_shift + 1; in compile() local
218 if (!info->max_value || next_bit + bits_needed > 8 * sizeof (hb_mask_t)) in compile()
265 map->shift = next_bit; in compile()
266 map->mask = (1u << (next_bit + bits_needed)) - (1u << next_bit); in compile()
267 next_bit += bits_needed; in compile()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-ot-map.cc223 unsigned int next_bit = hb_popcount (HB_GLYPH_FLAG_DEFINED) + 1; in compile() local
238 if (!info->max_value || next_bit + bits_needed >= global_bit_shift) in compile()
285 map->shift = next_bit; in compile()
286 map->mask = (1u << (next_bit + bits_needed)) - (1u << next_bit); in compile()
287 next_bit += bits_needed; in compile()
/third_party/harfbuzz/src/
Dhb-ot-map.cc208 unsigned int next_bit = global_bit_shift + 1; in compile() local
223 if (!info->max_value || next_bit + bits_needed > 8 * sizeof (hb_mask_t)) in compile()
270 map->shift = next_bit; in compile()
271 map->mask = (1u << (next_bit + bits_needed)) - (1u << next_bit); in compile()
272 next_bit += bits_needed; in compile()
/third_party/gstreamer/gstplugins_bad/gst/siren/
Dhuffman.c32 next_bit (void) in next_bit() function
140 index = (index << 1) | next_bit (); in decode_envelope()
150 index = differential_decoder_tree[i - 1][index][next_bit ()]; in decode_envelope()
339 index = decoder_tree[index + next_bit ()]; in decode_vector()
352 if (next_bit () == 0) in decode_vector()
Ddecoder.c133 decoded_sample_rate_code |= next_bit (); in Siren7_DecodeFrame()
152 rate_control |= next_bit (); in Siren7_DecodeFrame()
172 if (next_bit () == 0) in Siren7_DecodeFrame()
Dhuffman.h33 extern int next_bit(void);