Searched defs:ReserveSpace (Results 1 - 3 of 3) sorted by relevance

/external/v8/src/
H A Dspaces.cc1844 bool NewSpace::ReserveSpace(int bytes) { function in class:v8::NewSpace
1854 bool PagedSpace::ReserveSpace(int bytes) { function in class:v8::PagedSpace
1883 bool LargeObjectSpace::ReserveSpace(int bytes) { function in class:v8::LargeObjectSpace
H A Dspaces.h314 virtual bool ReserveSpace(int bytes) = 0;
912 virtual bool ReserveSpace(int bytes);
914 // Used by ReserveSpace.
1163 virtual bool ReserveSpace(int bytes) { function in class:v8::internal::SemiSpace
1388 virtual bool ReserveSpace(int bytes);
2014 // See the comments for ReserveSpace in the Space class. This has to be
2015 // called after ReserveSpace has been called on the paged spaces, since they
2017 virtual bool ReserveSpace(int bytes);
H A Dheap.cc482 void Heap::ReserveSpace( function in class:v8::internal::Heap
500 if (!new_space->ReserveSpace(new_space_size)) {
504 if (!old_pointer_space->ReserveSpace(pointer_space_size)) {
508 if (!(old_data_space->ReserveSpace(data_space_size))) {
512 if (!(code_space->ReserveSpace(code_space_size))) {
516 if (!(map_space->ReserveSpace(map_space_size))) {
520 if (!(cell_space->ReserveSpace(cell_space_size))) {
528 // The ReserveSpace method on the large object space checks how much
533 if (!(lo_space->ReserveSpace(large_object_size))) {

Completed in 104 milliseconds