Lines Matching refs:table

39     auto& table = this->*member_pointer;  in CodeInfo()  local
44 table.Decode(reader2); in CodeInfo()
45 callback(i, &table, reader2.GetReadRegion()); in CodeInfo()
48 table.Decode(reader); in CodeInfo()
49 callback(i, &table, reader.GetReadRegion().Subregion(bit_offset)); in CodeInfo()
232 CodeInfo code_info(code_info_data, &num_bits, [&](size_t i, auto* table, BitMemoryRegion region) { in CollectSizeStats() argument
234 Stats* table_stats = codeinfo_stats->Child(table->GetName()); in CollectSizeStats()
236 const char* const* column_names = table->GetColumnNames(); in CollectSizeStats()
237 for (size_t c = 0; c < table->NumColumns(); c++) { in CollectSizeStats()
238 if (table->NumColumnBits(c) > 0) { in CollectSizeStats()
240 column_stats->AddBits(table->NumRows() * table->NumColumnBits(c), table->NumRows()); in CollectSizeStats()
273 const auto& table = this->*member_pointer; in Dump() local
274 if (table.NumRows() != 0) { in Dump()
275 vios->Stream() << table.GetName() << " BitSize=" << table.DataBitSize(); in Dump()
276 vios->Stream() << " Rows=" << table.NumRows() << " Bits={"; in Dump()
277 const char* const* column_names = table.GetColumnNames(); in Dump()
278 for (size_t c = 0; c < table.NumColumns(); c++) { in Dump()
280 vios->Stream() << column_names[c] << "=" << table.NumColumnBits(c); in Dump()
285 for (size_t r = 0; r < table.NumRows(); r++) { in Dump()
287 for (size_t c = 0; c < table.NumColumns(); c++) { in Dump()
289 if (&table == static_cast<const void*>(&stack_masks_) || in Dump()
290 &table == static_cast<const void*>(&dex_register_masks_)) { in Dump()
291 BitMemoryRegion bits = table.GetBitMemoryRegion(r, c); in Dump()
296 vios->Stream() << std::right << std::setw(8) << static_cast<int32_t>(table.Get(r, c)); in Dump()