Lines Matching refs:nOut
1387 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
10954 int nOut; /* Number of buffers currently checked out */ member
15169 *pCurrent = db->lookaside.nOut; in sqlite3_db_status()
15172 db->lookaside.mxOut = db->lookaside.nOut; in sqlite3_db_status()
21045 db->lookaside.nOut--;
21184 db->lookaside.nOut++;
21186 if( db->lookaside.nOut>db->lookaside.mxOut ){
21187 db->lookaside.mxOut = db->lookaside.nOut;
21546 int nOut; /* Size of the rendering buffer */
21741 nOut = etBUFSIZE;
21744 nOut = precision + 10;
21745 zOut = zExtra = sqlite3Malloc( nOut );
21751 bufpt = &zOut[nOut-1];
21769 length = (int)(&zOut[nOut-1]-bufpt);
21780 length = (int)(&zOut[nOut-1]-bufpt);
31470 int nOut, /* Size of output buffer in bytes */
31484 zOut[nOut-1] = '\0';
31486 sqlite3_snprintf(nOut, zOut, "%s", zPath);
31489 if( osGetcwd(zOut, nOut-1)==0 ){
31493 sqlite3_snprintf(nOut-nCwd, &zOut[nCwd], "/%s", zPath);
51367 int nOut, /* Size of buffer pOut in bytes */
51378 return sqlite3OsRead(pWal->pWalFd, pOut, (nOut>sz ? sz : nOut), iOffset);
70689 int nOut; /* Number of bytes of the string text to include in output */
70701 nOut = pVar->n;
70703 if( nOut>SQLITE_TRACE_SIZE_LIMIT ){
70704 nOut = SQLITE_TRACE_SIZE_LIMIT;
70705 while( nOut<pVar->n && (pVar->z[nOut]&0xc0)==0x80 ){ nOut++; }
70708 sqlite3XPrintf(&out, 0, "'%.*q'", nOut, pVar->z);
70710 if( nOut<pVar->n ){
70711 sqlite3XPrintf(&out, 0, "/*+%d bytes*/", pVar->n-nOut);
70720 int nOut; /* Number of bytes of the blob to include in output */
70723 nOut = pVar->n;
70725 if( nOut>SQLITE_TRACE_SIZE_LIMIT ) nOut = SQLITE_TRACE_SIZE_LIMIT;
70727 for(i=0; i<nOut; i++){
70732 if( nOut<pVar->n ){
70733 sqlite3XPrintf(&out, 0, "/*+%d bytes*/", pVar->n-nOut);
89488 int nOut, /* Number of slots in aOut[] */
89503 for(i=0; *z && i<nOut; i++){
91411 db->lookaside.nOut : 0 );
91446 assert( nLookaside==0 || nLookaside==db->lookaside.nOut );
97583 i64 nOut; /* Maximum size of zOut */
97610 nOut = nStr + 1;
97611 assert( nOut<SQLITE_MAX_LENGTH );
97612 zOut = contextMalloc(context, (i64)nOut);
97623 nOut += nRep - nPattern;
97624 testcase( nOut-1==db->aLimit[SQLITE_LIMIT_LENGTH] );
97625 testcase( nOut-2==db->aLimit[SQLITE_LIMIT_LENGTH] );
97626 if( nOut-1>db->aLimit[SQLITE_LIMIT_LENGTH] ){
97632 zOut = sqlite3_realloc64(zOut, (int)nOut);
97643 assert( j+nStr-i+1==nOut );
97646 assert( j<=nOut );
115840 LogEst nOut; /* Estimated number of output rows */
115872 LogEst nOut; /* Number of outputs for this subquery */
116275 LogEst nOut /* Number of outputs for the new entry */
116289 p->nOut = nOut;
116300 if( p->nOut>nOut ) p->nOut = nOut;
118510 pLoop->nOut -= nAdjust;
118513 nLower, nUpper, nAdjust*-1, pLoop->nOut));
118576 int nOut = pLoop->nOut;
118652 nOut--;
118667 nOut--;
118684 if( nNew<nOut ){
118685 nOut = nNew;
118688 (u32)iLower, (u32)iUpper, nOut));
118702 nNew = whereRangeAdjust(pLower, nOut);
118715 nOut -= (pLower!=0) + (pUpper!=0);
118717 if( nNew<nOut ) nOut = nNew;
118719 if( pLoop->nOut>nOut ){
118721 pLoop->nOut, nOut));
118724 pLoop->nOut = (LogEst)nOut;
119338 if( pLoop->nOut>=10 ){
119339 sqlite3XPrintf(&str, 0, " (~%llu rows)", sqlite3LogEstToInt(pLoop->nOut));
119377 v, addrExplain, pLvl->addrBody, pLvl->addrVisit, pLoop->nOut, zObj
120384 sqlite3DebugPrintf(" cost %d,%d,%d\n", p->rSetup, p->rRun, p->nOut);
120524 if( pX->nOut > pY->nOut ) return 0; /* X costs more than Y */
120559 pTemplate->rRun, pTemplate->nOut, p->rRun, p->nOut-1));
120561 pTemplate->nOut = p->nOut - 1;
120566 pTemplate->rRun, pTemplate->nOut, p->rRun, p->nOut+1));
120568 pTemplate->nOut = p->nOut + 1;
120629 && p->nOut<=pTemplate->nOut /* (2c) */
120641 && p->nOut>=pTemplate->nOut /* (2b) */
120688 pTemplate->nOut);
120822 pLoop->nOut += pTerm->truthProb;
120826 pLoop->nOut--;
120839 if( pLoop->nOut > nRow-iReduce ) pLoop->nOut = nRow - iReduce;
120913 saved_nOut = pNew->nOut;
121005 assert( pNew->nOut==saved_nOut );
121014 assert( pNew->nOut==saved_nOut );
121018 pNew->nOut += pTerm->truthProb;
121019 pNew->nOut -= nIn;
121022 tRowcnt nOut = 0;
121032 rc = whereEqualScanEst(pParse, pBuilder, pExpr->pRight, &nOut);
121034 rc = whereInScanEst(pParse, pBuilder, pExpr->x.pList, &nOut);
121038 if( nOut ){
121039 pNew->nOut = sqlite3LogEst(nOut);
121040 if( pNew->nOut>saved_nOut ) pNew->nOut = saved_nOut;
121041 pNew->nOut -= nIn;
121044 if( nOut==0 )
121047 pNew->nOut += (pProbe->aiRowLogEst[nEq] - pProbe->aiRowLogEst[nEq-1]);
121052 pNew->nOut += 10;
121062 rCostIdx = pNew->nOut + 1 + (15*pProbe->szIdxRow)/pSrc->pTab->szTabRow;
121065 pNew->rRun = sqlite3LogEstAdd(pNew->rRun, pNew->nOut + 16);
121069 nOutUnadjusted = pNew->nOut;
121071 pNew->nOut += nInMul + nIn;
121076 pNew->nOut = saved_nOut;
121078 pNew->nOut = nOutUnadjusted;
121086 pNew->nOut = saved_nOut;
121095 pNew->nOut = saved_nOut;
121121 pNew->nOut -= nIter;
121126 pNew->nOut = saved_nOut;
121337 pNew->nOut = 43; assert( 43==sqlite3LogEst(20) );
121338 pNew->rRun = sqlite3LogEstAdd(rLogSize,pNew->nOut);
121362 pNew->nOut = rSize;
121378 pNew->nOut = rSize;
121414 pNew->nOut = rSize;
121586 pNew->nOut = sqlite3LogEst(pIdxInfo->estimatedRows);
121689 sqlite3LogEstAdd(sPrev.a[i].nOut, sCur.a[j].nOut));
121714 pNew->nOut = sSum.a[i].nOut;
122207 LogEst nOut; /* Rows visited by (pFrom+pWLoop) */
122220 nOut = pFrom->nRow + pWLoop->nOut;
122275 wherePathName(pFrom, iLoop, pWLoop), rCost, nOut,
122294 wherePathName(pFrom, iLoop, pWLoop), rCost, nOut,
122303 if( pTo->rCost<rCost || (pTo->rCost==rCost && pTo->nRow<=nOut) ){
122308 wherePathName(pFrom, iLoop, pWLoop), rCost, nOut,
122326 wherePathName(pFrom, iLoop, pWLoop), rCost, nOut,
122337 pTo->nRow = nOut;
122515 pLoop->nOut = (LogEst)1;
128637 if( db->lookaside.nOut ){
129137 assert( db->lookaside.nOut==0 ); /* Fails on a lookaside memory leak */
135597 int nOut = 0;
135604 nOut += sqlite3Fts3PutVarint(&pOut[nOut], iDelta);
135605 pOut[nOut++] = 0x02;
135617 nOut += sqlite3Fts3PutVarint(&pOut[nOut], iDelta);
135620 pOut[nOut++] = 0x01;
135621 nOut += sqlite3Fts3PutVarint(&pOut[nOut], iCol);
135622 pOut[nOut++] = 0x02;
135627 pOut[nOut++] = 0x00;
135630 return nOut;
135645 int nOut = 0;
135655 nOut = pTS->anOutput[i];
135662 pTS->aaOutput[i], pTS->anOutput[i], aOut, nOut, &aNew, &nNew
135673 nOut = nNew;
135679 pTS->anOutput[0] = nOut;