Home
last modified time | relevance | path

Searched refs:kBitsPerIntPtrT (Results 1 – 8 of 8) sorted by relevance

/art/runtime/base/
Dhex_dump.cc38 char out[(kBitsPerIntPtrT / 4) + /* offset */ in Dump()
52 out[kBitsPerIntPtrT / 4] = ':'; in Dump()
61 char* asc = out + (kBitsPerIntPtrT / 4) + /* offset */ 1 + /* colon */ in Dump()
64 for (int i = 0; i < (kBitsPerIntPtrT / 4); i++) { in Dump()
65 *hex++ = gHexDigit[line_offset >> (kBitsPerIntPtrT - 4)]; in Dump()
Dhex_dump_test.cc59 EXPECT_STREQ(oss.str().c_str() + (kBitsPerIntPtrT / 4), in TEST()
/art/runtime/gc/accounting/
Dspace_bitmap_test.cc68 for (size_t j = 0; j < kBitsPerIntPtrT * 3; ++j) { in TEST_F()
79 for (size_t i = 0; i < static_cast<size_t>(kBitsPerIntPtrT); ++i) { in TEST_F()
82 for (size_t j = 0; j < static_cast<size_t>(kBitsPerIntPtrT * 2); ++j) { in TEST_F()
Dspace_bitmap.h62 return offset / kAlignment / kBitsPerIntPtrT; in OffsetToIndex()
67 return static_cast<T>(index * kAlignment * kBitsPerIntPtrT); in IndexToOffset()
72 return (static_cast<size_t>(1)) << ((offset / kAlignment) % kBitsPerIntPtrT); in OffsetToMask()
Dspace_bitmap.cc33 const uint64_t kBytesCoveredPerWord = kAlignment * kBitsPerIntPtrT; in ComputeBitmapSize()
82 DCHECK(IsAligned<kBitsPerIntPtrT * kAlignment>(new_end)); in SetHeapLimit()
149 constexpr size_t buffer_size = sizeof(intptr_t) * kBitsPerIntPtrT; in SweepWalk()
176 if (pb >= &pointer_buf[buffer_size - kBitsPerIntPtrT]) { in SweepWalk()
Dspace_bitmap-inl.h85 const size_t bit_start = (offset_start / kAlignment) % kBitsPerIntPtrT; in VisitMarkedRange()
86 const size_t bit_end = (offset_end / kAlignment) % kBitsPerIntPtrT; in VisitMarkedRange()
/art/runtime/
Dglobals.h34 static constexpr int kBitsPerIntPtrT = sizeof(intptr_t) * kBitsPerByte; variable
/art/compiler/optimizing/
Dlocations.h378 static constexpr uint32_t kBitsForPayload = kBitsPerIntPtrT - kBitsForKind;