Home
last modified time | relevance | path

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

/external/perfetto/src/trace_processor/db/
Dcolumn_storage_overlay.h102 return ColumnStorageOverlay(row_map_.Copy()); in Copy()
107 uint32_t size() const { return row_map_.size(); } in size()
113 OutputIndex Get(uint32_t row) const { return row_map_.Get(row); } in Get()
117 return row_map_.RowOf(index); in RowOf()
125 void Insert(OutputIndex index) { return row_map_.Insert(index); } in Insert()
132 return ColumnStorageOverlay(row_map_.SelectRows(selector)); in SelectRows()
186 if (row_map_.IsBitVector()) { in FilterInto()
190 auto ip = [this, p](uint32_t row) { return p(row_map_.Get(row)); }; in FilterInto()
196 return row_map_.StableSort(out, c); in StableSort()
200 Iterator IterateRows() const { return Iterator(row_map_.IterateRows()); } in IterateRows()
[all …]
/external/perfetto/src/trace_processor/prelude/functions/
Dto_ftrace.cc135 RowMap row_map_; member in perfetto::trace_processor::__anon89cfd0d50111::ArgsSerializer
158 row_map_ = args.FilterToRowMap({set_ids.eq(arg_set_id_)}); in ArgsSerializer()
159 start_row_ = row_map_.empty() ? 0 : row_map_.Get(0); in ArgsSerializer()
185 for (auto it = row_map_.IterateRows(); it; it.Next()) { in ArgsSerializer()
196 if (row_map_.empty()) in SerializeArgs()
485 for (auto it = row_map_.IterateRows(); it; it.Next()) { in SerializeArgs()