Home
last modified time | relevance | path

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

/dflybsd-src/contrib/gcc-4.7/gcc/
H A Dbitmap.h419 next_bit: in bmp_iter_set()
438 goto next_bit; in bmp_iter_set()
462 next_bit: in bmp_iter_and()
481 goto next_bit; in bmp_iter_and()
525 next_bit: in bmp_iter_and_compl()
546 goto next_bit; in bmp_iter_and_compl()
H A Dvarasm.c4971 HOST_WIDE_INT next_bit = next_offset % BITS_PER_UNIT; in output_constructor_bitfield() local
4985 BITS_PER_UNIT - next_bit); in output_constructor_bitfield()
5018 << (BITS_PER_UNIT - this_time - next_bit)); in output_constructor_bitfield()
5050 << next_bit); in output_constructor_bitfield()
/dflybsd-src/contrib/gcc-8.0/gcc/
H A Dbitmap.h590 next_bit: in bmp_iter_set()
609 goto next_bit; in bmp_iter_set()
636 next_bit: in bmp_iter_and()
655 goto next_bit; in bmp_iter_and()
705 next_bit: in bmp_iter_and_compl()
726 goto next_bit; in bmp_iter_and_compl()
H A Dvarasm.c5297 HOST_WIDE_INT next_bit = next_offset % BITS_PER_UNIT; in output_constructor_bitfield() local
5308 this_time = MIN (end_offset - next_offset, BITS_PER_UNIT - next_bit); in output_constructor_bitfield()
5335 << (BITS_PER_UNIT - this_time - next_bit)); in output_constructor_bitfield()
5360 << next_bit); in output_constructor_bitfield()
/dflybsd-src/crypto/libressl/crypto/ec/
H A Dec_mult.c201 int bit, next_bit, mask; in compute_wNAF() local
221 next_bit = bit << 1; /* at most 256 */ in compute_wNAF()
222 mask = next_bit - 1; /* at most 255 */ in compute_wNAF()
250 digit = window_val - next_bit; /* -2^w < digit < 0 */ in compute_wNAF()
281 if (window_val != 0 && window_val != next_bit && window_val != bit) { in compute_wNAF()
291 if (window_val > next_bit) { in compute_wNAF()