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

  /external/v8/tools/oom_dump/
oom_dump.cc 161 #define READ_FIELD(offset) \
164 CHECK(READ_FIELD(0) == v8::internal::HeapStats::kStartMarker);
165 CHECK(READ_FIELD(24) == v8::internal::HeapStats::kEndMarker);
167 const int new_space_size = READ_FIELD(1);
168 const int new_space_capacity = READ_FIELD(2);
169 const int old_pointer_space_size = READ_FIELD(3);
170 const int old_pointer_space_capacity = READ_FIELD(4);
171 const int old_data_space_size = READ_FIELD(5);
172 const int old_data_space_capacity = READ_FIELD(6);
173 const int code_space_size = READ_FIELD(7)
    [all...]
  /external/v8/src/
objects-inl.h 90 type* holder::name() { return type::cast(READ_FIELD(this, offset)); } \
99 Smi* holder::name() { return Smi::cast(READ_FIELD(this, offset)); } \
108 Object* value = READ_FIELD(this, offset); \
868 #define READ_FIELD(p, offset) \
967 return &READ_FIELD(obj, byte_offset);
1110 VerifyPointer(READ_FIELD(this, offset));
1114 ASSERT(READ_FIELD(this, offset)->IsSmi());
1155 return MapWord(reinterpret_cast<uintptr_t>(READ_FIELD(this, kMapOffset)));
    [all...]

Completed in 47 milliseconds