HomeSort by relevance Sort by last modified time
    Searched refs:PreallocatedStorage (Results 1 - 7 of 7) sorted by null

  /external/v8/src/
allocation-inl.h 37 void* PreallocatedStorage::New(size_t size) {
42 void PreallocatedStorage::Delete(void* p) {
allocation.h 115 class PreallocatedStorage {
117 explicit PreallocatedStorage(size_t size);
128 PreallocatedStorage* previous_;
129 PreallocatedStorage* next_;
131 void LinkTo(PreallocatedStorage* other);
136 DISALLOW_IMPLICIT_CONSTRUCTORS(PreallocatedStorage);
allocation.cc 104 void PreallocatedStorage::LinkTo(PreallocatedStorage* other) {
112 void PreallocatedStorage::Unlink() {
118 PreallocatedStorage::PreallocatedStorage(size_t size)
isolate.cc 248 PreallocatedStorage* free_chunk =
249 reinterpret_cast<PreallocatedStorage*>(new char[size]);
252 free_chunk->size_ = size - sizeof(PreallocatedStorage);
266 for (PreallocatedStorage* storage = free_list_.next_;
276 for (PreallocatedStorage* storage = free_list_.next_;
279 if (storage->size_ >= size + sizeof(PreallocatedStorage)) {
282 PreallocatedStorage* left_over =
283 reinterpret_cast<PreallocatedStorage*>(
285 left_over->size_ = storage->size_ - size - sizeof(PreallocatedStorage);
286 ASSERT(size + left_over->size_ + sizeof(PreallocatedStorage) =
    [all...]
isolate.h 318 typedef List<HeapObject*, PreallocatedStorage> DebugObjectCache;
    [all...]
string-stream.cc 294 new List<HeapObject*, PreallocatedStorage>(0));
  /external/v8/test/mjsunit/tools/
tickprocessor.js 205 ' 0003:00000418 ?in_use_list_@PreallocatedStorage@internal@v8@@0V123@A 00544418 v8_snapshot:allocation.obj',

Completed in 182 milliseconds