Lines Matching defs:nRow
2002 int nRow = 0;
2020 nRow++;
2029 if( nRow==0 ){
13375 double target; /* Target nRet/nRow value */
13376 double nRow; /* Number of rows seen */
13390 if( p->nRow==0.0 ){
13393 bRet = (p->nRet / p->nRow) <= p->target;
13402 p->nRow += 1.0;
13706 samplectx.nRow = 0.0;
21366 i64 nRow = 0;
21380 sqlite3_stmt_scanstatus_v2(p, ii, SQLITE_SCANSTAT_NVISIT,f,(void*)&nRow);
21387 if( nCycle>=0 || nLoop>=0 || nRow>=0 ){
21397 if( nRow>=0 ){
21398 z = sqlite3_mprintf("%z%srows=%lld", z, z ? " " : "", nRow);
21402 double rpl = (double)nRow / (double)nLoop;
21863 sqlite3_int64 nRow = 0;
21928 if( (nRow+2)*nColumn >= nAlloc ){
21935 abRowDiv[nRow] = 1;
21936 nRow++;
21954 azData[nRow*nColumn + i]
21958 abRowDiv[nRow-1] = 0;
21963 nTotal = nColumn*(nRow+1);
22068 nData = (nRow+1)*nColumn;
22090 sqlite3_uint64 nRow = 0;
22123 nRow++;
22157 nRow, nRow!=1 ? "s" : "");
23877 int nRow; /* Number of rows imported */
27192 sCtx.nRow++;
27202 sCtx.nRow, sCtx.nErr, sCtx.nLine-1);
28869 int nRow, nAlloc;
28921 nRow = nAlloc = 0;
28929 if( nRow>=nAlloc ){
28937 azResult[nRow] = sqlite3_mprintf("%s", sqlite3_column_text(pStmt, 0));
28938 shell_check_oom(azResult[nRow]);
28939 nRow++;
28946 if( rc==0 && nRow>0 ){
28950 for(i=0; i<nRow; i++){
28956 nPrintRow = (nRow + nPrintCol - 1)/nPrintCol;
28958 for(j=i; j<nRow; j+=nPrintRow){
28966 for(ii=0; ii<nRow; ii++) sqlite3_free(azResult[ii]);