Home
last modified time | relevance | path

Searched refs:backing_store_ (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/parsing/
Dliteral-buffer.cc33 int min_capacity = Max(kInitialCapacity, backing_store_.length()); in ExpandBuffer()
36 MemCopy(new_store.begin(), backing_store_.begin(), position_); in ExpandBuffer()
38 backing_store_.Dispose(); in ExpandBuffer()
39 backing_store_ = new_store; in ExpandBuffer()
46 if (new_content_size >= backing_store_.length()) { in ConvertToTwoByte()
51 new_store = backing_store_; in ConvertToTwoByte()
53 uint8_t* src = backing_store_.begin(); in ConvertToTwoByte()
58 if (new_store.begin() != backing_store_.begin()) { in ConvertToTwoByte()
59 backing_store_.Dispose(); in ConvertToTwoByte()
60 backing_store_ = new_store; in ConvertToTwoByte()
[all …]
Dliteral-buffer.h17 LiteralBuffer() : backing_store_(), position_(0), is_one_byte_(true) {} in LiteralBuffer()
19 ~LiteralBuffer() { backing_store_.Dispose(); } in ~LiteralBuffer()
41 (memcmp(keyword.begin(), backing_store_.begin(), position_) == 0); in Equals()
55 reinterpret_cast<const Char*>(backing_store_.begin()), in literal()
84 if (position_ >= backing_store_.length()) ExpandBuffer(); in AddOneByteChar()
85 backing_store_[position_] = one_byte_char; in AddOneByteChar()
94 Vector<byte> backing_store_; variable
/external/v8/src/objects/
Djs-array-buffer.h168 std::shared_ptr<BackingStore> backing_store_; variable
184 backing_store_(std::shared_ptr<BackingStore>()), in ArrayBufferExtension()
190 backing_store_(backing_store), in ArrayBufferExtension()
205 std::shared_ptr<BackingStore> backing_store() { return backing_store_; } in backing_store()
206 BackingStore* backing_store_raw() { return backing_store_.get(); } in backing_store_raw()
215 return std::move(backing_store_); in RemoveBackingStore()
219 backing_store_ = std::move(backing_store); in set_backing_store()
222 void reset_backing_store() { backing_store_.reset(); } in reset_backing_store()
/external/v8/src/execution/
Dfutex-emulation.cc389 node->backing_store_ = backing_store; in WaitSync()
503 backing_store_(backing_store), in FutexWaitListNode()
633 node->backing_store_.lock(); in Wake()
898 node->backing_store_.lock(); in NumWaitersForTesting()
939 node->backing_store_.lock(); in NumUnresolvedAsyncPromisesForTesting()
Dfutex-emulation.h101 std::weak_ptr<BackingStore> backing_store_; variable