Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/libpandabase/utils/
Dbit_table.h622 : allocator_(allocator), rows_(allocator->Adapter()), dedup_map_(allocator->Adapter()) in BitmapTableBuilder()
628 return rows_.size(); in GetRowsCount()
633 return BitMemoryRegion<uint32_t>(rows_[index].first, rows_[index].second); in GetEntry()
644 auto &row = rows_[it->second]; in Add()
665 uint32_t index = rows_.size(); in Add()
666 rows_.push_back({data, vec.size()}); in Add()
675 std::array<uint32_t, COLUMNS_SIZE> columns = {0, static_cast<uint32_t>(rows_.size())}; in Encode()
676 std::for_each(rows_.begin(), rows_.end(), in Encode()
680 for (const auto &row : rows_) { in Encode()
692 ArenaDeque<Entry> rows_; variable