Home
last modified time | relevance | path

Searched refs:pnRow (Results 1 – 9 of 9) sorted by relevance

/sqlite-3.40.0/src/
H A Dtable.c120 int *pnRow, /* Write the number of rows in the result here */ in sqlite3_get_table() argument
132 if( pnRow ) *pnRow = 0; in sqlite3_get_table()
178 if( pnRow ) *pnRow = res.nRow; in sqlite3_get_table()
H A Dwhere.c1986 tRowcnt *pnRow /* Write the revised row estimate here */ in whereEqualScanEst() argument
2010 *pnRow = 1; in whereEqualScanEst()
2023 *pnRow = a[1]; in whereEqualScanEst()
2050 tRowcnt *pnRow /* Write the revised row estimate here */ in whereInScanEst() argument
2070 *pnRow = nRowEst; in whereInScanEst()
H A Dsqlite.h.in2870 int *pnRow, /* Number of result rows written here */
/sqlite-3.40.0/test/
H A Doptfuzz.c87 int *pnRow, /* Write the number of rows here */ in optfuzz_exec() argument
102 *pnRow = *pnStmt = 0; in optfuzz_exec()
142 (*pnRow)++; in optfuzz_exec()
/sqlite-3.40.0/ext/fts5/
H A Dfts5_storage.c776 static int fts5StorageCount(Fts5Storage *p, const char *zSuffix, i64 *pnRow){ in fts5StorageCount() argument
791 *pnRow = sqlite3_column_int64(pCnt, 0); in fts5StorageCount()
1105 int sqlite3Fts5StorageRowCount(Fts5Storage *p, i64 *pnRow){ in sqlite3Fts5StorageRowCount() argument
1113 *pnRow = p->nTotalRow; in sqlite3Fts5StorageRowCount()
H A Dfts5Int.h499 int sqlite3Fts5IndexGetAverages(Fts5Index *p, i64 *pnRow, i64 *anSize);
666 int sqlite3Fts5StorageRowCount(Fts5Storage *p, i64 *pnRow);
H A Dfts5.h271 int (*xRowCount)(Fts5Context*, sqlite3_int64 *pnRow);
H A Dfts5_main.c1807 static int fts5ApiRowCount(Fts5Context *pCtx, i64 *pnRow){ in fts5ApiRowCount() argument
1810 return sqlite3Fts5StorageRowCount(pTab->pStorage, pnRow); in fts5ApiRowCount()
H A Dfts5_index.c5710 int sqlite3Fts5IndexGetAverages(Fts5Index *p, i64 *pnRow, i64 *anSize){ in sqlite3Fts5IndexGetAverages() argument
5714 *pnRow = 0; in sqlite3Fts5IndexGetAverages()
5720 i += fts5GetVarint(&pData->p[i], (u64*)pnRow); in sqlite3Fts5IndexGetAverages()