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

  /external/v8/src/
spaces.cc 929 // immediately initialize it (e.g. see PagedSpace::ReserveSpace
930 // called from Heap::ReserveSpace that can cause GC before
    [all...]
spaces.h 797 virtual bool ReserveSpace(int bytes) = 0;
    [all...]
heap.cc 603 void Heap::ReserveSpace(
623 if (!new_space->ReserveSpace(new_space_size)) {
628 if (!old_pointer_space->ReserveSpace(pointer_space_size)) {
633 if (!(old_data_space->ReserveSpace(data_space_size))) {
638 if (!(code_space->ReserveSpace(code_space_size))) {
643 if (!(map_space->ReserveSpace(map_space_size))) {
648 if (!(cell_space->ReserveSpace(cell_space_size))) {
656 // The ReserveSpace method on the large object space checks how much
661 if (!(lo_space->ReserveSpace(large_object_size))) {
670 V8::FatalProcessOutOfMemory("Heap::ReserveSpace");
    [all...]

Completed in 892 milliseconds