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

  /external/v8/src/
string-stream.cc 531 char* new_space = NewArray<char>(new_bytes); local
532 if (new_space == NULL) {
535 MemCopy(new_space, space_, *bytes);
538 space_ = new_space;
539 return new_space;
code-stub-assembler.cc 799 bool const new_space = !(flags & kPretenured); local
801 new_space
1714 bool const new_space = !(flags & kPretenured); local
    [all...]
  /external/libjpeg-turbo/
jmemmgr.c 655 size_t new_space = (long) sptr->rows_in_array * local
660 if (SIZE_MAX - maximum_space < new_space)
662 maximum_space += new_space;
667 size_t new_space = (long) bptr->rows_in_array * local
672 if (SIZE_MAX - maximum_space < new_space)
674 maximum_space += new_space;
    [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/heap/
heap.h 447 static inline AllocationResult Retry(AllocationSpace space = NEW_SPACE) {
459 AllocationResult() : object_(Smi::FromInt(NEW_SPACE)) {}
1021 NewSpace* new_space() { return new_space_; } function in class:v8::internal::GarbageCollectionReason::Heap
    [all...]
mark-compact.cc 154 VerifyMarking(heap->new_space());
227 VerifyEvacuation(heap->new_space());
343 VerifyMarkbitsAreClean(heap_->new_space());
392 ClearMarkbitsInNewSpace(heap_->new_space());
447 if (space == NEW_SPACE) return;
505 if (space == NEW_SPACE) {
506 swept_list_[NEW_SPACE].Clear();
515 if (!FLAG_concurrent_sweeping || !IsSweepingCompleted(NEW_SPACE)) {
516 for (Page* p : *heap_->new_space()) {
555 case NEW_SPACE
3000 NewSpace* new_space = heap()->new_space(); local
    [all...]

Completed in 82 milliseconds