Home
last modified time | relevance | path

Searched refs:first_word (Results 1 – 15 of 15) sorted by relevance

/external/v8/src/heap/
Dscavenger-inl.h183 MapWord first_word = first->map_word(); in EvacuateShortcutCandidate() local
184 if (first_word.IsForwardingAddress()) { in EvacuateShortcutCandidate()
185 HeapObject* target = first_word.ToForwardingAddress(); in EvacuateShortcutCandidate()
193 Map* map = first_word.ToMap(); in EvacuateShortcutCandidate()
236 MapWord first_word = object->synchronized_map_word(); in ScavengeObject() local
240 if (first_word.IsForwardingAddress()) { in ScavengeObject()
241 HeapObject* dest = first_word.ToForwardingAddress(); in ScavengeObject()
252 Map* map = first_word.ToMap(); in ScavengeObject()
Dheap.cc2299 MapWord first_word = HeapObject::cast(*p)->map_word(); in UpdateNewSpaceReferenceInExternalStringTableEntry() local
2301 if (!first_word.IsForwardingAddress()) { in UpdateNewSpaceReferenceInExternalStringTableEntry()
2314 String* new_string = String::cast(first_word.ToForwardingAddress()); in UpdateNewSpaceReferenceInExternalStringTableEntry()
/external/tensorflow/tensorflow/examples/saved_model/integration_tests/
Dexport_text_rnn_model.py143 def decode_greedy(self, sequence_length, first_word): argument
147 sequence = [first_word]
148 current_word = first_word
186 sequence_length=10, first_word=tf.constant("<S>"))
Duse_text_rnn_model.py40 sequence_length=10, first_word=tf.constant("<S>"))
/external/toolchain-utils/crosperf/
Dresults_report_templates.py53 first_word = table_name.strip().split()[0]
54 short_name = first_word.lower()
/external/protobuf/src/google/protobuf/util/internal/
Dutility.cc207 bool first_word = true; in ToCamelCase() local
215 if (!result.empty()) first_word = false; in ToCamelCase()
217 } else if (first_word) { in ToCamelCase()
224 first_word = false; in ToCamelCase()
/external/tensorflow/tensorflow/lite/tools/accuracy/ilsvrc/
Dgenerate_validation_labels.py45 first_word = entry[words_index][0].split(',')[0]
46 synset_to_word[synset_id] = first_word
/external/pdfium/core/fpdfapi/parser/
Dcpdf_cross_ref_avail.cpp88 const ByteString first_word = parser_->PeekNextWord(nullptr); in CheckCrossRef() local
92 const bool result = (first_word == kCrossRefKeyword) ? CheckCrossRefV4() in CheckCrossRef()
/external/swiftshader/third_party/SPIRV-Tools/test/tools/
Dexpect.py145 first_word = read_word(binary, 0, True)
146 if first_word == 0x07230203:
148 first_word = read_word(binary, 0, False)
149 if first_word == 0x07230203:
/external/deqp-deps/SPIRV-Tools/test/tools/
Dexpect.py145 first_word = read_word(binary, 0, True)
146 if first_word == 0x07230203:
148 first_word = read_word(binary, 0, False)
149 if first_word == 0x07230203:
/external/swiftshader/third_party/SPIRV-Tools/source/comp/
Dbit_stream.cpp245 const uint64_t first_word = bits << offset; in WriteBits() local
246 buffer_.back() |= first_word; in WriteBits()
/external/deqp-deps/SPIRV-Tools/source/comp/
Dbit_stream.cpp245 const uint64_t first_word = bits << offset; in WriteBits() local
246 buffer_.back() |= first_word; in WriteBits()
/external/swiftshader/third_party/SPIRV-Tools/source/
Dbinary.cpp280 const uint32_t first_word = peek(); in parseInstruction() local
286 _.endian_converted_words.push_back(first_word); in parseInstruction()
295 spvOpcodeSplit(first_word, &inst_word_count, &inst.opcode); in parseInstruction()
/external/deqp-deps/SPIRV-Tools/source/
Dbinary.cpp276 const uint32_t first_word = peek(); in parseInstruction() local
282 _.endian_converted_words.push_back(first_word); in parseInstruction()
291 spvOpcodeSplit(first_word, &inst_word_count, &inst.opcode); in parseInstruction()
/external/perfetto/src/trace_processor/
Dtrace_processor_impl.cc211 uint64_t first_word = *reinterpret_cast<const uint64_t*>(data); in GuessTraceType() local
212 if (first_word == kFuchsiaMagicNumber) in GuessTraceType()