Lines Matching defs:nRow
918 int nRow = 0;
936 nRow++;
945 if( nRow==0 ){
10815 double target; /* Target nRet/nRow value */
10816 double nRow; /* Number of rows seen */
10830 if( p->nRow==0.0 ){
10833 bRet = (p->nRet / p->nRow) <= p->target;
10842 p->nRow += 1.0;
11145 samplectx.nRow = 0.0;
17411 " nLoop=%-8lld nRow=%-8lld estRow=%-8lld estRow/Loop=%-8g\n",
17834 sqlite3_int64 nRow = 0;
17897 if( (nRow+2)*nColumn >= nAlloc ){
17904 abRowDiv[nRow] = 1;
17905 nRow++;
17923 azData[nRow*nColumn + i]
17927 abRowDiv[nRow-1] = 0;
17932 nTotal = nColumn*(nRow+1);
18038 nData = (nRow+1)*nColumn;
18060 sqlite3_uint64 nRow = 0;
18093 nRow++;
18127 nRow, nRow!=1 ? "s" : "");
19884 int nRow; /* Number of rows imported */
23062 sCtx.nRow++;
23073 sCtx.nRow, sCtx.nErr, sCtx.nLine-1);
24655 int nRow, nAlloc;
24707 nRow = nAlloc = 0;
24715 if( nRow>=nAlloc ){
24723 azResult[nRow] = sqlite3_mprintf("%s", sqlite3_column_text(pStmt, 0));
24724 shell_check_oom(azResult[nRow]);
24725 nRow++;
24732 if( rc==0 && nRow>0 ){
24736 for(i=0; i<nRow; i++){
24742 nPrintRow = (nRow + nPrintCol - 1)/nPrintCol;
24744 for(j=i; j<nRow; j+=nPrintRow){
24753 for(ii=0; ii<nRow; ii++) sqlite3_free(azResult[ii]);