/external/perfetto/src/trace_processor/storage/ |
D | trace_storage.h | 68 using TrackId = tables::TrackTable::Id; 70 using CounterId = tables::CounterTable::Id; 72 using SliceId = tables::SliceTable::Id; 74 using InstantId = tables::InstantTable::Id; 76 using SchedId = tables::SchedSliceTable::Id; 78 using MappingId = tables::StackProfileMappingTable::Id; 80 using FrameId = tables::StackProfileFrameTable::Id; 82 using SymbolId = tables::SymbolTable::Id; 84 using CallsiteId = tables::StackProfileCallsiteTable::Id; 86 using MetadataId = tables::MetadataTable::Id; [all …]
|
/external/fonttools/Doc/source/ttLib/ |
D | tables.rst | 9 automatically when needed by :py:mod:`fontTools.ttLib`. The tables currently 15 tables/_a_n_k_r 16 tables/_a_v_a_r 17 tables/B_A_S_E_ 18 tables/_b_s_l_n 19 tables/C_B_D_T_ 20 tables/C_B_L_C_ 21 tables/C_F_F_ 22 tables/C_F_F__2 23 tables/_c_i_d_g [all …]
|
/external/python/cpython3/Tools/unicode/ |
D | mkstringprep.py | 53 tables = [] variable 70 tables.append((curname, table)) 126 name, table = tables[0] 127 del tables[0] 149 name, table = tables[0] 150 del tables[0] 165 name, table_b2 = tables[0] 166 del tables[0] 169 name, table_b3 = tables[0] 170 del tables[0] [all …]
|
/external/python/cpython2/Tools/unicode/ |
D | mkstringprep.py | 51 tables = [] variable 69 tables.append((curname, table)) 123 name, table = tables[0] 124 del tables[0] 146 name, table = tables[0] 147 del tables[0] 162 name, table_b2 = tables[0] 163 del tables[0] 166 name, table_b3 = tables[0] 167 del tables[0] [all …]
|
/external/fonttools/Tests/varLib/ |
D | interpolate_layout_test.py | 71 def expect_ttx(self, font, expected_ttx, tables): argument 73 font.saveXML(path, tables=tables) 82 def check_ttx_dump(self, font, expected_ttx, tables, suffix): argument 86 self.expect_ttx(TTFont(path), expected_ttx, tables) 121 tables = ['GSUB'] 123 self.expect_ttx(instfont, expected_ttx_path, tables) 124 self.check_ttx_dump(instfont, expected_ttx_path, tables, suffix) 145 tables = ['GSUB'] 147 self.expect_ttx(instfont, expected_ttx_path, tables) 148 self.check_ttx_dump(instfont, expected_ttx_path, tables, suffix) [all …]
|
D | varLib_test.py | 94 def expect_ttx(self, font, expected_ttx, tables): argument 96 font.saveXML(path, tables=tables) 105 def check_ttx_dump(self, font, expected_ttx, tables, suffix): argument 109 self.expect_ttx(TTFont(path), expected_ttx, tables) 119 def _run_varlib_build_test(self, designspace_name, font_name, tables, argument 144 self.expect_ttx(varfont, expected_ttx_path, tables) 145 self.check_ttx_dump(varfont, expected_ttx_path, tables, suffix) 155 tables=['GDEF', 'HVAR', 'MVAR', 'fvar', 'gvar'], 173 tables=['avar'], 193 tables=['avar'], [all …]
|
/external/webrtc/modules/audio_coding/codecs/isac/main/source/ |
D | transform.c | 18 void WebRtcIsac_InitTransform(TransformTables* tables) { in WebRtcIsac_InitTransform() argument 25 tables->costab1[k] = cos(phase); in WebRtcIsac_InitTransform() 26 tables->sintab1[k] = sin(phase); in WebRtcIsac_InitTransform() 33 tables->costab2[k] = cos(phase); in WebRtcIsac_InitTransform() 34 tables->sintab2[k] = sin(phase); in WebRtcIsac_InitTransform() 39 void WebRtcIsac_Time2Spec(const TransformTables* tables, in WebRtcIsac_Time2Spec() argument 57 tmp1r = tables->costab1[k]; in WebRtcIsac_Time2Spec() 58 tmp1i = tables->sintab1[k]; in WebRtcIsac_Time2Spec() 74 tmp1r = tables->costab2[k]; in WebRtcIsac_Time2Spec() 75 tmp1i = tables->sintab2[k]; in WebRtcIsac_Time2Spec() [all …]
|
/external/fonttools/Doc/source/ttLib/tables/ |
D | VTT_related.rst | 7 .. automodule:: fontTools.ttLib.tables.T_S_I__0 15 .. automodule:: fontTools.ttLib.tables.T_S_I__1 23 .. automodule:: fontTools.ttLib.tables.T_S_I__2 31 .. automodule:: fontTools.ttLib.tables.T_S_I__3 39 .. automodule:: fontTools.ttLib.tables.T_S_I__5 47 .. automodule:: fontTools.ttLib.tables.T_S_I_B_ 55 .. automodule:: fontTools.ttLib.tables.T_S_I_C_ 63 .. automodule:: fontTools.ttLib.tables.T_S_I_D_ 71 .. automodule:: fontTools.ttLib.tables.T_S_I_J_ 79 .. automodule:: fontTools.ttLib.tables.T_S_I_P_ [all …]
|
/external/pcre/src/ |
D | pcre2_serialize.c | 81 const uint8_t *tables; in pcre2_serialize_encode() local 94 tables = NULL; in pcre2_serialize_encode() 101 if (tables == NULL) in pcre2_serialize_encode() 102 tables = re->tables; in pcre2_serialize_encode() 103 else if (tables != re->tables) in pcre2_serialize_encode() 124 memcpy(dst_bytes, tables, TABLES_LENGTH); in pcre2_serialize_encode() 144 (void)memset(dst_bytes + offsetof(pcre2_real_code, tables), 0, in pcre2_serialize_encode() 172 uint8_t *tables; in pcre2_serialize_decode() local 192 tables = memctl->malloc(TABLES_LENGTH + sizeof(PCRE2_SIZE), memctl->memory_data); in pcre2_serialize_decode() 193 if (tables == NULL) return PCRE2_ERROR_NOMEMORY; in pcre2_serialize_decode() [all …]
|
D | pcre2_dftables.c | 101 const unsigned char *tables; in main() local 145 tables = maketables(); in main() 146 base_of_tables = tables; in main() 160 size_t len = fwrite(tables, 1, TABLES_LENGTH, f); in main() 230 fprintf(f, "%3d", *tables++); in main() 241 fprintf(f, "%3d", *tables++); in main() 261 (void)fprintf(f, "0x%02x", *tables++); in main() 287 (void)fprintf(f, "0x%02x", *tables++); in main()
|
/external/rust/crates/base64/src/ |
D | lib.rs | 83 mod tables; module 130 CharacterSet::Standard => tables::STANDARD_ENCODE, 131 CharacterSet::UrlSafe => tables::URL_SAFE_ENCODE, 132 CharacterSet::Crypt => tables::CRYPT_ENCODE, 133 CharacterSet::Bcrypt => tables::BCRYPT_ENCODE, 134 CharacterSet::ImapMutf7 => tables::IMAP_MUTF7_ENCODE, 135 CharacterSet::BinHex => tables::BINHEX_ENCODE, 141 CharacterSet::Standard => tables::STANDARD_DECODE, 142 CharacterSet::UrlSafe => tables::URL_SAFE_DECODE, 143 CharacterSet::Crypt => tables::CRYPT_DECODE, [all …]
|
/external/perfetto/src/trace_processor/importers/proto/ |
D | heap_graph_tracker.h | 55 std::set<tables::HeapGraphObjectTable::Id> visited; 59 tables::HeapGraphObjectTable::Id id, 62 tables::HeapGraphObjectTable::Id id, 127 const std::vector<tables::HeapGraphClassTable::Id>* RowsForType( in RowsForType() 143 std::unique_ptr<tables::ExperimentalFlamegraphNodesTable> BuildFlamegraph( 173 std::map<uint64_t, tables::HeapGraphObjectTable::Id> object_id_to_db_id; 174 std::map<uint64_t, tables::HeapGraphClassTable::Id> type_id_to_db_id; 175 std::map<uint64_t, std::vector<tables::HeapGraphReferenceTable::Id>> 178 std::map<tables::HeapGraphClassTable::Id, 179 std::vector<tables::HeapGraphObjectTable::Id>> [all …]
|
D | flamegraph_construction_algorithms.cc | 42 std::unique_ptr<tables::ExperimentalFlamegraphNodesTable> tbl; 48 const tables::StackProfileCallsiteTable& callsites_tbl = in GetMergedCallsites() 50 const tables::StackProfileFrameTable& frames_tbl = in GetMergedCallsites() 52 const tables::SymbolTable& symbols_tbl = storage->symbol_table(); in GetMergedCallsites() 53 const tables::StackProfileMappingTable& mapping_tbl = in GetMergedCallsites() 98 const tables::StackProfileCallsiteTable& callsites_tbl = in BuildFlamegraphTableTreeStructure() 105 std::unique_ptr<tables::ExperimentalFlamegraphNodesTable> tbl( in BuildFlamegraphTableTreeStructure() 106 new tables::ExperimentalFlamegraphNodesTable( in BuildFlamegraphTableTreeStructure() 133 tables::ExperimentalFlamegraphNodesTable::Row row{}; in BuildFlamegraphTableTreeStructure() 199 static std::unique_ptr<tables::ExperimentalFlamegraphNodesTable> [all …]
|
D | heap_graph_tracker.cc | 40 tables::HeapGraphObjectTable::Id id, in ForReferenceSet() 60 std::set<tables::HeapGraphObjectTable::Id> GetChildren( in GetChildren() 62 tables::HeapGraphObjectTable::Id id) { in GetChildren() 85 std::set<tables::HeapGraphObjectTable::Id> children; in GetChildren() 111 tables::HeapGraphObjectTable::Id obj_id) { in GetClassDescriptor() 120 base::Optional<tables::HeapGraphObjectTable::Id> GetReferredObj( in GetReferredObj() 135 tables::HeapGraphReferenceTable::ColumnIndex::owned_id)); in GetReferredObj() 139 return tables::HeapGraphObjectTable::Id( in GetReferredObj() 154 auto obj_id = tables::HeapGraphObjectTable::Id(static_cast<uint32_t>( in BuildSuperclassMap() 157 tables::HeapGraphObjectTable::ColumnIndex::id)) in BuildSuperclassMap() [all …]
|
D | memory_tracker_snapshot_parser.cc | 175 tables::MemorySnapshotTable::Row snapshot_row( in EmitRows() 177 tables::MemorySnapshotTable::Id snapshot_row_id = in EmitRows() 183 tables::ProcessMemorySnapshotTable::Row process_row; in EmitRows() 187 tables::ProcessMemorySnapshotTable::Id proc_snapshot_row_id = in EmitRows() 199 tables::ProcessMemorySnapshotTable::Row fake_process_row; in EmitRows() 202 tables::ProcessMemorySnapshotTable::Id fake_proc_snapshot_row_id = in EmitRows() 210 tables::MemorySnapshotEdgeTable::Row edge_row; in EmitRows() 215 static_cast<tables::MemorySnapshotNodeTable::Id>(source_it->second); in EmitRows() 220 static_cast<tables::MemorySnapshotNodeTable::Id>(target_it->second); in EmitRows() 238 base::Optional<tables::MemorySnapshotNodeTable::Id> parent_node_row_id, in EmitMemorySnapshotNodeRowsRecursively() [all …]
|
/external/mesa3d/src/mesa/main/ |
D | get_hash_generator.py | 97 def print_tables(tables): argument 98 for table in tables: 102 for table in tables: 116 def merge_tables(tables): argument 118 for api, indices in sorted(tables.items()): 143 tables = defaultdict(lambda:{}) 171 add_to_hash_table(tables[api], hash_val, len(params)) 174 add_to_hash_table(tables["GLES3"], hash_val, len(params)) 175 add_to_hash_table(tables["GLES31"], hash_val, len(params)) 176 add_to_hash_table(tables["GLES32"], hash_val, len(params)) [all …]
|
/external/fonttools/Lib/fontTools/merge/ |
D | tables.py | 6 from fontTools.ttLib.tables.DefaultTable import DefaultTable 164 def merge(self, m, tables): argument 165 DefaultTable.merge(self, m, tables) 212 def merge(self, m, tables): argument 213 for i,table in enumerate(tables): 223 return DefaultTable.merge(self, m, tables) 231 def merge(self, m, tables): argument 233 if any(hasattr(table, "FDSelect") for table in tables): 238 for table in tables: 241 newcff = tables[0] [all …]
|
/external/freetype/src/pcf/ |
D | pcfread.c | 99 PCF_Table tables; in pcf_read_TOC() local 130 if ( FT_QNEW_ARRAY( face->toc.tables, toc->count ) ) in pcf_read_TOC() 133 tables = face->toc.tables; in pcf_read_TOC() 136 if ( FT_STREAM_READ_FIELDS( pcf_table_header, tables ) ) in pcf_read_TOC() 138 tables++; in pcf_read_TOC() 144 tables = face->toc.tables; in pcf_read_TOC() 158 if ( tables[i].offset > tables[i + 1].offset ) in pcf_read_TOC() 160 tmp = tables[i]; in pcf_read_TOC() 161 tables[i] = tables[i + 1]; in pcf_read_TOC() 162 tables[i + 1] = tmp; in pcf_read_TOC() [all …]
|
/external/perfetto/src/trace_processor/dynamic/ |
D | experimental_slice_layout_generator.h | 32 static_cast<uint32_t>(tables::SliceTable::ColumnIndex::arg_set_id) + 2; 35 const tables::SliceTable* table); 49 tables::SliceTable::Id InsertSlice( 50 std::map<tables::SliceTable::Id, tables::SliceTable::Id>& id_map, 51 tables::SliceTable::Id id, 52 base::Optional<tables::SliceTable::Id> parent_id); 59 const tables::SliceTable* slice_table_;
|
D | experimental_slice_layout_generator.cc | 40 const tables::SliceTable* table) in ExperimentalSliceLayoutGenerator() 47 Table::Schema schema = tables::SliceTable::Schema(); in CreateSchema() 137 tables::SliceTable::Id ExperimentalSliceLayoutGenerator::InsertSlice( in InsertSlice() 138 std::map<tables::SliceTable::Id, tables::SliceTable::Id>& id_map, in InsertSlice() 139 tables::SliceTable::Id id, in InsertSlice() 140 base::Optional<tables::SliceTable::Id> parent_id) { in InsertSlice() 142 tables::SliceTable::Id root_id = id_map[parent_id.value()]; in InsertSlice() 183 std::map<tables::SliceTable::Id, GroupInfo> groups; in ComputeLayoutTable() 185 std::map<tables::SliceTable::Id, tables::SliceTable::Id> id_map; in ComputeLayoutTable() 187 const auto& id_col = table.GetIdColumnByName<tables::SliceTable::Id>("id"); in ComputeLayoutTable() [all …]
|
/external/fonttools/Lib/fontTools/ttLib/ |
D | sfnt.py | 83 tables = {} 88 tables[tag] = entry 89 self.tables = OrderedDict(sorted(tables.items(), key=lambda i: i[1].offset)) 96 return tag in self.tables 101 return self.tables.keys() 105 entry = self.tables[Tag(tag)] 122 del self.tables[Tag(tag)] 243 self.tables = OrderedDict() 246 if tag in self.tables: 249 self.tables[tag] = entry [all …]
|
D | ttFont.py | 102 self.tables = {} 242 quiet=None, tables=None, skipTables=None, splitTables=False, argument 251 if not tables: 252 tables = list(self.keys()) 253 if "GlyphOrder" not in tables: 254 tables = ["GlyphOrder"] + tables 257 if tag in tables: 258 tables.remove(tag) 259 numTables = len(tables) 280 tag = tables[i] [all …]
|
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/StdSuites/ |
D | Table_Suite.py | 48 class tables(aetools.ComponentItem): class 52 table = tables 71 tables._superclassnames = [] 72 tables._privpropdict = { 74 tables._privelemdict = { 90 'ctbl' : tables,
|
/external/perfetto/src/trace_processor/importers/common/ |
D | track_tracker.cc | 41 tables::ThreadTrackTable::Row row; in InternThreadTrack() 53 tables::ProcessTrackTable::Row row; in InternProcessTrack() 73 tables::TrackTable::Row row(name); in InternCpuTrack() 80 TrackId TrackTracker::InternGpuTrack(const tables::GpuTrackTable::Row& row) { in InternGpuTrack() 119 tables::ProcessTrackTable::Row track(name); in InternLegacyChromeAsyncTrack() 136 tables::TrackTable::Row row(name); in CreateGlobalAsyncTrack() 148 tables::ProcessTrackTable::Row row(name); in CreateProcessAsyncTrack() 163 tables::ProcessTrackTable::Row row; in InternLegacyChromeProcessInstantTrack() 189 tables::TrackTable::Row row; in GetOrCreateTriggerTrack() 203 tables::CounterTrackTable::Row row(name); in InternGlobalCounterTrack() [all …]
|
/external/harfbuzz_ng/src/ |
D | hb-open-file.hh | 84 unsigned int get_table_count () const { return tables.len; } in get_table_count() 86 { return tables[i]; } in get_table() 93 + tables.sub_array (start_offset, table_count) in get_table_tags() 98 return tables.len; in get_table_tags() 107 if (tables.len < 16) in find_table_index() 108 return tables.lfind (t, table_index, HB_NOT_FOUND_STORE, Index::NOT_FOUND_INDEX); in find_table_index() 110 return tables.bfind (t, table_index, HB_NOT_FOUND_STORE, Index::NOT_FOUND_INDEX); in find_table_index() 135 if (unlikely (!tables.serialize (c, num_items))) return_trace (false); in serialize() 151 TableRecord &rec = tables.arrayZ[i]; in serialize() 179 tables.qsort (); in serialize() [all …]
|