Searched refs:Put (Results 26 - 50 of 80) sorted by relevance

1234

/external/v8/src/
H A Dserialize.cc528 Put(external_references->address(i), i);
558 void ExternalReferenceEncoder::Put(Address key, int index) { function in class:v8::internal::ExternalReferenceEncoder
574 Put(external_references->code(i), external_references->address(i));
1046 Put((static_cast<int>((integer >> shift)) & 0x7f) | 0x80, "IntPart");
1073 sink_->Put(kSynchronize, tag);
1143 sink_->Put(kRawData, "RawData");
1146 sink_->Put(reinterpret_cast<byte*>(current)[i], "Byte");
1248 sink_->Put(kFromStart + how_to_code + where_to_point + \
1254 sink_->Put(kFromStart + how_to_code + where_to_point + space, "RefSer");
1258 sink_->Put(kBackre
[all...]
H A Dserialize.h81 void Put(Address key, int index);
107 void Put(uint32_t key, Address value) { function in class:v8::internal::ExternalReferenceDecoder
343 virtual void Put(int byte, const char* description) = 0;
345 Put(byte, description);
H A Dmksnapshot.cc167 virtual void Put(int byte, const char* description) { function in class:CppByteSink
190 virtual void Put(int byte, const char* description) { function in class:CppByteSink::PartialSnapshotSink
H A Ddebug.cc2742 LOGGER->DebugTag("Put command on command_queue.");
2743 command_queue_.Put(message);
2774 event_command_queue_.Put(message);
3084 void CommandMessageQueue::Put(const CommandMessage& message) { function in class:v8::internal::CommandMessageQueue
3096 new_queue.Put(Get());
3132 void LockingCommandMessageQueue::Put(const CommandMessage& message) { function in class:v8::internal::LockingCommandMessageQueue
3134 queue_.Put(message);
3135 LOGGER->DebugEvent("Put", message.text());
/external/chromium/chrome/browser/sync/engine/
H A Dget_commit_ids_command.h39 // It will do Put(IS_UNSYNCED). Refactor this out later.
96 entry.Put(syncable::IS_UNSYNCED, false);
H A Dsyncapi_unittest.cc152 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(syncabl
[all...]
H A Dsyncapi.cc472 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(syncabl
[all...]
H A Dbuild_commit_command.cc109 meta_entry.Put(syncable::SYNCING, true);
/external/chromium/chrome/browser/sync/syncable/
H A Dsyncable.h482 bool Put(Int64Field field, const int64& value);
483 bool Put(IdField field, const Id& value);
487 // The normal Put(IS_PARENT) call will move the item to the front of the
496 bool Put(StringField field, const std::string& value);
497 bool Put(BaseVersion field, int64 value);
499 bool Put(ProtoField field, const sync_pb::EntitySpecifics& value);
500 bool Put(BitField field, bool value);
501 inline bool Put(IsDelField field, bool value) { function in class:syncable::MutableEntry
504 bool Put(IndexedBitField field, bool value);
512 bool Put(BitTem
[all...]
H A Dnigori_util.cc104 entry.Put(SPECIFICS, new_specifics);
118 entry.Put(SPECIFICS, new_specifics);
H A Dsyncable.cc1453 bool MutableEntry::Put(Int64Field field, const int64& value) { function in class:syncable::MutableEntry
1469 bool MutableEntry::Put(IdField field, const Id& value) { function in class:syncable::MutableEntry
1491 bool MutableEntry::Put(BaseVersion field, int64 value) { function in class:syncable::MutableEntry
1500 bool MutableEntry::Put(StringField field, const string& value) { function in class:syncable::MutableEntry
1504 bool MutableEntry::Put(ProtoField field, function in class:syncable::MutableEntry
1516 bool MutableEntry::Put(BitField field, bool value) { function in class:syncable::MutableEntry
1570 bool MutableEntry::Put(IndexedBitField field, bool value) { function in class:syncable::MutableEntry
1658 predecessor.Put(NEXT_ID, Get(ID));
1668 successor.Put(PREV_ID, Get(ID));
1672 Put(PREV_I
1677 bool MutableEntry::Put(BitTemp field, bool value) { function in class:syncable::MutableEntry
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DTCPackedCache.h73 // 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) { function in class:PackedCache
/external/valgrind/unittest/
H A Dthread_wrappers.h113 // Put.
114 void Put(void *item) { function in class:ProducerConsumerQueue
251 queue_.Put(closure);
H A Dracecheck_unittest.cc213 // 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()
5936 void Put(int message) { function in class:FifoMessageQueue
[all...]
/external/valgrind/main/coregrind/
H A Dm_translate.c403 /* Put(sp) = curr */
404 /* More generally, we must correctly handle a Put which writes
410 first_Put = st->Ist.Put.offset;
412 + sizeofIRType( typeOfIRExpr( bb->tyenv, st->Ist.Put.data ))
420 if (st->Ist.Put.data->tag == Iex_RdTmp
421 && get_SP_delta(st->Ist.Put.data->Iex.RdTmp.tmp, &delta)) {
422 IRTemp tttmp = st->Ist.Put.data->Iex.RdTmp.tmp;
463 (1) the Put does not exactly cover SP; it is a partial update.
467 (2) the Put does exactly cover SP, but we are unable to
469 case, we cannot assume that the Put
[all...]
/external/webkit/Source/WebCore/platform/leveldb/
H A DLevelDBDatabase.cpp128 return m_db->Put(writeOptions, makeSlice(key), makeSlice(value)).ok();
/external/valgrind/main/drd/tests/
H A Dtsan_unittest.cpp143 // Put everything into stderr.
451 // Two write accesses to GLOB are separated by PCQ Put/Get.
455 // 2. Q.Put() ---------\ .
462 Q.Put(NULL);
793 // 4. Q.Put() ---------------> d. Q.Get()
804 Q.Put(NULL);
893 // 2. Q2.Put() ----\ b. Q1.Put() -----\ .
901 Q1.Put(NULL);
905 Q2.Put(NUL
6572 void Put(int message) { function in class:FifoMessageQueue
[all...]
H A Dtsan_thread_wrappers_pthread.h382 // Put.
383 void Put(void *item) { function in class:ProducerConsumerQueue
521 queue_.Put(closure);
/external/valgrind/main/VEX/priv/
H A Dir_opt.c87 * Redundant-Put removal
385 if (isIRAtom(st->Ist.Put.data)) {
391 e1 = flatten_Expr(bb, st->Ist.Put.data);
392 addStmtToIRSB(bb, IRStmt_Put(st->Ist.Put.offset, e1));
503 On seeing 'Put (minoff,maxoff) = t or c', first remove in the env
617 Put */
621 key = mk_key_GetPut( st->Ist.Put.offset,
622 typeOfIRExpr(bb->tyenv,st->Ist.Put.data) );
654 vassert(isIRAtom(st->Ist.Put.data));
655 addToHHW( env, (HWord)key, (HWord)(st->Ist.Put
[all...]
H A Dir_defs.c1120 vex_printf( "PUT(%d) = ", s->Ist.Put.offset);
1121 ppIRExpr(s->Ist.Put.data);
1569 s->Ist.Put.offset = off;
1570 s->Ist.Put.data = data;
1818 return IRStmt_Put(s->Ist.Put.offset,
1819 deepCopyIRExpr(s->Ist.Put.data));
2618 return isIRAtom(st->Ist.Put.data);
2841 useBeforeDef_Expr(bb,stmt,stmt->Ist.Put.data,def_counts);
3114 tcExpr( bb, stmt, stmt->Ist.Put.data, gWordTy );
3115 if (typeOfIRExpr(tyenv,stmt->Ist.Put
[all...]
H A Dhost_x86_isel.c2166 /* We use the same ingenious scheme as gcc. Put the value
2208 /* We use the same ingenious scheme as gcc. Put the value
3682 IRType ty = typeOfIRExpr(env->type_env, stmt->Ist.Put.data);
3686 X86RI* ri = iselIntExpr_RI(env, stmt->Ist.Put.data);
3691 X86AMode_IR(stmt->Ist.Put.offset,hregX86_EBP())
3696 HReg r = iselIntExpr_R(env, stmt->Ist.Put.data);
3700 X86AMode_IR(stmt->Ist.Put.offset,
3706 X86AMode* am = X86AMode_IR(stmt->Ist.Put.offset, hregX86_EBP());
3708 iselInt64Expr(&vHi, &vLo, env, stmt->Ist.Put.data);
3714 HReg vec = iselVecExpr(env, stmt->Ist.Put
[all...]
/external/opencv/otherlibs/highgui/
H A Dbitstrm.cpp985 Put( m_pad_val, m_bit_idx & 7 );
1015 void WMBitStream::Put( int val, int bits ) function in class:WMBitStream
1054 Put( code >> 8, code & 255 );
/external/chromium/chrome/browser/history/
H A Dtext_database_manager.cc182 recent_changes_.Put(url, PageInfo(url_id, visit_id, time));
512 db_cache_.Put(id, new_db);
/external/chromium/chrome/browser/sync/util/
H A Dextensions_activity_monitor_unittest.cc186 TEST_F(ExtensionsActivityMonitorTest, Put) {
/external/chromium/chrome/browser/sync/
H A Dprofile_sync_service_autofill_unittest.cc571 item.Put(SPECIFICS, entity_specifics);
572 item.Put(SERVER_SPECIFICS, entity_specifics);
573 item.Put(BASE_VERSION, 1);
575 item.Put(syncable::ID, server_item_id);

Completed in 430 milliseconds

1234