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 */
79478 tRowcnt nRow; /* Number of rows in the entire table */
79479 tRowcnt nPSample; /* How often to do a periodic sample */
79486 tRowcnt nEq; /* sqlite_stat3.nEq */
79487 tRowcnt nLt; /* sqlite_stat3.nLt */
79488 tRowcnt nDLt; /* sqlite_stat3.nDLt */
79510 tRowcnt nRow;
79515 nRow = (tRowcnt)sqlite3_value_int64(argv[0]);
79560 tRowcnt nEq = sqlite3_value_int64(argv[0]);
79561 tRowcnt nLt = sqlite3_value_int64(argv[1]);
79562 tRowcnt nDLt = sqlite3_value_int64(argv[2]);
80116 tRowcnt v;
80245 tRowcnt sumEq; /* Sum of the nEq values */
80259 pSample->nEq = (tRowcnt)sqlite3_column_int64(pStmt, 1);
80260 pSample->nLt = (tRowcnt)sqlite3_column_int64(pStmt, 2);
80261 pSample->nDLt = (tRowcnt)sqlite3_column_int64(pStmt, 3);
83860 ROUND8(sizeof(tRowcnt)*(nCol+1)) + /* Index.aiRowEst */
83871 pIndex->aiRowEst = (tRowcnt*)&zExtra[ROUND8(sizeof(Index))];
83873 ((char*)pIndex->aiRowEst + ROUND8(sizeof(tRowcnt)*nCol+1));
84154 tRowcnt *a = pIdx->aiRowEst;
84156 tRowcnt n;
104996 tRowcnt *aStat /* OUT: stats written here */
104998 tRowcnt n;
105118 tRowcnt iLower, iUpper, iGap;
105231 tRowcnt iLower = 0;
105232 tRowcnt iUpper = p->aiRowEst[0];
105233 tRowcnt a[2];
105310 tRowcnt a[2]; /* Statistics */
105421 tRowcnt aiRowEstPk[2]; /* The aiRowEst[] value for the sPk index */
105476 const tRowcnt * const aiRowEst = pProbe->aiRowEst;