Searched refs:NumRows (Results 1 – 4 of 4) sorted by relevance
/art/libartbase/base/ |
D | bit_table_test.cc | 42 EXPECT_EQ(0u, table.NumRows()); in TEST() 63 EXPECT_EQ(4u, table.NumRows()); in TEST() 86 EXPECT_EQ(1u, table.NumRows()); in TEST() 107 EXPECT_EQ(2u, table.NumRows()); in TEST()
|
D | bit_table.h | 80 size_t NumRows() const { return num_rows_; } in NumRows() function 119 ALWAYS_INLINE bool IsValid() const { return row_ < table_->NumRows(); } in IsValid() 181 DCHECK_LT(row_, table_->NumRows()); 185 DCHECK_LT(row_, table_->NumRows()); 189 DCHECK_LT(row_ + index, table_->NumRows()); 200 ALWAYS_INLINE const_iterator end() const { return const_iterator(this, this->NumRows()); } in end() 375 DCHECK_EQ(size(), table.NumRows()); in Encode() 462 DCHECK_EQ(size(), table.NumRows()); in Encode()
|
/art/runtime/ |
D | stack_map.cc | 240 column_stats->AddBits(table->NumRows() * table->NumColumnBits(c), table->NumRows()); in CollectSizeStats() 274 if (table.NumRows() != 0) { in Dump() 276 vios->Stream() << " Rows=" << table.NumRows() << " Bits={"; in Dump() 285 for (size_t r = 0; r < table.NumRows(); r++) { in Dump()
|
D | stack_map.h | 326 return dex_register_catalog_.NumRows(); in GetNumberOfLocationCatalogEntries() 336 return inline_infos_.NumRows() > 0; in HasInlineInfo() 340 return stack_maps_.NumRows(); in GetNumberOfStackMaps()
|