HomeSort by relevance Sort by last modified time
    Searched refs:table_id (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/media/formats/mp2t/
ts_section_pat.cc 26 int table_id; local
36 RCHECK(bit_reader->ReadBits(8, &table_id));
55 RCHECK(table_id == 0x0);
ts_section_pmt.cc 25 int table_id; local
35 RCHECK(bit_reader->ReadBits(8, &table_id));
53 RCHECK(table_id == 0x2);
  /hardware/intel/img/psb_video/src/
tng_jpegdec.c 544 uint32_t table_id; local
546 for (table_id = 0; table_id < JPEG_MAX_SETS_HUFFMAN_TABLES; table_id++) {
547 if (ctx->symbol_stats[table_class][table_id].num_codes) {
548 JPG_VLC_CompileTable(ctx->symbol_codes[table_class][table_id],
549 &ctx->symbol_stats[table_class][table_id], ctx->huffman_table_space, ctx->huffman_table_RAM,
550 &ctx->table_stats[table_class][table_id]);
551 ctx->huffman_table_space -= ctx->table_stats[table_class][table_id].size;
552 ctx->huffman_table_RAM += ctx->table_stats[table_class][table_id].size
728 uint32_t table_id; local
    [all...]
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
data_log.h 54 // Combines the string table_name and the integer table_id into a new string
55 // table_name + _ + table_id. The new string will be lower-case.
56 static std::string Combine(const std::string& table_name, int table_id);
data_log_c.h 31 const char* table_name, int table_id);
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
data_log_no_op.cc 24 std::string DataLog::Combine(const std::string& table_name, int table_id) {
data_log_c.cc 28 const char* table_name, int table_id) {
30 std::string combined = webrtc::DataLog::Combine(table_name, table_id);
data_log.cc 284 std::string DataLog::Combine(const std::string& table_name, int table_id) {
288 ss << "_" << table_id; local
  /external/webrtc/src/system_wrappers/interface/
data_log.h 56 // Combines the string table_name and the integer table_id into a new string
57 // table_name + _ + table_id. The new string will be lower-case.
58 static std::string Combine(const std::string& table_name, int table_id);
data_log_c.h 35 const char* table_name, int table_id);
  /external/webrtc/src/system_wrappers/source/
data_log_no_op.cc 24 std::string DataLog::Combine(const std::string& table_name, int table_id) {
data_log_c.cc 30 const char* table_name, int table_id) {
32 std::string combined = webrtc::DataLog::Combine(table_name, table_id);
data_log.cc 284 std::string DataLog::Combine(const std::string& table_name, int table_id) {
288 ss << "_" << table_id; local
  /external/chromium_org/content/browser/media/
webrtc_internals_browsertest.cc 339 string table_id = local
341 VerifyElementWithId(table_id);
346 VerifyStatsTableRow(table_id, iter->first, iter->second);
350 // Verifies that the row named as |name| of the stats table |table_id| has
352 void VerifyStatsTableRow(const string& table_id,
355 VerifyElementWithId(table_id + "-" + name);
360 "var row = $('" + table_id + "-" + name + "');"
  /frameworks/av/media/libstagefright/mpeg2ts/
ATSParser.cpp 246 unsigned table_id = br->getBits(8); local
247 ALOGV(" table_id = %u", table_id);
248 if (table_id != 0x02u) {
1025 unsigned table_id = br->getBits(8); local
1026 ALOGV(" table_id = %u", table_id);
1027 if (table_id != 0x00u) {
    [all...]

Completed in 556 milliseconds