Lines Matching defs:pnRow
3190 int *pnRow, /* Number of result rows written here */
12888 ** xRowCount(pFts5, pnRow)
12963 int (*xRowCount)(Fts5Context*, sqlite3_int64 *pnRow);
146281 int *pnRow, /* Write the number of rows in the result here */
146293 if( pnRow ) *pnRow = 0;
146339 if( pnRow ) *pnRow = res.nRow;
158523 ** Write the estimated row count into *pnRow and return SQLITE_OK.
158524 ** If unable to make an estimate, leave *pnRow unchanged and return
158536 tRowcnt *pnRow /* Write the revised row estimate here */
158560 *pnRow = 1;
158573 *pnRow = a[1];
158587 ** Write the estimated row count into *pnRow and return SQLITE_OK.
158588 ** If unable to make an estimate, leave *pnRow unchanged and return
158600 tRowcnt *pnRow /* Write the revised row estimate here */
158620 *pnRow = nRowEst;
221549 ** xRowCount(pFts5, pnRow)
221624 int (*xRowCount)(Fts5Context*, sqlite3_int64 *pnRow);
222428 static int sqlite3Fts5IndexGetAverages(Fts5Index *p, i64 *pnRow, i64 *anSize);
222595 static int sqlite3Fts5StorageRowCount(Fts5Storage *p, i64 *pnRow);
235715 static int sqlite3Fts5IndexGetAverages(Fts5Index *p, i64 *pnRow, i64 *anSize){
235719 *pnRow = 0;
235725 i += fts5GetVarint(&pData->p[i], (u64*)pnRow);
238635 static int fts5ApiRowCount(Fts5Context *pCtx, i64 *pnRow){
238638 return sqlite3Fts5StorageRowCount(pTab->pStorage, pnRow);
240531 static int fts5StorageCount(Fts5Storage *p, const char *zSuffix, i64 *pnRow){
240546 *pnRow = sqlite3_column_int64(pCnt, 0);
240860 static int sqlite3Fts5StorageRowCount(Fts5Storage *p, i64 *pnRow){
240868 *pnRow = p->nTotalRow;