Home | History | Annotate | Download | only in dist

Lines Matching full:trowcnt

7966  typedef u64 tRowcnt;    /* 64-bit only if requested at compile-time */
7968 typedef u32 tRowcnt; /* 32-bit is the default */
10181 tRowcnt nRowEst; /* Estimated rows in table - from sqlite_stat1 table */
10374 tRowcnt
10388 tRowcnt avgEq; /* Average nEq value for key values not in aSample */
10406 tRowcnt nEq; /* Est. number of rows where the key equals this sample */
10407 tRowcnt nLt; /* Est. number of rows where key is less than this sample */
10408 tRowcnt nDLt; /* Est. number of distinct keys less than this sample */
79514 tRowcnt nRow; /* Number of rows in the entire table */
79515 tRowcnt nPSample; /* How often to do a periodic sample */
79522 tRowcnt nEq; /* sqlite_stat3.nEq */
79523 tRowcnt nLt; /* sqlite_stat3.nLt */
79524 tRowcnt nDLt; /* sqlite_stat3.nDLt */
79546 tRowcnt nRow;
79551 nRow = (tRowcnt)sqlite3_value_int64(argv[0]);
79596 tRowcnt nEq = sqlite3_value_int64(argv[0]);
79597 tRowcnt nLt = sqlite3_value_int64(argv[1]);
79598 tRowcnt nDLt = sqlite3_value_int64(argv[2]);
80152 tRowcnt v;
80281 tRowcnt sumEq; /* Sum of the nEq values */
80295 pSample->nEq = (tRowcnt)sqlite3_column_int64(pStmt, 1);
80296 pSample->nLt = (tRowcnt)sqlite3_column_int64(pStmt, 2);
80297 pSample->nDLt = (tRowcnt)sqlite3_column_int64(pStmt, 3);
83896 ROUND8(sizeof(tRowcnt)*(nCol+1)) + /* Index.aiRowEst */
83907 pIndex->aiRowEst = (tRowcnt*)&zExtra[ROUND8(sizeof(Index))];
83909 ((char*)pIndex->aiRowEst + ROUND8(sizeof(tRowcnt)*nCol+1));
84190 tRowcnt *a = pIdx->aiRowEst;
84192 tRowcnt n;
105032 tRowcnt *aStat /* OUT: stats written here */
105034 tRowcnt n;
105154 tRowcnt iLower, iUpper, iGap;
105267 tRowcnt iLower = 0;
105268 tRowcnt iUpper = p->aiRowEst[0];
105269 tRowcnt a[2];
105346 tRowcnt a[2]; /* Statistics */
105457 tRowcnt aiRowEstPk[2]; /* The aiRowEst[] value for the sPk index */
105512 const tRowcnt * const aiRowEst = pProbe->aiRowEst;