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

/external/chromium_org/v8/src/
H A Dscanner.h264 Vector<byte> new_store = Vector<byte>::New(NewCapacity(kInitialCapacity)); local
265 MemCopy(new_store.start(), backing_store_.start(), position_);
267 backing_store_ = new_store;
272 Vector<byte> new_store; local
277 new_store = Vector<byte>::New(NewCapacity(new_content_size));
279 new_store = backing_store_;
282 uint16_t* dst = reinterpret_cast<uint16_t*>(new_store.start());
286 if (new_store.start() != backing_store_.start()) {
288 backing_store_ = new_store;
H A Dutils.h552 Vector<T> new_store = Vector<T>::New(size_); local
553 WriteTo(new_store);
554 return new_store;
/external/chromium_org/chrome/browser/prefs/tracked/
H A Dtracked_preferences_migration.cc134 // but not in |new_store| into |new_store|. Sets |old_store_needs_cleanup| to
136 // to true if any value was copied to |new_store|.
139 base::DictionaryValue* new_store,
151 new DictionaryHashStoreContents(new_store))));
170 if (!new_store->Get(pref_name, NULL)) {
171 // Copy the value from |old_store| to |new_store| rather than moving it
173 // |new_store| having equivalently been successfully flushed to disk
174 // (e.g., on crash or in cases where |new_store| is read-only following
176 new_store
137 MigratePrefsFromOldToNewStore(const std::set<std::string>& pref_names, base::DictionaryValue* old_store, base::DictionaryValue* new_store, PrefHashStore* new_hash_store, HashStoreContents* legacy_hash_store, bool* old_store_needs_cleanup, bool* new_store_altered, bool* used_legacy_pref_hashes) argument
[all...]
/external/chromium_org/base/prefs/
H A Dpref_value_store.cc128 PrefValueStore::PrefStoreType new_store) {
129 DCHECK(new_store != INVALID_STORE);
126 NotifyPrefChanged( const char* path, PrefValueStore::PrefStoreType new_store) argument
H A Dpref_value_store.h223 void NotifyPrefChanged(const char* path, PrefStoreType new_store);
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctputil.c899 int store_at, new_store; local
910 new_store = store_at + sizeof(uint32_t);
911 if (new_store >= (SCTP_SIGNATURE_SIZE-3)) {
912 new_store = 0;
914 if (!atomic_cmpset_int(&inp->store_at, store_at, new_store)) {
917 if (new_store == 0) {

Completed in 156 milliseconds