Searched refs:code_table (Results 1 – 7 of 7) sorted by relevance
/external/v8/src/wasm/ |
D | wasm-code-specialization.cc | 111 FixedArray* code_table = compiled_module->ptr_to_code_table(); in ApplyToWholeInstance() local 117 code_table->length()); in ApplyToWholeInstance() 125 Code* wasm_function = Code::cast(code_table->get(func_index)); in ApplyToWholeInstance() 132 Code* export_wrapper = Code::cast(code_table->get(func_index)); in ApplyToWholeInstance() 147 Code* new_code = Code::cast(code_table->get(exp.index)); in ApplyToWholeInstance() 157 DCHECK_EQ(code_table->length(), func_index); in ApplyToWholeInstance() 232 FixedArray* code_table = in ApplyToWasmCode() local 235 Code* new_code = Code::cast(code_table->get(called_func_index)); in ApplyToWasmCode()
|
D | wasm-module.cc | 129 void FlushICache(Isolate* isolate, Handle<FixedArray> code_table) { in FlushICache() argument 130 for (int i = 0; i < code_table->length(); ++i) { in FlushICache() 131 Handle<Code> code = code_table->GetValueChecked<Code>(isolate, i); in FlushICache() 437 Handle<FixedArray> code_table = in CompileToModuleObject() local 445 code_table->set(static_cast<int>(i), *illegal_builtin); in CompileToModuleObject() 467 code_table->set(static_cast<int>(i), code); in CompileToModuleObject() 511 compiled_module->set_code_table(code_table); in CompileToModuleObject() 532 Handle<Code> wasm_code(Code::cast(code_table->get(exp.index)), isolate_); in CompileToModuleObject() 538 code_table->set(export_index, *wrapper_code); in CompileToModuleObject() 981 Handle<FixedArray> code_table; in Build() local [all …]
|
D | wasm-debug.cc | 342 FixedArray* code_table = instance->compiled_module()->ptr_to_code_table(); in RedirectCallsitesInInstance() local 344 RedirectCallsitesInCode(Code::cast(code_table->get(i)), old_target, in RedirectCallsitesInInstance() 417 Handle<FixedArray> code_table = instance->compiled_module()->code_table(); in RedirectToInterpreter() local 418 Handle<Code> old_code(Code::cast(code_table->get(func_index)), isolate); in RedirectToInterpreter()
|
D | wasm-objects.h | 260 MACRO(OBJECT, FixedArray, code_table) \
|
/external/pdfium/core/fxcodec/lgif/ |
D | fx_gif.cpp | 55 FXSYS_memset(code_table, 0, sizeof(tag_Table) * GIF_MAX_LZW_CODE); in ClearTable() 58 code_table[i].suffix = (uint8_t)i; in ClearTable() 68 stack[GIF_MAX_LZW_CODE - 1 - stack_size++] = code_table[code].suffix; in DecodeString() 69 code = code_table[code].prefix; in DecodeString() 78 code_table[code_next].prefix = prefix_code; in AddCode() 79 code_table[code_next].suffix = append_char; in AddCode() 240 code_table[i].prefix = 0; in ClearTable() 241 code_table[i].suffix = 0; in ClearTable() 263 code_table[index_num].prefix = gif_cut_buf(src_buf, src_offset, src_bit_cut, in Start() 265 code_table[index_num].suffix = gif_cut_buf(src_buf, src_offset, src_bit_cut, in Start() [all …]
|
D | fx_gif.h | 146 tag_Table code_table[GIF_MAX_LZW_CODE]; variable 201 tag_Table code_table[GIF_MAX_LZW_CODE]; variable
|
/external/pdfium/third_party/freetype/src/type1/ |
D | t1load.c | 1536 PS_Table code_table = &loader->charstrings; in parse_charstrings() local 1582 code_table, num_glyphs + 1 + TABLE_EXTEND, memory ); in parse_charstrings() 1709 error = T1_Add_Table( code_table, n, in parse_charstrings() 1714 error = T1_Add_Table( code_table, n, base, size ); in parse_charstrings() 1743 code_table->elements[0], in parse_charstrings() 1744 code_table->lengths [0] ); in parse_charstrings() 1757 code_table->elements[notdef_index], in parse_charstrings() 1758 code_table->lengths [notdef_index] ); in parse_charstrings() 1768 error = T1_Add_Table( code_table, notdef_index, in parse_charstrings() 1780 error = T1_Add_Table( code_table, 0, in parse_charstrings() [all …]
|