HomeSort by relevance Sort by last modified time
    Searched defs:new_space (Results 1 - 7 of 7) sorted by null

  /external/v8/test/cctest/
test-alloc.cc 43 NewSpace* new_space = heap->new_space(); local
45 while (new_space->Available() > kNewSpaceFillerSize) {
46 int available_before = static_cast<int>(new_space->Available());
48 if (available_before == new_space->Available()) {
test-heap.cc 185 CHECK(Failure::RetryAfterGC(NEW_SPACE)->IsFailure());
186 CHECK_EQ(NEW_SPACE,
187 Failure::RetryAfterGC(NEW_SPACE)->allocation_space());
201 HEAP->CollectGarbage(NEW_SPACE);
229 HEAP->CollectGarbage(NEW_SPACE);
250 HEAP->CollectGarbage(NEW_SPACE);
315 HEAP->CollectGarbage(NEW_SPACE);
399 HEAP->CollectGarbage(NEW_SPACE);
812 // Allocate a JS array to OLD_POINTER_SPACE and NEW_SPACE
816 // Allocate a small string to OLD_DATA_SPACE and NEW_SPACE
891 NewSpace* new_space = HEAP->new_space(); local
1276 NewSpace* new_space = HEAP->new_space(); local
1319 NewSpace* new_space = HEAP->new_space(); local
    [all...]
  /external/v8/src/
string-stream.cc 569 char* new_space = NewArray<char>(new_bytes); local
570 if (new_space == NULL) {
573 memcpy(new_space, space_, *bytes);
576 space_ = new_space;
577 return new_space;
heap.h 498 NewSpace* new_space() { return &new_space_; } function in class:v8::internal::Heap
    [all...]
mark-compact.cc 140 VerifyMarking(heap->new_space());
221 VerifyEvacuation(heap->new_space());
334 VerifyMarkbitsAreClean(heap_->new_space());
369 ClearMarkbitsInNewSpace(heap_->new_space());
423 case NEW_SPACE: return "NEW_SPACE";
2841 NewSpace* new_space = heap()->new_space(); local
    [all...]
heap.cc 247 if (space != NEW_SPACE || FLAG_gc_global) {
447 // not matter, so long as we do not specify NEW_SPACE, which would not
457 // not matter, so long as we do not specify NEW_SPACE, which would not
611 NewSpace* new_space = Heap::new_space(); local
623 if (!new_space->ReserveSpace(new_space_size)) {
624 Heap::CollectGarbage(NEW_SPACE,
791 int start_new_space_size = Heap::new_space()->SizeAsInt();
    [all...]
  /external/blktrace/
blkparse.c 326 int new_space, size; local
339 new_space = (new_count - ncpus) * sizeof(struct per_cpu_info);
340 memset(new_start, 0, new_space);
    [all...]

Completed in 187 milliseconds