Home
last modified time | relevance | path

Searched refs:tables (Results 1 – 25 of 2243) sorted by relevance

12345678910>>...90

/external/perfetto/src/trace_processor/storage/
Dtrace_storage.h68 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/
Dtables.rst2 tables title
60 <module 'ttLib.tables._g_l_y_f'>
62 <class ttLib.tables._g_l_y_f.table__g_l_y_f at 645f400>
65 You must subclass from :py:mod:`fontTools.ttLib.tables.DefaultTable.DefaultTable`. It provides some…
78 # refer to other tables. Do ***not*** keep a reference to
87 # Again, 'ttFont' is there so you can access other tables.
103 .. automodule:: fontTools.ttLib.tables
111 .. automodule:: fontTools.ttLib.tables._a_n_k_r
119 .. automodule:: fontTools.ttLib.tables._a_v_a_r
127 .. automodule:: fontTools.ttLib.tables._b_s_l_n
[all …]
/external/python/cpython3/Tools/unicode/
Dmkstringprep.py53 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/
Dmkstringprep.py51 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/
Dinterpolate_layout_test.py72 def expect_ttx(self, font, expected_ttx, tables): argument
74 font.saveXML(path, tables=tables)
83 def check_ttx_dump(self, font, expected_ttx, tables, suffix): argument
87 self.expect_ttx(TTFont(path), expected_ttx, tables)
122 tables = ['GSUB']
124 self.expect_ttx(instfont, expected_ttx_path, tables)
125 self.check_ttx_dump(instfont, expected_ttx_path, tables, suffix)
146 tables = ['GSUB']
148 self.expect_ttx(instfont, expected_ttx_path, tables)
149 self.check_ttx_dump(instfont, expected_ttx_path, tables, suffix)
[all …]
DvarLib_test.py95 def expect_ttx(self, font, expected_ttx, tables): argument
97 font.saveXML(path, tables=tables)
106 def check_ttx_dump(self, font, expected_ttx, tables, suffix): argument
110 self.expect_ttx(TTFont(path), expected_ttx, tables)
120 def _run_varlib_build_test(self, designspace_name, font_name, tables, argument
145 self.expect_ttx(varfont, expected_ttx_path, tables)
146 self.check_ttx_dump(varfont, expected_ttx_path, tables, suffix)
156 tables=['GDEF', 'HVAR', 'MVAR', 'fvar', 'gvar'],
174 tables=['avar'],
194 tables=['avar'],
[all …]
Dmutator_test.py70 def expect_ttx(self, font, expected_ttx, tables): argument
72 font.saveXML(path, tables=tables)
115 tables = [table_tag for table_tag in instfont.keys() if table_tag != 'head']
117 self.expect_ttx(instfont, expected_ttx_path, tables)
136 tables = [table_tag for table_tag in instfont.keys() if table_tag != 'head']
138 self.expect_ttx(instfont, expected_ttx_path, tables)
158 tables = [table_tag for table_tag in instfont.keys() if table_tag != 'head']
160 self.expect_ttx(instfont, expected_ttx_path, tables)
175 tables = ["hmtx", "CFF2"]
181 self.expect_ttx(new_font, expected_ttx_path, tables)
/external/webrtc/modules/audio_coding/codecs/isac/main/source/
Dtransform.c18 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/pcre/dist2/src/
Dpcre2_serialize.c81 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 …]
Dpcre2_dftables.c101 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/mesa3d/src/mesa/main/
Dget_hash_generator.py97 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/freetype/src/pcf/
Dpcfread.c99 PCF_Table tables; in pcf_read_TOC() local
130 if ( FT_NEW_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/
Dexperimental_slice_layout_generator.h32 static_cast<uint32_t>(tables::SliceTable::ColumnIndex::arg_set_id) + 2;
35 const tables::SliceTable* table);
47 tables::SliceTable::Id InsertSlice(
48 std::map<tables::SliceTable::Id, tables::SliceTable::Id>& id_map,
49 tables::SliceTable::Id id,
50 base::Optional<tables::SliceTable::Id> parent_id);
57 const tables::SliceTable* slice_table_;
Dexperimental_slice_layout_generator.cc40 const tables::SliceTable* table) in ExperimentalSliceLayoutGenerator()
47 Table::Schema schema = tables::SliceTable::Schema(); in CreateSchema()
132 tables::SliceTable::Id ExperimentalSliceLayoutGenerator::InsertSlice( in InsertSlice()
133 std::map<tables::SliceTable::Id, tables::SliceTable::Id>& id_map, in InsertSlice()
134 tables::SliceTable::Id id, in InsertSlice()
135 base::Optional<tables::SliceTable::Id> parent_id) { in InsertSlice()
137 tables::SliceTable::Id root_id = id_map[parent_id.value()]; in InsertSlice()
178 std::map<tables::SliceTable::Id, GroupInfo> groups; in ComputeLayoutTable()
180 std::map<tables::SliceTable::Id, tables::SliceTable::Id> id_map; in ComputeLayoutTable()
182 const auto& id_col = table.GetIdColumnByName<tables::SliceTable::Id>("id"); in ComputeLayoutTable()
[all …]
Dexperimental_slice_layout_generator_unittest.cc74 tables::SliceTable::Id Insert( in Insert()
75 tables::SliceTable* table, in Insert()
80 base::Optional<tables::SliceTable::Id> parent_id) { in Insert()
81 tables::SliceTable::Row row; in Insert()
85 base::Optional<tables::SliceTable::Id> id = parent_id; in Insert()
90 row.track_id = tables::TrackTable::Id{track_id}; in Insert()
98 tables::SliceTable slice_table(&pool, nullptr); in TEST()
115 tables::SliceTable slice_table(&pool, nullptr); in TEST()
134 tables::SliceTable slice_table(&pool, nullptr); in TEST()
160 tables::SliceTable slice_table(&pool, nullptr); in TEST()
[all …]
/external/perfetto/src/trace_processor/importers/proto/
Dheap_graph_tracker.h55 std::set<tables::HeapGraphObjectTable::Id> visited;
59 tables::HeapGraphObjectTable::Id id,
62 tables::HeapGraphObjectTable::Id id,
123 const std::vector<tables::HeapGraphClassTable::Id>* RowsForType( in RowsForType()
139 std::unique_ptr<tables::ExperimentalFlamegraphNodesTable> BuildFlamegraph(
169 std::map<uint64_t, tables::HeapGraphObjectTable::Id> object_id_to_db_id;
170 std::map<uint64_t, tables::HeapGraphClassTable::Id> type_id_to_db_id;
171 std::map<uint64_t, std::vector<tables::HeapGraphReferenceTable::Id>>
174 std::map<tables::HeapGraphClassTable::Id,
175 std::vector<tables::HeapGraphObjectTable::Id>>
[all …]
Dheap_profile_tracker.cc42 const tables::StackProfileCallsiteTable& callsites_tbl = in GetMergedCallsites()
44 const tables::StackProfileFrameTable& frames_tbl = in GetMergedCallsites()
46 const tables::SymbolTable& symbols_tbl = storage->symbol_table(); in GetMergedCallsites()
47 const tables::StackProfileMappingTable& mapping_tbl = in GetMergedCallsites()
85 std::unique_ptr<tables::ExperimentalFlamegraphNodesTable> BuildNativeFlamegraph( in BuildNativeFlamegraph()
89 const tables::HeapProfileAllocationTable& allocation_tbl = in BuildNativeFlamegraph()
91 const tables::StackProfileCallsiteTable& callsites_tbl = in BuildNativeFlamegraph()
100 std::unique_ptr<tables::ExperimentalFlamegraphNodesTable> tbl( in BuildNativeFlamegraph()
101 new tables::ExperimentalFlamegraphNodesTable( in BuildNativeFlamegraph()
127 tables::ExperimentalFlamegraphNodesTable::Row row{}; in BuildNativeFlamegraph()
[all …]
Dheap_graph_tracker.cc35 tables::HeapGraphObjectTable::Id id, in ForReferenceSet()
55 std::set<tables::HeapGraphObjectTable::Id> GetChildren( in GetChildren()
57 tables::HeapGraphObjectTable::Id id) { in GetChildren()
80 std::set<tables::HeapGraphObjectTable::Id> children; in GetChildren()
106 tables::HeapGraphObjectTable::Id obj_id) { in GetClassDescriptor()
115 base::Optional<tables::HeapGraphObjectTable::Id> GetReferredObj( in GetReferredObj()
130 tables::HeapGraphReferenceTable::ColumnIndex::owned_id)); in GetReferredObj()
134 return tables::HeapGraphObjectTable::Id( in GetReferredObj()
149 auto obj_id = tables::HeapGraphObjectTable::Id(static_cast<uint32_t>( in BuildSuperclassMap()
152 tables::HeapGraphObjectTable::ColumnIndex::id)) in BuildSuperclassMap()
[all …]
Dmemory_tracker_snapshot_parser.cc175 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/fonttools/Lib/fontTools/ttLib/
Dsfnt.py83 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 …]
DttFont.py93 self.tables = {}
233 quiet=None, tables=None, skipTables=None, splitTables=False, argument
242 if not tables:
243 tables = list(self.keys())
244 if "GlyphOrder" not in tables:
245 tables = ["GlyphOrder"] + tables
248 if tag in tables:
249 tables.remove(tag)
250 numTables = len(tables)
271 tag = tables[i]
[all …]
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/StdSuites/
DTable_Suite.py48 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/
Dtrack_tracker.cc42 tables::ThreadTrackTable::Row row; in InternThreadTrack()
54 tables::ProcessTrackTable::Row row; in InternProcessTrack()
74 tables::TrackTable::Row row(name); in InternCpuTrack()
81 TrackId TrackTracker::InternGpuTrack(const tables::GpuTrackTable::Row& row) { in InternGpuTrack()
120 tables::ProcessTrackTable::Row track(name); in InternLegacyChromeAsyncTrack()
137 tables::TrackTable::Row row(name); in CreateGlobalAsyncTrack()
143 tables::ProcessTrackTable::Row row(name); in CreateAndroidAsyncTrack()
153 tables::ProcessTrackTable::Row row(name); in CreateFrameTimelineAsyncTrack()
163 tables::ProcessTrackTable::Row row; in InternLegacyChromeProcessInstantTrack()
189 tables::TrackTable::Row row; in GetOrCreateTriggerTrack()
[all …]
/external/harfbuzz_ng/src/
Dhb-open-file.hh85 unsigned int get_table_count () const { return tables.len; } in get_table_count()
87 { return tables[i]; } in get_table()
94 if (start_offset >= tables.len) in get_table_tags()
97 *table_count = hb_min (*table_count, tables.len - start_offset); in get_table_tags()
99 const TableRecord *sub_tables = tables.arrayZ + start_offset; in get_table_tags()
104 return tables.len; in get_table_tags()
110 return tables.bfind (t, table_index, HB_BFIND_NOT_FOUND_STORE, Index::NOT_FOUND_INDEX); in find_table_index()
133 if (unlikely (!tables.serialize (c, items.length))) return_trace (false); in serialize()
139 for (unsigned int i = 0; i < tables.len; i++) in serialize()
141 TableRecord &rec = tables.arrayZ[i]; in serialize()
[all …]
Dhb-face.cc604 hb_vector_t<table_entry_t> tables; member
614 data->tables.init (); in _hb_face_builder_data_create()
624 for (unsigned int i = 0; i < data->tables.length; i++) in _hb_face_builder_data_destroy()
625 hb_blob_destroy (data->tables[i].blob); in _hb_face_builder_data_destroy()
627 data->tables.fini (); in _hb_face_builder_data_destroy()
636 unsigned int table_count = data->tables.length; in _hb_face_builder_data_reference_blob()
640 face_length += hb_ceil_to_4 (hb_blob_get_length (data->tables[i].blob)); in _hb_face_builder_data_reference_blob()
647 c.propagate_error (data->tables); in _hb_face_builder_data_reference_blob()
650 …bool is_cff = data->tables.lsearch (HB_TAG ('C','F','F',' ')) || data->tables.lsearch (HB_TAG ('C'… in _hb_face_builder_data_reference_blob()
653 bool ret = f->serialize_single (&c, sfnt_tag, data->tables.as_array ()); in _hb_face_builder_data_reference_blob()
[all …]

12345678910>>...90