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

  /external/v8/src/parsing/
scanner.h 244 Vector<byte> new_store = Vector<byte>::New(NewCapacity(kInitialCapacity)); local
245 MemCopy(new_store.start(), backing_store_.start(), position_);
247 backing_store_ = new_store;
252 Vector<byte> new_store; local
257 new_store = Vector<byte>::New(NewCapacity(new_content_size));
259 new_store = backing_store_;
262 uint16_t* dst = reinterpret_cast<uint16_t*>(new_store.start());
266 if (new_store.start() != backing_store_.start()) {
268 backing_store_ = new_store;
  /external/libbrillo/brillo/
key_value_store_unittest.cc 89 KeyValueStore new_store; local
90 ASSERT_TRUE(new_store.LoadFromString(store_.SaveToString()));
93 EXPECT_TRUE(new_store.GetString(it.first, &value)) << "key: " << it.first;
  /external/v8/src/
utils.h 646 Vector<T> new_store = Vector<T>::New(size_); local
647 WriteTo(new_store);
648 return new_store;
    [all...]
deoptimizer.cc 3647 bool new_store = false; local
    [all...]

Completed in 203 milliseconds