Home
last modified time | relevance | path

Searched refs:table_type (Results 1 – 9 of 9) sorted by relevance

/third_party/vulkan-loader/scripts/
Ddispatch_table_helper_generator.py223 def OutputDispatchTableHelper(self, table_type): argument
226 if table_type == 'device':
247 if (table_type == 'device' and base_name == 'GetDeviceProcAddr'):
249 elif (table_type != 'device' and base_name == 'GetInstanceProcAddr'):
252 … table += ' table->%s = (PFN_%s) gpa(%s, "%s");\n' % (base_name, item[0], table_type, item[0])
/third_party/ffmpeg/libavcodec/
Datrac3plus.h96 int table_type; ///< table type: 0 - tone?, 1- noise? member
Datrac3plus.c644 chan->table_type = get_bits1(gb); in decode_channel_code_tab()
783 codetab = atrac3p_ct_restricted_to_full[chan->table_type][wordlen - 1][codetab]; in decode_spectrum()
785 tab_index = (chan->table_type * 8 + codetab) * 7 + wordlen - 1; in decode_spectrum()
/third_party/jerryscript/tools/
Dgen-unicode.py47 def add_table(self, table, table_name, table_type, table_descr): argument
49 … self.__data.append("static const %s lit_%s[] JERRY_ATTR_CONST_DATA =" % (table_type, table_name))
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/mpegts/
Dgst-atsc-section.h229 guint16 table_type; member
Dgst-atsc-section.c381 mgt_table->table_type = GST_READ_UINT16_BE (data); in _parse_atsc_mgt()
485 GST_WRITE_UINT16_BE (data, mgt_table->table_type); in _packetize_mgt()
/third_party/gstreamer/gstplugins_bad/gst/mpegtsdemux/
Dmpegtsbase.c1328 if ((table->table_type >= GST_MPEGTS_ATSC_MGT_TABLE_TYPE_EIT0 && in mpegts_base_parse_atsc_mgt()
1329 table->table_type <= GST_MPEGTS_ATSC_MGT_TABLE_TYPE_EIT127) || in mpegts_base_parse_atsc_mgt()
1330 (table->table_type >= GST_MPEGTS_ATSC_MGT_TABLE_TYPE_ETT0 && in mpegts_base_parse_atsc_mgt()
1331 table->table_type <= GST_MPEGTS_ATSC_MGT_TABLE_TYPE_ETT127)) { in mpegts_base_parse_atsc_mgt()
/third_party/python/Lib/test/
Dtest_codecs.py2034 table_type = type(cp1140.encoding_table)
2035 self.assertEqual(table_type, table_type)
/third_party/gstreamer/gstplugins_bad/tests/examples/mpegts/
Dts-parser.c1133 g_printf (" table_type : %u\n", table->table_type); in dump_mgt()