Searched refs:aiRowEst (Results 1 - 7 of 7) 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.c2596 sizeof(int)*(nCol+1) + /* Index.aiRowEst */
2607 pIndex->aiRowEst = (unsigned *)(&pIndex->aiColumn[nCol]);
2608 pIndex->aSortOrder = (u8 *)(&pIndex->aiRowEst[nCol+1]);
2868 ** Fill the Index.aiRowEst[] array with default information - information
2871 ** aiRowEst[0] is suppose to contain the number of elements in the index.
2872 ** Since we do not know, guess 1 million. aiRowEst[1] is an estimate of the
2874 ** first column of the index. aiRowEst[2] is an estimate of the number
2878 ** aiRowEst[N]<=aiRowEst[N-1]
2879 ** aiRowEst[
[all...]
H A DsqliteInt.h1474 unsigned *aiRowEst; /* Result of ANALYZE: Est. rows selected by each column */ member in struct:Index
/external/sqlite/dist/orig/
H A Dsqlite3.c10374 tRowcnt *aiRowEst; /* Result of ANALYZE: Est. rows selected by each column */ member in struct:Index
105476 const tRowcnt * const aiRowEst = pProbe->aiRowEst; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c10374 tRowcnt *aiRowEst; /* Result of ANALYZE: Est. rows selected by each column */ member in struct:Index
105512 const tRowcnt * const aiRowEst = pProbe->aiRowEst; local
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c9834 unsigned *aiRowEst; /* Result of ANALYZE: Est. rows selected by each column */ member in struct:Index
100616 const unsigned int * const aiRowEst = pProbe->aiRowEst; local
[all...]

Completed in 774 milliseconds