HomeSort by relevance Sort by last modified time
    Searched refs:Put (Results 26 - 50 of 97) sorted by null

12 3 4

  /external/v8/src/
serialize.h 127 void Put(Address key, int index);
153 void Put(uint32_t key, Address value) {
394 virtual void Put(int byte, const char* description) = 0;
396 Put(byte, description);
mksnapshot.cc 99 virtual void Put(int byte, const char* description) {
  /external/webkit/Source/JavaScriptCore/wtf/
TCPackedCache.h 73 // void Put(K key, V value) { a_[H(key)] = pair<K, V>(key, value); }
82 // (c.Put(key, value), c.GetOrDefault(key, 0)) == value
84 // (c.Put(key, value), <...>, c.GetOrDefault(key, 0)) == value
85 // if the elided code contains no c.Put calls.
88 // has ever been Put. However, a newly initialized cache will have
92 // equivalent to Put(k, initial_value) for all keys k from 0 to
95 // 3. If key and key' differ then the only way Put(key, value) may
97 // false. Furthermore, a Put() call that doesn't change Has(key')
151 void Put(K key, V value) {
191 // part of the key, and kValuebits determines where in the entry to put
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
syncable.h 263 inline void put(MetahandleField field, int64 value) { function in struct:syncable::EntryKernel
266 inline void put(Int64Field field, int64 value) { function in struct:syncable::EntryKernel
269 inline void put(IdField field, const Id& value) { function in struct:syncable::EntryKernel
272 inline void put(BaseVersion field, int64 value) { function in struct:syncable::EntryKernel
275 inline void put(IndexedBitField field, bool value) { function in struct:syncable::EntryKernel
278 inline void put(IsDelField field, bool value) { function in struct:syncable::EntryKernel
281 inline void put(BitField field, bool value) { function in struct:syncable::EntryKernel
284 inline void put(StringField field, const std::string& value) { function in struct:syncable::EntryKernel
287 inline void put(ProtoField field, const sync_pb::EntitySpecifics& value) { function in struct:syncable::EntryKernel
290 inline void put(BitTemp field, bool value) function in struct:syncable::EntryKernel
    [all...]
nigori_util.cc 104 entry.Put(SPECIFICS, new_specifics);
118 entry.Put(SPECIFICS, new_specifics);
syncable.cc 427 kernel_->needle.put(ID, id);
439 kernel_->needle.put(UNIQUE_CLIENT_TAG, tag);
473 kernel_->needle.put(META_HANDLE, metahandle);
509 entry->put(static_cast<Int64Field>(i), 0);
513 entry->put(static_cast<BitField>(i), false);
549 entry->put(ID, new_id);
562 entry->put(PARENT_ID, new_parent_id);
652 kernel_->needle.put(META_HANDLE, i->ref(META_HANDLE));
744 kernel_->needle.put(META_HANDLE, i->ref(META_HANDLE));
    [all...]
  /external/chromium/chrome/browser/sync/engine/
syncapi_unittest.cc 152 entry.Put(syncable::BASE_VERSION, 1);
153 entry.Put(syncable::SERVER_VERSION, 1);
154 entry.Put(syncable::IS_UNAPPLIED_UPDATE, false);
155 entry.Put(syncable::SERVER_PARENT_ID, syncable::kNullId);
156 entry.Put(syncable::SERVER_IS_DIR, true);
157 entry.Put(syncable::IS_DIR, true);
158 entry.Put(syncable::SERVER_SPECIFICS, specifics);
159 entry.Put(syncable::UNIQUE_SERVER_TAG, type_tag);
160 entry.Put(syncable::NON_UNIQUE_NAME, type_tag);
161 entry.Put(syncable::IS_DEL, false)
    [all...]
syncapi.cc 472 entry_->Put(syncable::IS_DIR, folder);
485 entry_->Put(syncable::NON_UNIQUE_NAME, server_legal_name);
683 entry_->Put(SPECIFICS, specifics);
689 entry_->Put(syncable::LOCAL_EXTERNAL_ID, id);
781 entry_->Put(syncable::IS_DIR, true);
832 existing_entry->Put(syncable::IS_DEL, false);
840 existing_entry->Put(syncable::NON_UNIQUE_NAME, dummy);
841 existing_entry->Put(syncable::PARENT_ID, parent_id);
854 entry_->Put(syncable::UNIQUE_CLIENT_TAG, hash);
858 entry_->Put(syncable::IS_DIR, false)
    [all...]
build_commit_command.cc 109 meta_entry.Put(syncable::SYNCING, true);
  /external/v8/test/mjsunit/regress/
regress-crbug-87478.js 32 // Put the keyed load in f into the keyed-load-arguments state.
regress-1531.js 41 // Put into dictionary mode.
  /external/valgrind/unittest/
thread_wrappers.h 113 // Put.
114 void Put(void *item) {
134 // remove an element from queue, put it into *res and return true.
251 queue_.Put(closure);
racecheck_unittest.cc 213 // Two write accesses to GLOB are separated by PCQ Put/Get.
217 // 2. Q.Put() ---------\ .
224 Q.Put(NULL);
499 // 4. Q.Put() ---------------> d. Q.Get()
510 Q.Put(NULL);
599 // 2. Q2.Put() ----\ b. Q1.Put() -----\ .
607 Q1.Put(NULL);
611 Q2.Put(NULL);
1098 // 4. Q.Put() ---------\ /------- D. Q.Put(
    [all...]
  /sdk/emulator/opengl/host/libs/libOpenglRender/
Android.mk 70 LOCAL_LDLIBS += $(host_common_LDLIBS) -m64 # Put -m64 it in LOCAL_LDLIBS instead.
  /external/valgrind/main/coregrind/
m_translate.c 246 Basically, we look for GET(SP)/PUT(SP) pairs and track constant
250 If all the changes to SP leading up to a PUT(SP) are by known, small
434 /* Put(sp) = curr */
435 /* More generally, we must correctly handle a Put which writes
441 first_Put = st->Ist.Put.offset;
443 + sizeofIRType( typeOfIRExpr( bb->tyenv, st->Ist.Put.data ))
451 if (st->Ist.Put.data->tag == Iex_RdTmp
452 && get_SP_delta(st->Ist.Put.data->Iex.RdTmp.tmp, &delta)) {
453 IRTemp tttmp = st->Ist.Put.data->Iex.RdTmp.tmp;
494 (1) the Put does not exactly cover SP; it is a partial update
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_quarantine.h 55 void Put(Cache *c, Callback cb, Node *ptr, uptr size) {
  /external/v8/test/cctest/
test-dictionary.cc 139 // Calling Put() should request GC by returning a failure.
140 CHECK(table->Put(*key, *key)->IsRetryAfterGC());
  /external/webkit/Source/WebCore/platform/leveldb/
LevelDBDatabase.cpp 123 bool LevelDBDatabase::put(const LevelDBSlice& key, const Vector<char>& value) function in class:WebCore::LevelDBDatabase
128 return m_db->Put(writeOptions, makeSlice(key), makeSlice(value)).ok();
  /external/valgrind/main/drd/tests/
tsan_unittest.cpp 143 // Put everything into stderr.
453 // Two write accesses to GLOB are separated by PCQ Put/Get.
457 // 2. Q.Put() ---------\ .
464 Q.Put(NULL);
795 // 4. Q.Put() ---------------> d. Q.Get()
806 Q.Put(NULL);
895 // 2. Q2.Put() ----\ b. Q1.Put() -----\ .
903 Q1.Put(NULL);
907 Q2.Put(NULL)
    [all...]
tsan_thread_wrappers_pthread.h 382 // Put.
383 void Put(void *item) {
403 // remove an element from queue, put it into *res and return true.
521 queue_.Put(closure);
  /external/opencv/otherlibs/highgui/
bitstrm.cpp 985 Put( m_pad_val, m_bit_idx & 7 );
1015 void WMBitStream::Put( int val, int bits )
1054 Put( code >> 8, code & 255 );
  /external/chromium/chrome/browser/history/
text_database_manager.cc 182 recent_changes_.Put(url, PageInfo(url_id, visit_id, time));
512 db_cache_.Put(id, new_db);
  /external/v8/test/mjsunit/
bit-not.js 71 // Put in an eval to foil Crankshaft.
  /external/chromium/chrome/browser/sync/util/
extensions_activity_monitor_unittest.cc 186 TEST_F(ExtensionsActivityMonitorTest, Put) {
  /external/valgrind/main/VEX/priv/
ir_opt.c 99 * Redundant-Put removal
402 if (isIRAtom(st->Ist.Put.data)) {
408 e1 = flatten_Expr(bb, st->Ist.Put.data);
409 addStmtToIRSB(bb, IRStmt_Put(st->Ist.Put.offset, e1));
521 On seeing 'Put (minoff,maxoff) = t or c', first remove in the env
635 Put */
639 key = mk_key_GetPut( st->Ist.Put.offset,
640 typeOfIRExpr(bb->tyenv,st->Ist.Put.data) );
672 vassert(isIRAtom(st->Ist.Put.data));
673 addToHHW( env, (HWord)key, (HWord)(st->Ist.Put.data))
    [all...]

Completed in 780 milliseconds

12 3 4