Home
last modified time | relevance | path

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

/external/v8/src/parsing/
Dscanner.h244 Vector<byte> new_store = Vector<byte>::New(NewCapacity(kInitialCapacity)); in ExpandBuffer() local
245 MemCopy(new_store.start(), backing_store_.start(), position_); in ExpandBuffer()
247 backing_store_ = new_store; in ExpandBuffer()
252 Vector<byte> new_store; in ConvertToTwoByte() local
257 new_store = Vector<byte>::New(NewCapacity(new_content_size)); in ConvertToTwoByte()
259 new_store = backing_store_; in ConvertToTwoByte()
262 uint16_t* dst = reinterpret_cast<uint16_t*>(new_store.start()); in ConvertToTwoByte()
266 if (new_store.start() != backing_store_.start()) { in ConvertToTwoByte()
268 backing_store_ = new_store; in ConvertToTwoByte()
/external/libbrillo/brillo/
Dkey_value_store_unittest.cc89 KeyValueStore new_store; in TEST_F() local
90 ASSERT_TRUE(new_store.LoadFromString(store_.SaveToString())); in TEST_F()
93 EXPECT_TRUE(new_store.GetString(it.first, &value)) << "key: " << it.first; in TEST_F()
/external/v8/src/
Dutils.h646 Vector<T> new_store = Vector<T>::New(size_);
647 WriteTo(new_store);
648 return new_store;
Ddeoptimizer.cc3647 bool new_store = false; in StoreMaterializedValuesAndDeopt() local
3654 new_store = true; in StoreMaterializedValuesAndDeopt()
3678 if (new_store && value_changed) { in StoreMaterializedValuesAndDeopt()