Home
last modified time | relevance | path

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

/external/freetype/src/type42/
Dt42parse.c785 PS_Table code_table = &loader->charstrings; in t42_parse_charstrings() local
886 error = psaux->ps_table_funcs->init( code_table, in t42_parse_charstrings()
994 error = T1_Add_Table( code_table, n, cur, len + 1 ); in t42_parse_charstrings()
998 code_table->elements[n][len] = '\0'; in t42_parse_charstrings()
1034 code_table->elements[0], in t42_parse_charstrings()
1035 code_table->lengths [0] ); in t42_parse_charstrings()
1048 code_table->elements[notdef_index], in t42_parse_charstrings()
1049 code_table->lengths [notdef_index] ); in t42_parse_charstrings()
1059 error = T1_Add_Table( code_table, notdef_index, in t42_parse_charstrings()
1071 error = T1_Add_Table( code_table, 0, in t42_parse_charstrings()
/external/freetype/src/type1/
Dt1load.c1802 PS_Table code_table = &loader->charstrings; in parse_charstrings() local
1848 code_table, num_glyphs + 1 + TABLE_EXTEND, memory ); in parse_charstrings()
1975 error = T1_Add_Table( code_table, n, in parse_charstrings()
1980 error = T1_Add_Table( code_table, n, base, size ); in parse_charstrings()
2015 code_table->elements[0], in parse_charstrings()
2016 code_table->lengths [0] ); in parse_charstrings()
2029 code_table->elements[notdef_index], in parse_charstrings()
2030 code_table->lengths [notdef_index] ); in parse_charstrings()
2040 error = T1_Add_Table( code_table, notdef_index, in parse_charstrings()
2052 error = T1_Add_Table( code_table, 0, in parse_charstrings()
[all …]
/external/v8/src/wasm/
Dwasm-serialization.cc239 Vector<WasmCode* const> code_table) in NativeModuleSerializer() argument
242 code_table_(code_table), in NativeModuleSerializer()
391 Vector<WasmCode* const> code_table(code_table_.data(), code_table_.size()); in GetSerializedNativeModuleSize() local
392 NativeModuleSerializer serializer(isolate_, native_module_, code_table); in GetSerializedNativeModuleSize()
397 Vector<WasmCode* const> code_table(code_table_.data(), code_table_.size()); in SerializeNativeModule() local
398 NativeModuleSerializer serializer(isolate_, native_module_, code_table); in SerializeNativeModule()
Dwasm-code-manager.cc356 for (WasmCode* code : code_table()) { in LogWasmCodes()
610 result.reserve(code_table().size()); in SnapshotCodeTable()
611 for (WasmCode* code : code_table()) result.push_back(code); in SnapshotCodeTable()
Dwasm-code-manager.h374 Vector<WasmCode*> code_table() const { in code_table() function