/external/pdfium/core/fxcodec/codec/ |
D | fx_codec_flate.cpp | 161 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/ |
D | wasm-code-specialization.cc | 210 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()
|
D | wasm-debug.cc | 418 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/ |
D | ll_prof.py | 438 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/ |
D | type-info.cc | 522 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()
|
D | type-info.h | 109 Code* old_code,
|
D | objects-debug.cc | 1518 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()
|
D | objects.h | 5282 static void VerifyRecompiledCode(Code* old_code, Code* new_code);
|
D | objects.cc | 9607 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/ |
D | keytab-lilo.txt | 59 keytab-lilo.pl [ -p <old_code>=<new_code> ] ... 63 -p <old_code>=<new_code>
|
/external/v8/src/heap/ |
D | remembered-set.h | 288 Object* old_code = code; in UpdateCodeEntry() local 290 if (code != old_code) { in UpdateCodeEntry()
|
/external/v8/src/debug/ |
D | liveedit.cc | 885 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()
|
D | debug.cc | 1144 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/ |
D | run_suite.py | 1804 old_code = code 1807 if old_code != code: 1811 RETURN_CODES.get_string(old_code),
|
/external/v8/src/interpreter/ |
D | interpreter.cc | 191 Object* old_code = code; in IterateDispatchTable() local 193 if (code != old_code) { in IterateDispatchTable()
|