Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/codec/
Dfx_codec_flate.cpp161 uint32_t old_code = (uint32_t)-1; in Decode() local
193 if (old_code != (uint32_t)-1) { in Decode()
194 AddCode(old_code, last_char); in Decode()
196 old_code = code; in Decode()
200 old_code = (uint32_t)-1; in Decode()
204 if (old_code == (uint32_t)-1) { in Decode()
212 DecodeString(old_code); in Decode()
226 if (old_code < 256) { in Decode()
227 AddCode(old_code, last_char); in Decode()
228 } else if (old_code - 258 >= m_nCodes) { in Decode()
[all …]
/external/v8/src/wasm/
Dwasm-code-specialization.cc210 Code* old_code = in ApplyToWasmCode() local
213 if (old_code->kind() != Code::WASM_FUNCTION && in ApplyToWasmCode()
214 old_code->kind() != Code::WASM_TO_JS_FUNCTION && in ApplyToWasmCode()
215 old_code->builtin_index() != Builtins::kIllegal) in ApplyToWasmCode()
Dwasm-debug.cc418 Handle<Code> old_code(Code::cast(code_table->get(func_index)), isolate); in RedirectToInterpreter() local
421 RedirectCallsitesInInstance(isolate, *instance, *old_code, *new_code); in RedirectToInterpreter()
/external/v8/tools/
Dll_prof.py438 def _HandleCodeConflict(old_code, new_code): argument
439 assert (old_code.start_address == new_code.start_address and
440 old_code.end_address == new_code.end_address), \
441 "Conficting code log entries %s and %s" % (old_code, new_code)
442 if old_code.name == new_code.name:
446 old_code.AddName(new_code.name)
/external/v8/src/
Dtype-info.cc522 Code* old_code = *code; in CreateDictionary() local
524 RelocateRelocInfos(infos, old_code, *code); in CreateDictionary()
529 Code* old_code, in RelocateRelocInfos() argument
535 (info->pc() - old_code->instruction_start())); in RelocateRelocInfos()
Dtype-info.h109 Code* old_code,
Dobjects-debug.cc1518 void Code::VerifyRecompiledCode(Code* old_code, Code* new_code) { in VerifyRecompiledCode() argument
1519 if (old_code->kind() != FUNCTION) return; in VerifyRecompiledCode()
1521 Isolate* isolate = old_code->GetIsolate(); in VerifyRecompiledCode()
1526 RelocIterator old_it(old_code, mask); in VerifyRecompiledCode()
Dobjects.h5282 static void VerifyRecompiledCode(Code* old_code, Code* new_code);
Dobjects.cc9607 Handle<Code> old_code(Code::cast(cache->get(i + kCodeIndex)), isolate); in PutHashTableElement() local
9608 CodeCacheHashTable::Put(table, old_name, old_code); in PutHashTableElement()
/external/syslinux/doc/
Dkeytab-lilo.txt59 keytab-lilo.pl [ -p <old_code>=<new_code> ] ...
63 -p <old_code>=<new_code>
/external/v8/src/heap/
Dremembered-set.h288 Object* old_code = code; in UpdateCodeEntry() local
290 if (code != old_code) { in UpdateCodeEntry()
/external/v8/src/debug/
Dliveedit.cc885 Handle<Code> old_code(shared_info->code()); in ReplaceFunctionCode() local
901 DCHECK(old_code->kind() == Code::FUNCTION); in ReplaceFunctionCode()
905 ReplaceCodeObject(old_code, in ReplaceFunctionCode()
911 ReplaceCodeObject(old_code, new_code); in ReplaceFunctionCode()
Ddebug.cc1144 static Address ComputeNewPcForRedirect(Code* new_code, Code* old_code, in ComputeNewPcForRedirect() argument
1146 DCHECK_EQ(old_code->kind(), Code::FUNCTION); in ComputeNewPcForRedirect()
1154 for (RelocIterator it(old_code, mask); !it.done(); it.next()) { in ComputeNewPcForRedirect()
1165 for (RelocIterator it(old_code, mask); !it.done(); it.next()) { in ComputeNewPcForRedirect()
/external/autotest/site_utils/
Drun_suite.py1804 old_code = code
1807 if old_code != code:
1811 RETURN_CODES.get_string(old_code),
/external/v8/src/interpreter/
Dinterpreter.cc191 Object* old_code = code; in IterateDispatchTable() local
193 if (code != old_code) { in IterateDispatchTable()