OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OLD_DATA_SPACE
(Results
1 - 8
of
8
) sorted by null
/external/v8/src/
heap-inl.h
150
retry_space ==
OLD_DATA_SPACE
||
173
} else if (
OLD_DATA_SPACE
== space) {
325
:
OLD_DATA_SPACE
;
327
return (type <= LAST_DATA_TYPE) ?
OLD_DATA_SPACE
: OLD_POINTER_SPACE;
heap.cc
566
PagedSpace*
old_data_space
= Heap::
old_data_space
();
local
582
if (!(
old_data_space
->ReserveSpace(data_space_size))) {
583
Heap::CollectGarbage(
OLD_DATA_SPACE
);
919
HeapObjectIterator data_it(HEAP->
old_data_space
());
[
all
...]
mksnapshot.cc
250
partial_ser.CurrentAllocationAddress(i::
OLD_DATA_SPACE
),
v8globals.h
196
OLD_DATA_SPACE
, // Must not have pointers to new space.
serialize.cc
762
} else if (space_number ==
OLD_DATA_SPACE
) { \
763
dest_space = isolate->heap()->
old_data_space
(); \
[
all
...]
liveobjectlist.cc
206
if (strcmp(key_str, "old-data") == 0) return
OLD_DATA_SPACE
;
[
all
...]
/external/v8/test/cctest/
test-serialize.cc
397
p_ser.CurrentAllocationAddress(
OLD_DATA_SPACE
),
514
p_ser.CurrentAllocationAddress(
OLD_DATA_SPACE
),
test-api.cc
619
CHECK(in_new_space || HEAP->
old_data_space
()->Contains(*istring));
622
HEAP->CollectGarbage(in_new_space ? i::NEW_SPACE : i::
OLD_DATA_SPACE
);
638
CHECK(in_new_space || HEAP->
old_data_space
()->Contains(*istring));
641
HEAP->CollectGarbage(in_new_space ? i::NEW_SPACE : i::
OLD_DATA_SPACE
);
[
all
...]
Completed in 41 milliseconds