HomeSort by relevance Sort by last modified time
    Searched defs:new_space (Results 1 - 9 of 9) 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
935 NewSpace* new_space = HEAP->new_space(); local
    [all...]
  /external/v8/src/
string-stream.cc 572 char* new_space = NewArray<char>(new_bytes); local
573 if (new_space == NULL) {
576 memcpy(new_space, space_, *bytes);
579 space_ = new_space;
580 return new_space;
heap.h 394 NewSpace* new_space() { return &new_space_; } function in class:v8::internal::Heap
    [all...]
heap.cc 244 if (space != NEW_SPACE || FLAG_gc_global) {
449 // not matter, so long as we do not specify NEW_SPACE, which would not
459 // not matter, so long as we do not specify NEW_SPACE, which would not
564 NewSpace* new_space = Heap::new_space(); local
574 if (!new_space->ReserveSpace(new_space_size)) {
575 Heap::CollectGarbage(NEW_SPACE);
734 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...]
  /external/v8/src/arm/
full-codegen-arm.cc 3250 Label new_space; local
    [all...]
  /external/v8/src/ia32/
full-codegen-ia32.cc 3179 Label new_space; local
    [all...]
  /external/v8/src/x64/
full-codegen-x64.cc 3132 Label new_space; local
    [all...]

Completed in 272 milliseconds