Lines Matching refs:backing_store
417 void* backing_store = EmptyBackingStoreBuffer();
421 // yet, as that may trigger GC. The backing_store field currently contains
423 backing_store = backing_stores_[store_index]->buffer_start();
427 reinterpret_cast<uint8_t*>(backing_store) + data_view.byte_offset());
440 auto backing_store = backing_stores_[store_index];
441 void* start = backing_store ? backing_store->buffer_start()
1171 std::unique_ptr<BackingStore> backing_store;
1173 backing_store = BackingStore::Allocate(
1186 backing_store = BackingStore::TryAllocateAndPartiallyCommitMemory(
1190 CHECK_NOT_NULL(backing_store);
1191 source_.CopyRaw(backing_store->buffer_start(), byte_length);
1192 backing_stores_.push_back(std::move(backing_store));