Searched refs:kBitsPerIntPtrT (Results 1 – 8 of 8) sorted by relevance
38 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()
59 EXPECT_STREQ(oss.str().c_str() + (kBitsPerIntPtrT / 4), in TEST()
68 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()
62 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()
33 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()
85 const size_t bit_start = (offset_start / kAlignment) % kBitsPerIntPtrT; in VisitMarkedRange()86 const size_t bit_end = (offset_end / kAlignment) % kBitsPerIntPtrT; in VisitMarkedRange()
34 static constexpr int kBitsPerIntPtrT = sizeof(intptr_t) * kBitsPerByte; variable
378 static constexpr uint32_t kBitsForPayload = kBitsPerIntPtrT - kBitsForKind;