Searched refs:code_table (Results 1 – 6 of 6) sorted by relevance
/external/pdfium/core/src/fxcodec/lgif/ |
D | fx_gif.cpp | 31 FXSYS_memset(code_table, 0, sizeof(tag_Table) * GIF_MAX_LZW_CODE); in ClearTable() 34 code_table[i].suffix = (uint8_t)i; in ClearTable() 44 stack[GIF_MAX_LZW_CODE - 1 - stack_size++] = code_table[code].suffix; in DecodeString() 45 code = code_table[code].prefix; in DecodeString() 54 code_table[code_next].prefix = prefix_code; in AddCode() 55 code_table[code_next].suffix = append_char; in AddCode() 205 code_table[i].prefix = 0; in ClearTable() 206 code_table[i].suffix = 0; in ClearTable() 227 code_table[index_num].prefix = _gif_cut_buf(src_buf, src_offset, src_bit_cut, in Start() 229 code_table[index_num].suffix = _gif_cut_buf(src_buf, src_offset, src_bit_cut, in Start() [all …]
|
D | fx_gif.h | 149 tag_Table code_table[GIF_MAX_LZW_CODE]; variable 202 tag_Table code_table[GIF_MAX_LZW_CODE]; variable
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/type42/ |
D | t42parse.c | 778 PS_Table code_table = &loader->charstrings; in t42_parse_charstrings() local 879 error = psaux->ps_table_funcs->init( code_table, in t42_parse_charstrings() 976 error = T1_Add_Table( code_table, n, cur, len + 1 ); in t42_parse_charstrings() 980 code_table->elements[n][len] = '\0'; in t42_parse_charstrings() 1016 code_table->elements[0], in t42_parse_charstrings() 1017 code_table->lengths [0] ); in t42_parse_charstrings() 1030 code_table->elements[notdef_index], in t42_parse_charstrings() 1031 code_table->lengths [notdef_index] ); in t42_parse_charstrings() 1041 error = T1_Add_Table( code_table, notdef_index, in t42_parse_charstrings() 1053 error = T1_Add_Table( code_table, 0, in t42_parse_charstrings()
|
/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 …]
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/type1/ |
D | t1load.c | 1554 PS_Table code_table = &loader->charstrings; in parse_charstrings() local 1600 code_table, num_glyphs + 1 + TABLE_EXTEND, memory ); in parse_charstrings() 1727 error = T1_Add_Table( code_table, n, in parse_charstrings() 1732 error = T1_Add_Table( code_table, n, base, size ); in parse_charstrings() 1761 code_table->elements[0], in parse_charstrings() 1762 code_table->lengths [0] ); in parse_charstrings() 1775 code_table->elements[notdef_index], in parse_charstrings() 1776 code_table->lengths [notdef_index] ); in parse_charstrings() 1786 error = T1_Add_Table( code_table, notdef_index, in parse_charstrings() 1798 error = T1_Add_Table( code_table, 0, in parse_charstrings() [all …]
|
/external/v8/src/wasm/ |
D | wasm-module.cc | 783 Handle<FixedArray> code_table = CompileFunctions(isolate); in Instantiate() local 784 if (code_table.is_null()) return Handle<JSObject>::null(); in Instantiate() 786 instance.js_object->SetInternalField(kWasmModuleCodeTable, *code_table); in Instantiate() 799 Handle<Code> code = Handle<Code>(Code::cast(code_table->get(i))); in Instantiate()
|