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 | 81 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() 378 DCHECK_EQ(size(), table.NumRows()); in Encode() 464 DCHECK_EQ(size(), table.NumRows()); in Encode()
|
/art/runtime/ |
D | stack_map.cc | 204 column_stats->AddBits(table.NumRows() * table.NumColumnBits(c), table.NumRows()); in CollectSizeStats() 238 if (table.NumRows() != 0) { in Dump() 240 vios->Stream() << " Rows=" << table.NumRows() << " Bits={"; in Dump() 249 for (size_t r = 0; r < table.NumRows(); r++) { in Dump()
|
D | stack_map.h | 339 return dex_register_catalog_.NumRows(); in GetNumberOfLocationCatalogEntries() 349 return inline_infos_.NumRows() > 0; in HasInlineInfo() 353 return stack_maps_.NumRows(); in GetNumberOfStackMaps()
|