Home
last modified time | relevance | path

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

/external/perfetto/src/trace_processor/sqlite/
Dsqlite_table.cc84 info.estimated_rows = idx->estimatedRows; in BestIndexInternal()
106 idx->estimatedRows = info.estimated_rows; in BestIndexInternal()
Ddb_sqlite_table.cc174 info->estimated_rows = cost_and_rows.rows; in BestIndex()
299 double estimated_rows = current_row_count / log2(current_row_count); in EstimateCost() local
300 current_row_count = std::max(static_cast<uint32_t>(estimated_rows), 1u); in EstimateCost()
Dsqlite_table.h178 int64_t estimated_rows = 0; member
/external/rust/crates/rusqlite/src/vtab/
Dmod.rs366 pub fn set_estimated_rows(&mut self, estimated_rows: i64) { in set_estimated_rows()
368 (*self.0).estimatedRows = estimated_rows; in set_estimated_rows()