Home
last modified time | relevance | path

Searched refs:code_table (Results 1 – 4 of 4) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dtiertexseqv.c46 int code_table[64]; in seq_unpack_rle_block() local
53 code_table[i] = get_sbits(&gb, 4); in seq_unpack_rle_block()
54 sz += FFABS(code_table[i]); in seq_unpack_rle_block()
60 len = code_table[i]; in seq_unpack_rle_block()
/third_party/skia/third_party/externals/freetype/src/type42/
Dt42parse.c808 PS_Table code_table = &loader->charstrings; in t42_parse_charstrings() local
909 error = psaux->ps_table_funcs->init( code_table, in t42_parse_charstrings()
1017 error = T1_Add_Table( code_table, n, cur, len + 1 ); in t42_parse_charstrings()
1021 code_table->elements[n][len] = '\0'; in t42_parse_charstrings()
1056 code_table->elements[0], in t42_parse_charstrings()
1057 code_table->lengths [0] ); in t42_parse_charstrings()
1070 code_table->elements[notdef_index], in t42_parse_charstrings()
1071 code_table->lengths [notdef_index] ); in t42_parse_charstrings()
1081 error = T1_Add_Table( code_table, notdef_index, in t42_parse_charstrings()
1093 error = T1_Add_Table( code_table, 0, in t42_parse_charstrings()
/third_party/skia/third_party/externals/freetype/src/type1/
Dt1load.c1913 PS_Table code_table = &loader->charstrings; in parse_charstrings() local
1959 code_table, num_glyphs + 1 + TABLE_EXTEND, memory ); in parse_charstrings()
2086 error = T1_Add_Table( code_table, n, in parse_charstrings()
2091 error = T1_Add_Table( code_table, n, base, size ); in parse_charstrings()
2126 code_table->elements[0], in parse_charstrings()
2127 code_table->lengths [0] ); in parse_charstrings()
2140 code_table->elements[notdef_index], in parse_charstrings()
2141 code_table->lengths [notdef_index] ); in parse_charstrings()
2151 error = T1_Add_Table( code_table, notdef_index, in parse_charstrings()
2163 error = T1_Add_Table( code_table, 0, in parse_charstrings()
[all …]
/third_party/node/deps/v8/src/wasm/
Dwasm-serialization.cc301 const NativeModule* module, base::Vector<WasmCode* const> code_table) in NativeModuleSerializer() argument
302 : native_module_(module), code_table_(code_table) { in NativeModuleSerializer()