Searched refs:new_store (Results 1 - 5 of 5) sorted by relevance

/external/v8/src/parsing/
H A Dscanner.h449 Vector<byte> new_store = Vector<byte>::New(NewCapacity(kInitialCapacity)); local
450 MemCopy(new_store.start(), backing_store_.start(), position_);
452 backing_store_ = new_store;
457 Vector<byte> new_store; local
462 new_store = Vector<byte>::New(NewCapacity(new_content_size));
464 new_store = backing_store_;
467 uint16_t* dst = reinterpret_cast<uint16_t*>(new_store.start());
471 if (new_store.start() != backing_store_.start()) {
473 backing_store_ = new_store;
/external/libbrillo/brillo/
H A Dkey_value_store_unittest.cc89 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/
H A Dcollector.h107 Vector<T> new_store = Vector<T>::New(size_); local
108 WriteTo(new_store);
109 return new_store;
H A Ddeoptimizer.cc3952 bool new_store = false; local
3959 new_store = true;
3983 if (new_store && value_changed) {
/external/boringssl/src/ssl/
H A Dssl_x509.c1306 static int set_cert_store(X509_STORE **store_ptr, X509_STORE *new_store, argument
1309 *store_ptr = new_store;
1311 if (new_store != NULL && take_ref) {
1312 X509_STORE_up_ref(new_store);

Completed in 413 milliseconds