PreallocatedStorage  104 src/allocation.cc void PreallocatedStorage::LinkTo(PreallocatedStorage* other) {
PreallocatedStorage  112 src/allocation.cc void PreallocatedStorage::Unlink() {
PreallocatedStorage  118 src/allocation.cc PreallocatedStorage::PreallocatedStorage(size_t size)
PreallocatedStorage  115 src/allocation.h class PreallocatedStorage {
PreallocatedStorage  117 src/allocation.h   explicit PreallocatedStorage(size_t size);
PreallocatedStorage  122 src/allocation.h   PreallocatedStorage* previous_;
PreallocatedStorage  123 src/allocation.h   PreallocatedStorage* next_;
PreallocatedStorage  125 src/allocation.h   void LinkTo(PreallocatedStorage* other);
PreallocatedStorage  130 src/allocation.h   DISALLOW_IMPLICIT_CONSTRUCTORS(PreallocatedStorage);
PreallocatedStorage  248 src/isolate.cc   PreallocatedStorage* free_chunk =
PreallocatedStorage  249 src/isolate.cc       reinterpret_cast<PreallocatedStorage*>(new char[size]);
PreallocatedStorage  252 src/isolate.cc   free_chunk->size_ = size - sizeof(PreallocatedStorage);
PreallocatedStorage  266 src/isolate.cc   for (PreallocatedStorage* storage = free_list_.next_;
PreallocatedStorage  276 src/isolate.cc   for (PreallocatedStorage* storage = free_list_.next_;
PreallocatedStorage  279 src/isolate.cc     if (storage->size_ >= size + sizeof(PreallocatedStorage)) {
PreallocatedStorage  282 src/isolate.cc       PreallocatedStorage* left_over =
PreallocatedStorage  283 src/isolate.cc           reinterpret_cast<PreallocatedStorage*>(
PreallocatedStorage  285 src/isolate.cc       left_over->size_ = storage->size_ - size - sizeof(PreallocatedStorage);
PreallocatedStorage  286 src/isolate.cc       ASSERT(size + left_over->size_ + sizeof(PreallocatedStorage) ==
PreallocatedStorage  308 src/isolate.cc   PreallocatedStorage* storage = reinterpret_cast<PreallocatedStorage*>(p) - 1;
PreallocatedStorage 1209 src/isolate.h    PreallocatedStorage in_use_list_;
PreallocatedStorage 1210 src/isolate.h    PreallocatedStorage free_list_;