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);
31488 int nOut, /* Size of output buffer in bytes */
31502 zOut[nOut-1] = '\0';
31504 sqlite3_snprintf(nOut, zOut, "%s", zPath);
31507 if( osGetcwd(zOut, nOut-1)==0 ){
31511 sqlite3_snprintf(nOut-nCwd, &zOut[nCwd], "/%s", zPath);
51385 int nOut, /* Size of buffer pOut in bytes */
51396 return sqlite3OsRead(pWal->pWalFd, pOut, (nOut>sz ? sz : nOut), iOffset);
70707 int nOut; /* Number of bytes of the string text to include in output */
70719 nOut = pVar->n;
70721 if( nOut>SQLITE_TRACE_SIZE_LIMIT ){
70722 nOut = SQLITE_TRACE_SIZE_LIMIT;
70723 while( nOut<pVar->n && (pVar->z[nOut]&0xc0)==0x80 ){ nOut++; }
70726 sqlite3XPrintf(&out, 0, "'%.*q'", nOut, pVar->z);
70728 if( nOut<pVar->n ){
70729 sqlite3XPrintf(&out, 0, "/*+%d bytes*/", pVar->n-nOut);
70738 int nOut; /* Number of bytes of the blob to include in output */
70741 nOut = pVar->n;
70743 if( nOut>SQLITE_TRACE_SIZE_LIMIT ) nOut = SQLITE_TRACE_SIZE_LIMIT;
70745 for(i=0; i<nOut; i++){
70750 if( nOut<pVar->n ){
70751 sqlite3XPrintf(&out, 0, "/*+%d bytes*/", pVar->n-nOut);
89506 int nOut, /* Number of slots in aOut[] */
89521 for(i=0; *z && i<nOut; i++){
91429 db->lookaside.nOut : 0 );
91464 assert( nLookaside==0 || nLookaside==db->lookaside.nOut );
97601 i64 nOut; /* Maximum size of zOut */
97628 nOut = nStr + 1;
97629 assert( nOut<SQLITE_MAX_LENGTH );
97630 zOut = contextMalloc(context, (i64)nOut);
97641 nOut += nRep - nPattern;
97642 testcase( nOut-1==db->aLimit[SQLITE_LIMIT_LENGTH] );
97643 testcase( nOut-2==db->aLimit[SQLITE_LIMIT_LENGTH] );
97644 if( nOut-1>db->aLimit[SQLITE_LIMIT_LENGTH] ){
97650 zOut = sqlite3_realloc64(zOut, (int)nOut);
97661 assert( j+nStr-i+1==nOut );
97664 assert( j<=nOut );
115858 LogEst nOut; /* Estimated number of output rows */
115890 LogEst nOut; /* Number of outputs for this subquery */
116293 LogEst nOut /* Number of outputs for the new entry */
116307 p->nOut = nOut;
116318 if( p->nOut>nOut ) p->nOut = nOut;
118528 pLoop->nOut -= nAdjust;
118531 nLower, nUpper, nAdjust*-1, pLoop->nOut));
118594 int nOut = pLoop->nOut;
118670 nOut--;
118685 nOut--;
118702 if( nNew<nOut ){
118703 nOut = nNew;
118706 (u32)iLower, (u32)iUpper, nOut));
118720 nNew = whereRangeAdjust(pLower, nOut);
118733 nOut -= (pLower!=0) + (pUpper!=0);
118735 if( nNew<nOut ) nOut = nNew;
118737 if( pLoop->nOut>nOut ){
118739 pLoop->nOut, nOut));
118742 pLoop->nOut = (LogEst)nOut;
119356 if( pLoop->nOut>=10 ){
119357 sqlite3XPrintf(&str, 0, " (~%llu rows)", sqlite3LogEstToInt(pLoop->nOut));
119395 v, addrExplain, pLvl->addrBody, pLvl->addrVisit, pLoop->nOut, zObj
120402 sqlite3DebugPrintf(" cost %d,%d,%d\n", p->rSetup, p->rRun, p->nOut);
120542 if( pX->nOut > pY->nOut ) return 0; /* X costs more than Y */
120577 pTemplate->rRun, pTemplate->nOut, p->rRun, p->nOut-1));
120579 pTemplate->nOut = p->nOut - 1;
120584 pTemplate->rRun, pTemplate->nOut, p->rRun, p->nOut+1));
120586 pTemplate->nOut = p->nOut + 1;
120647 && p->nOut<=pTemplate->nOut /* (2c) */
120659 && p->nOut>=pTemplate->nOut /* (2b) */
120706 pTemplate->nOut);
120840 pLoop->nOut += pTerm->truthProb;
120844 pLoop->nOut--;
120857 if( pLoop->nOut > nRow-iReduce ) pLoop->nOut = nRow - iReduce;
120931 saved_nOut = pNew->nOut;
121023 assert( pNew->nOut==saved_nOut );
121032 assert( pNew->nOut==saved_nOut );
121036 pNew->nOut += pTerm->truthProb;
121037 pNew->nOut -= nIn;
121040 tRowcnt nOut = 0;
121050 rc = whereEqualScanEst(pParse, pBuilder, pExpr->pRight, &nOut);
121052 rc = whereInScanEst(pParse, pBuilder, pExpr->x.pList, &nOut);
121056 if( nOut ){
121057 pNew->nOut = sqlite3LogEst(nOut);
121058 if( pNew->nOut>saved_nOut ) pNew->nOut = saved_nOut;
121059 pNew->nOut -= nIn;
121062 if( nOut==0 )
121065 pNew->nOut += (pProbe->aiRowLogEst[nEq] - pProbe->aiRowLogEst[nEq-1]);
121070 pNew->nOut += 10;
121080 rCostIdx = pNew->nOut + 1 + (15*pProbe->szIdxRow)/pSrc->pTab->szTabRow;
121083 pNew->rRun = sqlite3LogEstAdd(pNew->rRun, pNew->nOut + 16);
121087 nOutUnadjusted = pNew->nOut;
121089 pNew->nOut += nInMul + nIn;
121094 pNew->nOut = saved_nOut;
121096 pNew->nOut = nOutUnadjusted;
121104 pNew->nOut = saved_nOut;
121113 pNew->nOut = saved_nOut;
121139 pNew->nOut -= nIter;
121144 pNew->nOut = saved_nOut;
121355 pNew->nOut = 43; assert( 43==sqlite3LogEst(20) );
121356 pNew->rRun = sqlite3LogEstAdd(rLogSize,pNew->nOut);
121380 pNew->nOut = rSize;
121396 pNew->nOut = rSize;
121432 pNew->nOut = rSize;
121604 pNew->nOut = sqlite3LogEst(pIdxInfo->estimatedRows);
121707 sqlite3LogEstAdd(sPrev.a[i].nOut, sCur.a[j].nOut));
121732 pNew->nOut = sSum.a[i].nOut;
122225 LogEst nOut; /* Rows visited by (pFrom+pWLoop) */
122238 nOut = pFrom->nRow + pWLoop->nOut;
122293 wherePathName(pFrom, iLoop, pWLoop), rCost, nOut,
122312 wherePathName(pFrom, iLoop, pWLoop), rCost, nOut,
122321 if( pTo->rCost<rCost || (pTo->rCost==rCost && pTo->nRow<=nOut) ){
122326 wherePathName(pFrom, iLoop, pWLoop), rCost, nOut,
122344 wherePathName(pFrom, iLoop, pWLoop), rCost, nOut,
122355 pTo->nRow = nOut;
122533 pLoop->nOut = (LogEst)1;
128655 if( db->lookaside.nOut ){
129155 assert( db->lookaside.nOut==0 ); /* Fails on a lookaside memory leak */
135615 int nOut = 0;
135622 nOut += sqlite3Fts3PutVarint(&pOut[nOut], iDelta);
135623 pOut[nOut++] = 0x02;
135635 nOut += sqlite3Fts3PutVarint(&pOut[nOut], iDelta);
135638 pOut[nOut++] = 0x01;
135639 nOut += sqlite3Fts3PutVarint(&pOut[nOut], iCol);
135640 pOut[nOut++] = 0x02;
135645 pOut[nOut++] = 0x00;
135648 return nOut;
135663 int nOut = 0;
135673 nOut = pTS->anOutput[i];
135680 pTS->aaOutput[i], pTS->anOutput[i], aOut, nOut, &aNew, &nNew
135691 nOut = nNew;
135697 pTS->anOutput[0] = nOut;