OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:READ_FIELD
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/v8/tools/oom_dump/
oom_dump.cc
162
#define
READ_FIELD
(offset) \
165
CHECK(
READ_FIELD
(0) == v8::internal::HeapStats::kStartMarker);
166
CHECK(
READ_FIELD
(24) == v8::internal::HeapStats::kEndMarker);
168
const int new_space_size =
READ_FIELD
(1);
169
const int new_space_capacity =
READ_FIELD
(2);
170
const int old_pointer_space_size =
READ_FIELD
(3);
171
const int old_pointer_space_capacity =
READ_FIELD
(4);
172
const int old_data_space_size =
READ_FIELD
(5);
173
const int old_data_space_capacity =
READ_FIELD
(6);
174
const int code_space_size =
READ_FIELD
(7)
[
all
...]
/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
...]
/external/chromium_org/v8/src/
objects-inl.h
94
type* holder::name() { return type::cast(
READ_FIELD
(this, offset)); } \
103
Smi* holder::name() { return Smi::cast(
READ_FIELD
(this, offset)); } \
112
Object* value =
READ_FIELD
(this, offset); \
933
#define
READ_FIELD
(p, offset) \
1038
return &
READ_FIELD
(obj, byte_offset);
1162
VerifyPointer(
READ_FIELD
(this, offset));
1166
CHECK(
READ_FIELD
(this, offset)->IsSmi());
[
all
...]
Completed in 876 milliseconds