Home
last modified time | relevance | path

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

/external/perfetto/src/trace_processor/rpc/
Dquery_result_serializer.cc116 for (;; ++cell_idx, ++col_) { in SerializeBatch()
120 if (col_ >= num_cols_) { in SerializeBatch()
121 col_ = 0; in SerializeBatch()
139 auto value = iter_->Get(col_); in SerializeBatch()
Dquery_result_serializer.h86 uint32_t col_ = UINT32_MAX; variable
/external/jemalloc_new/src/
Dstats.c108 col = &col_##counter_type[k_##counter_type]; \ in mutex_stats_init_cols()
133 dst = &col_##counter_type[mutex_counter_##counter]; \ in mutex_stats_read_global()
157 dst = &col_##counter_type[mutex_counter_##counter]; \ in mutex_stats_read_arena()
179 dst = &col_##counter_type[mutex_counter_##counter]; \ in mutex_stats_read_arena_bin()
208 col = &col_##type[k_##type]; \ in mutex_stats_emit()
234 emitter_col_t col_##name; \ in stats_arena_bins_print()
235 emitter_col_init(&col_##name, &row); \ in stats_arena_bins_print()
236 col_##name.justify = emitter_justify_##left_or_right; \ in stats_arena_bins_print()
237 col_##name.width = col_width; \ in stats_arena_bins_print()
238 col_##name.type = emitter_type_##etype; \ in stats_arena_bins_print()
[all …]
/external/perfetto/src/trace_processor/db/
Dcolumn.h125 Iterator(const Column* col, uint32_t row) : col_(col), row_(row) {} in Iterator()
137 SqlValue operator*() const { return col_->Get(row_); }
158 const Column* col_ = nullptr;