Searched defs:last_bit (Results 1 - 7 of 7) sorted by relevance

/external/bison/lib/
H A Dabitset.c305 unsigned int last_bit; local
307 last_bit = BITSET_SIZE_ (dst) % BITSET_WORD_BITS;
308 if (last_bit)
310 ((bitset_word) 1 << last_bit) - 1;
H A Dvbitset.c332 unsigned int last_bit; local
334 last_bit = BITSET_SIZE_ (dst) % BITSET_WORD_BITS;
335 if (last_bit)
337 ((bitset_word) 1 << last_bit) - 1;
H A Dlbitset.c886 unsigned int last_bit; local
890 last_bit = n_bits % LBITSET_ELT_BITS;
892 if (last_bit)
902 srcp[windex - elt->index] &= ((bitset_word) 1 << last_bit) - 1;
H A Debitset.c838 unsigned int last_bit; local
842 last_bit = n_bits % EBITSET_ELT_BITS;
844 if (last_bit)
864 srcp[windex - woffset] &= ((bitset_word) 1 << last_bit) - 1;
/external/e2fsprogs/lib/ext2fs/
H A Dgen_bitmap.c362 int last_bit = 0; local
411 last_bit |= 1 << mark_bit;
417 if (last_bit & ADDR[start_byte + len_byte])
/external/chromium/net/disk_cache/
H A Dsparse_control.cc565 int last_bit = (child_offset_ + child_len_ + 1023) >> 10; local
567 if (child_map_.FindNextBit(&start, last_bit, false)) {
606 int last_bit = (child_offset_ + result) >> 10; local
613 if (first_bit > last_bit)
616 if (block_offset && !child_map_.Get(last_bit)) {
618 child_data_.header.last_block = last_bit;
624 child_map_.SetRange(first_bit, last_bit, true);
749 int last_bit = (child_offset_ + child_len_ + 1023) >> 10; local
753 int bits_found = child_map_.FindBits(&found, last_bit, true);
/external/freetype/src/raster/
H A Dftraster.c2740 Int last_bit = last_pixel & 3; local
2744 if ( ras.gray_max_x >= last_cell && last_bit != 3 )
2784 switch ( last_bit )

Completed in 214 milliseconds