Searched refs:new_store (Results 1 – 6 of 6) sorted by relevance
/external/chromium_org/v8/src/ |
D | scanner.h | 264 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()
|
D | utils.h | 552 Vector<T> new_store = Vector<T>::New(size_); 553 WriteTo(new_store); 554 return new_store;
|
/external/chromium_org/chrome/browser/prefs/tracked/ |
D | tracked_preferences_migration.cc | 139 base::DictionaryValue* new_store, in MigratePrefsFromOldToNewStore() argument 151 new DictionaryHashStoreContents(new_store)))); in MigratePrefsFromOldToNewStore() 170 if (!new_store->Get(pref_name, NULL)) { in MigratePrefsFromOldToNewStore() 176 new_store->Set(pref_name, value_in_old_store->DeepCopy()); in MigratePrefsFromOldToNewStore() 200 new_store->Remove(pref_name, NULL); in MigratePrefsFromOldToNewStore()
|
/external/chromium_org/base/prefs/ |
D | pref_value_store.cc | 128 PrefValueStore::PrefStoreType new_store) { in NotifyPrefChanged() argument 129 DCHECK(new_store != INVALID_STORE); in NotifyPrefChanged()
|
D | pref_value_store.h | 223 void NotifyPrefChanged(const char* path, PrefStoreType new_store);
|
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/ |
D | sctputil.c | 899 int store_at, new_store; in sctp_select_initial_TSN() local 910 new_store = store_at + sizeof(uint32_t); in sctp_select_initial_TSN() 911 if (new_store >= (SCTP_SIGNATURE_SIZE-3)) { in sctp_select_initial_TSN() 912 new_store = 0; in sctp_select_initial_TSN() 914 if (!atomic_cmpset_int(&inp->store_at, store_at, new_store)) { in sctp_select_initial_TSN() 917 if (new_store == 0) { in sctp_select_initial_TSN()
|