Searched refs:aiRowEst (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dwhere.c2565 nRowEst = p->aiRowEst[0]/(SQLITE_INDEX_SAMPLES*2);
2568 nRowEst = (iUpper-iLower)*p->aiRowEst[0]/SQLITE_INDEX_SAMPLES;
2644 nRowEst = (nSpan*2+nSingle)*p->aiRowEst[0]/(2*SQLITE_INDEX_SAMPLES)
2645 + nNotFound*p->aiRowEst[1];
2646 if( nRowEst > p->aiRowEst[0] ) nRowEst = p->aiRowEst[0];
2700 unsigned int aiRowEstPk[2]; /* The aiRowEst[] value for the sPk index */
2733 sPk.aiRowEst = aiRowEstPk;
2755 const unsigned int * const aiRowEst = pProbe->aiRowEst; local
[all...]
H A Danalyze.c549 pIndex->aiRowEst[i] = v;
583 ** contents of sqlite_stat1 are used to populate the Index.aiRowEst[]
H A Dbuild.c2593 sizeof(int)*(nCol+1) + /* Index.aiRowEst */
2604 pIndex->aiRowEst = (unsigned *)(&pIndex->aiColumn[nCol]);
2605 pIndex->aSortOrder = (u8 *)(&pIndex->aiRowEst[nCol+1]);
2865 ** Fill the Index.aiRowEst[] array with default information - information
2868 ** aiRowEst[0] is suppose to contain the number of elements in the index.
2869 ** Since we do not know, guess 1 million. aiRowEst[1] is an estimate of the
2871 ** first column of the index. aiRowEst[2] is an estimate of the number
2875 ** aiRowEst[N]<=aiRowEst[N-1]
2876 ** aiRowEst[
[all...]
H A DsqliteInt.h1474 unsigned *aiRowEst; /* Result of ANALYZE: Est. rows selected by each column */ member in struct:Index
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c9819 unsigned *aiRowEst; /* Result of ANALYZE: Est. rows selected by each column */ member in struct:Index
100409 const unsigned int * const aiRowEst = pProbe->aiRowEst; local
[all...]

Completed in 220 milliseconds