HomeSort by relevance Sort by last modified time
    Searched refs:start_bit (Results 1 - 5 of 5) sorted by null

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
bitmap.h 332 /* Initialize a single bitmap iterator. START_BIT is the first bit to
337 unsigned start_bit, unsigned *bit_no)
342 /* Advance elt1 until it is not before the block containing start_bit. */
351 if (bi->elt1->indx >= start_bit / BITMAP_ELEMENT_ALL_BITS)
357 if (bi->elt1->indx != start_bit / BITMAP_ELEMENT_ALL_BITS)
358 start_bit = bi->elt1->indx * BITMAP_ELEMENT_ALL_BITS;
360 /* Initialize for what is now start_bit. */
361 bi->word_no = start_bit / BITMAP_WORD_BITS % BITMAP_ELEMENT_WORDS;
363 bi->bits >>= start_bit % BITMAP_WORD_BITS;
369 start_bit += !bi->bits
    [all...]
  /art/compiler/dex/quick/
resource_mask.h 80 // Two consecutive bits. The start_bit must be even.
81 static constexpr ResourceMask TwoBits(size_t start_bit) {
83 DCHECK_CONSTEXPR((start_bit & 1u) == 0u, << start_bit << " isn't even", Bit(0))
84 ResourceMask(start_bit >= 64u ? 0u : UINT64_C(3) << start_bit,
85 start_bit >= 64u ? UINT64_C(3) << (start_bit - 64u) : 0u);
  /external/e2fsprogs/lib/ext2fs/
blkmap64_ba.c 215 unsigned int start_bit, len_bit = len % 8; local
226 start_bit = start % 8;
228 if (start_bit != 0) {
233 mark_count = 8 - start_bit;
234 if (len < 8 - start_bit) {
236 mark_bit = len + start_bit - 1;
249 else if (len <= 8 - start_bit)
gen_bitmap.c 439 unsigned int start_bit, len_bit = len % 8; local
449 start_bit = start % 8;
451 if (start_bit != 0) {
456 mark_count = 8 - start_bit;
457 if (len < 8 - start_bit) {
459 mark_bit = len + start_bit - 1;
472 else if (len <= 8 - start_bit)
  /art/runtime/
class_linker.cc 5601 uint32_t start_bit = start_offset \/ sizeof(mirror::HeapReference<mirror::Object>); local
    [all...]

Completed in 300 milliseconds