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

  /art/runtime/base/
hex_dump.cc 38 char out[(kBitsPerIntPtrT / 4) + /* offset */
52 out[kBitsPerIntPtrT / 4] = ':';
61 char* asc = out + (kBitsPerIntPtrT / 4) + /* offset */ 1 + /* colon */
64 for (int i = 0; i < (kBitsPerIntPtrT / 4); i++) {
65 *hex++ = gHexDigit[line_offset >> (kBitsPerIntPtrT - 4)];
hex_dump_test.cc 59 EXPECT_STREQ(oss.str().c_str() + (kBitsPerIntPtrT / 4),
  /art/runtime/gc/accounting/
space_bitmap.h 62 return offset / kAlignment / kBitsPerIntPtrT;
67 return static_cast<T>(index * kAlignment * kBitsPerIntPtrT);
71 return (offset / kAlignment) % kBitsPerIntPtrT;
space_bitmap.cc 36 const uint64_t kBytesCoveredPerWord = kAlignment * kBitsPerIntPtrT;
92 DCHECK_ALIGNED(new_end, kBitsPerIntPtrT * kAlignment);
163 constexpr size_t buffer_size = sizeof(intptr_t) * kBitsPerIntPtrT;
190 if (pb >= &pointer_buf[buffer_size - kBitsPerIntPtrT]) {
space_bitmap_test.cc 68 for (size_t j = 0; j < kBitsPerIntPtrT * 3; ++j) {
79 for (size_t i = 0; i < static_cast<size_t>(kBitsPerIntPtrT); ++i) {
82 for (size_t j = 0; j < static_cast<size_t>(kBitsPerIntPtrT * 2); ++j) {
space_bitmap-inl.h 86 const size_t bit_start = (offset_start / kAlignment) % kBitsPerIntPtrT;
87 const size_t bit_end = (offset_end / kAlignment) % kBitsPerIntPtrT;
  /art/runtime/
globals.h 34 static constexpr int kBitsPerIntPtrT = sizeof(intptr_t) * kBitsPerByte;
  /art/compiler/optimizing/
locations.h 403 static constexpr uint32_t kBitsForPayload = kBitsPerIntPtrT - kBitsForKind;

Completed in 258 milliseconds