Searched refs:sqlite3LogEstAdd (Results 1 – 4 of 4) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | where.c | 3096 pNew->rRun = sqlite3LogEstAdd(rLogSize, rCostIdx); in whereLoopAddBtreeIndex() 3098 pNew->rRun = sqlite3LogEstAdd(pNew->rRun, pNew->nOut + 16); in whereLoopAddBtreeIndex() 3480 pNew->rRun = sqlite3LogEstAdd(rLogSize,pNew->nOut); in whereLoopAddBtree() 3605 pNew->rRun = sqlite3LogEstAdd(pNew->rRun, nLookup); in whereLoopAddBtree() 4216 sqlite3LogEstAdd(sPrev.a[i].rRun, sCur.a[j].rRun), in whereLoopAddOr() 4217 sqlite3LogEstAdd(sPrev.a[i].nOut, sCur.a[j].nOut)); in whereLoopAddOr() 4890 rUnsorted = sqlite3LogEstAdd(pWLoop->rSetup,pWLoop->rRun + pFrom->nRow); in wherePathSolver() 4891 rUnsorted = sqlite3LogEstAdd(rUnsorted, pFrom->rUnsorted); in wherePathSolver() 4913 rCost = sqlite3LogEstAdd(rUnsorted, aSortCost[isOrdered]) + 5; in wherePathSolver()
|
| H A D | util.c | 1540 LogEst sqlite3LogEstAdd(LogEst a, LogEst b){ in sqlite3LogEstAdd() function
|
| H A D | select.c | 2903 p->nSelectRow = sqlite3LogEstAdd(p->nSelectRow, pPrior->nSelectRow); in multiSelect() 2979 p->nSelectRow = sqlite3LogEstAdd(p->nSelectRow, pPrior->nSelectRow); in multiSelect() 3630 p->nSelectRow = sqlite3LogEstAdd(p->nSelectRow, pPrior->nSelectRow); in multiSelectOrderBy()
|
| H A D | sqliteInt.h | 4950 LogEst sqlite3LogEstAdd(LogEst,LogEst);
|