Searched defs:new_space (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/v8/test/cctest/
H A Dtest-mementos.cc36 NewSpace* new_space = heap->new_space(); local
49 reinterpret_cast<AllocationMemento*>(new_space->top() + kHeapObjectTag);
H A Dtest-heap.cc1008 NewSpace* new_space = heap->new_space(); local
1009 Address* top_addr = new_space->allocation_top_address();
1010 Address* limit_addr = new_space->allocation_limit_address();
1014 CHECK(new_space->Contains(array));
1024 CHECK(new_space->Contains(array));
1027 CHECK(new_space->Contains(object));
1684 static void FillUpNewSpace(NewSpace* new_space) { argument
1687 Heap* heap = new_space->heap();
1692 intptr_t available = new_space
1703 NewSpace* new_space = heap->new_space(); local
1763 NewSpace* new_space = heap->new_space(); local
4376 NewSpace* new_space = heap->new_space(); local
[all...]
/external/chromium_org/v8/src/
H A Dstring-stream.cc549 char* new_space = NewArray<char>(new_bytes); local
550 if (new_space == NULL) {
553 MemCopy(new_space, space_, *bytes);
556 space_ = new_space;
557 return new_space;
/external/blktrace/
H A Dblkparse.c326 int new_space, size; local
339 new_space = (new_count - ncpus) * sizeof(struct per_cpu_info);
340 memset(new_start, 0, new_space);
/external/chromium_org/v8/src/heap/
H A Dheap.h593 NewSpace* new_space() { return &new_space_; } function in class:v8::internal::Heap
H A Dmark-compact.cc142 VerifyMarking(heap->new_space());
223 VerifyEvacuation(heap->new_space());
465 VerifyMarkbitsAreClean(heap_->new_space());
523 ClearMarkbitsInNewSpace(heap_->new_space());
1948 NewSpace* new_space, NewSpacePage* p) {
1986 AllocationResult allocation = new_space->AllocateRaw(size);
1988 if (!new_space->AddFreshPage()) {
1994 allocation = new_space->AllocateRaw(size);
2021 NewSpace* space = heap->new_space();
2271 Address marking_deque_start = heap()->new_space()
1947 DiscoverAndEvacuateBlackObjectsOnPage( NewSpace* new_space, NewSpacePage* p) argument
3094 NewSpace* new_space = heap()->new_space(); local
[all...]

Completed in 3659 milliseconds