Home
last modified time | relevance | path

Searched refs:new_store (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/
Dscanner.h264 Vector<byte> new_store = Vector<byte>::New(NewCapacity(kInitialCapacity)); in ExpandBuffer() local
265 MemCopy(new_store.start(), backing_store_.start(), position_); in ExpandBuffer()
267 backing_store_ = new_store; in ExpandBuffer()
272 Vector<byte> new_store; in ConvertToTwoByte() local
277 new_store = Vector<byte>::New(NewCapacity(new_content_size)); in ConvertToTwoByte()
279 new_store = backing_store_; in ConvertToTwoByte()
282 uint16_t* dst = reinterpret_cast<uint16_t*>(new_store.start()); in ConvertToTwoByte()
286 if (new_store.start() != backing_store_.start()) { in ConvertToTwoByte()
288 backing_store_ = new_store; in ConvertToTwoByte()
Dutils.h552 Vector<T> new_store = Vector<T>::New(size_);
553 WriteTo(new_store);
554 return new_store;