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

/external/v8/src/
H A Dspaces.cc2080 bool NewSpace::ReserveSpace(int bytes) { function in class:v8::NewSpace
2211 bool PagedSpace::ReserveSpace(int bytes) { function in class:v8::PagedSpace
2241 bool LargeObjectSpace::ReserveSpace(int bytes) { function in class:v8::LargeObjectSpace
H A Dspaces.h398 virtual bool ReserveSpace(int bytes) = 0;
1109 virtual bool ReserveSpace(int bytes);
1111 // Used by ReserveSpace.
1381 virtual bool ReserveSpace(int bytes) { function in class:v8::internal::SemiSpace
1619 virtual bool ReserveSpace(int bytes);
2289 // See the comments for ReserveSpace in the Space class. This has to be
2290 // called after ReserveSpace has been called on the paged spaces, since they
2292 virtual bool ReserveSpace(int bytes);
H A Dheap.cc556 void Heap::ReserveSpace( function in class:v8::internal::Heap
574 if (!new_space->ReserveSpace(new_space_size)) {
578 if (!old_pointer_space->ReserveSpace(pointer_space_size)) {
582 if (!(old_data_space->ReserveSpace(data_space_size))) {
586 if (!(code_space->ReserveSpace(code_space_size))) {
590 if (!(map_space->ReserveSpace(map_space_size))) {
594 if (!(cell_space->ReserveSpace(cell_space_size))) {
601 // The ReserveSpace method on the large object space checks how much
606 if (!(lo_space->ReserveSpace(large_object_size))) {

Completed in 254 milliseconds