Lines Matching refs:nOut
2416 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
28330 int nOut; /* Size of the rendering buffer */
28556 nOut = etBUFSIZE;
28564 nOut = (int)n;
28566 bufpt = &zOut[nOut-1];
28584 length = (int)(&zOut[nOut-1]-bufpt);
28610 length = (int)(&zOut[nOut-1]-bufpt);
39768 int nOut /* Allocated size of buffer zOut */
39773 if( osGetcwd(zOut, nOut-2)==0 ){
39779 if( (iOff+nPath+1)>nOut ){
39785 sqlite3_snprintf(nOut-iOff, &zOut[iOff], "%s", zPath);
39801 int nOut, /* Size of output buffer in bytes */
39805 return mkFullPathname(zPath, zOut, nOut);
39840 zDel = sqlite3_malloc(nOut);
39847 nByte = osReadlink(zIn, zDel, nOut-1);
39854 if( nByte+n+1>nOut ){
39871 rc = mkFullPathname(zIn, zOut, nOut);
48133 int nOut,
48136 sqlite3_snprintf(nOut, zOut, "%s", zPath);
62396 int nOut, /* Size of buffer pOut in bytes */
62407 return sqlite3OsRead(pWal->pWalFd, pOut, (nOut>sz ? sz : nOut), iOffset);
84982 int nOut; /* Number of bytes of the string text to include in output */
84996 nOut = pVar->n;
84998 if( nOut>SQLITE_TRACE_SIZE_LIMIT ){
84999 nOut = SQLITE_TRACE_SIZE_LIMIT;
85000 while( nOut<pVar->n && (pVar->z[nOut]&0xc0)==0x80 ){ nOut++; }
85003 sqlite3_str_appendf(&out, "'%.*q'", nOut, pVar->z);
85005 if( nOut<pVar->n ){
85006 sqlite3_str_appendf(&out, "/*+%d bytes*/", pVar->n-nOut);
85015 int nOut; /* Number of bytes of the blob to include in output */
85018 nOut = pVar->n;
85020 if( nOut>SQLITE_TRACE_SIZE_LIMIT ) nOut = SQLITE_TRACE_SIZE_LIMIT;
85022 for(i=0; i<nOut; i++){
85027 if( nOut<pVar->n ){
85028 sqlite3_str_appendf(&out, "/*+%d bytes*/", pVar->n-nOut);
106682 int nOut = nSql;
106701 nOut - (iOff + pBest->t.n)
106703 nOut += nReplace - pBest->t.n;
106704 zOut[nOut] = '\0';
108758 int nOut, /* Number of slots in aOut[] */
108773 for(i=0; *z && i<nOut; i++){
117961 i64 nOut; /* Maximum size of zOut */
117990 nOut = nStr + 1;
117991 assert( nOut<SQLITE_MAX_LENGTH );
117992 zOut = contextMalloc(context, (i64)nOut);
118003 nOut += nRep - nPattern;
118004 testcase( nOut-1==db->aLimit[SQLITE_LIMIT_LENGTH] );
118005 testcase( nOut-2==db->aLimit[SQLITE_LIMIT_LENGTH] );
118006 if( nOut-1>db->aLimit[SQLITE_LIMIT_LENGTH] ){
118017 zOut = sqlite3Realloc(zOut, (int)nOut + (nOut - nStr - 1));
118030 assert( j+nStr-i+1<=nOut );
118033 assert( j<=nOut );
140387 LogEst nOut; /* Estimated number of output rows */
140422 LogEst nOut; /* Number of outputs for this subquery */
141070 if( pLoop->nOut>=10 ){
141072 sqlite3LogEstToInt(pLoop->nOut));
141110 v, addrExplain, pLvl->addrBody, pLvl->addrVisit, pLoop->nOut, zObj
145128 LogEst nOut /* Number of outputs for the new entry */
145142 p->nOut = nOut;
145153 if( p->nOut>nOut ) p->nOut = nOut;
146353 pLoop->nOut -= nAdjust;
146356 nLower, nUpper, nAdjust*-1, pLoop->nOut));
146419 int nOut = pLoop->nOut;
146496 nOut--;
146513 nOut--;
146530 if( nNew<nOut ){
146531 nOut = nNew;
146534 (u32)iLower, (u32)iUpper, nOut));
146548 nNew = whereRangeAdjust(pLower, nOut);
146561 nOut -= (pLower!=0) + (pUpper!=0);
146563 if( nNew<nOut ) nOut = nNew;
146565 if( pLoop->nOut>nOut ){
146567 pLoop->nOut, nOut));
146570 pLoop->nOut = (LogEst)nOut;
146788 sqlite3DebugPrintf(" cost %d,%d,%d\n", p->rSetup, p->rRun, p->nOut);
146929 if( pX->nOut > pY->nOut ) return 0; /* X costs more than Y */
146968 pTemplate->rRun, pTemplate->nOut, p->rRun, p->nOut-1));
146970 pTemplate->nOut = p->nOut - 1;
146975 pTemplate->rRun, pTemplate->nOut, p->rRun, p->nOut+1));
146977 pTemplate->nOut = p->nOut + 1;
147039 && p->nOut<=pTemplate->nOut /* (2c) */
147051 && p->nOut>=pTemplate->nOut /* (2b) */
147110 pTemplate->nOut);
147247 pLoop->nOut += pTerm->truthProb;
147251 pLoop->nOut--;
147271 if( pLoop->nOut > nRow-iReduce ) pLoop->nOut = nRow - iReduce;
147413 saved_nOut = pNew->nOut;
147578 assert( pNew->nOut==saved_nOut );
147587 assert( pNew->nOut==saved_nOut );
147591 pNew->nOut += pTerm->truthProb;
147592 pNew->nOut -= nIn;
147595 tRowcnt nOut = 0;
147607 rc = whereEqualScanEst(pParse, pBuilder, pExpr->pRight, &nOut);
147609 rc = whereInScanEst(pParse, pBuilder, pExpr->x.pList, &nOut);
147613 if( nOut ){
147614 pNew->nOut = sqlite3LogEst(nOut);
147619 && pNew->nOut+10 > pProbe->aiRowLogEst[0]
147636 if( pNew->nOut>saved_nOut ) pNew->nOut = saved_nOut;
147637 pNew->nOut -= nIn;
147640 if( nOut==0 )
147643 pNew->nOut += (pProbe->aiRowLogEst[nEq] - pProbe->aiRowLogEst[nEq-1]);
147648 pNew->nOut += 10;
147659 rCostIdx = pNew->nOut + 1 + (15*pProbe->szIdxRow)/pSrc->pTab->szTabRow;
147662 pNew->rRun = sqlite3LogEstAdd(pNew->rRun, pNew->nOut + 16);
147666 nOutUnadjusted = pNew->nOut;
147668 pNew->nOut += nInMul + nIn;
147673 pNew->nOut = saved_nOut;
147675 pNew->nOut = nOutUnadjusted;
147683 pNew->nOut = saved_nOut;
147694 pNew->nOut = saved_nOut;
147723 pNew->nOut -= nIter;
147728 pNew->nOut = saved_nOut;
147946 pNew->nOut = 43; assert( 43==sqlite3LogEst(20) );
147947 pNew->rRun = sqlite3LogEstAdd(rLogSize,pNew->nOut);
147979 pNew->nOut = rSize;
147995 pNew->nOut = rSize;
148055 pNew->nOut = rSize;
148232 pNew->nOut = sqlite3LogEst(pIdxInfo->estimatedRows);
148509 sqlite3LogEstAdd(sPrev.a[i].nOut, sCur.a[j].nOut));
148534 pNew->nOut = sSum.a[i].nOut;
149118 LogEst nOut; /* Rows visited by (pFrom+pWLoop) */
149140 nOut = pFrom->nRow + pWLoop->nOut;
149200 wherePathName(pFrom, iLoop, pWLoop), rCost, nOut, rUnsorted,
149219 wherePathName(pFrom, iLoop, pWLoop), rCost, nOut, rUnsorted,
149234 && (pTo->nRow<nOut
149235 || (pTo->nRow==nOut && pTo->rUnsorted<=rUnsorted)
149243 wherePathName(pFrom, iLoop, pWLoop), rCost, nOut, rUnsorted,
149261 wherePathName(pFrom, iLoop, pWLoop), rCost, nOut, rUnsorted,
149272 pTo->nRow = nOut;
149473 pLoop->nOut = (LogEst)1;
168930 int nOut = 0;
168937 nOut += sqlite3Fts3PutVarint(&pOut[nOut], iDelta);
168938 pOut[nOut++] = 0x02;
168950 nOut += sqlite3Fts3PutVarint(&pOut[nOut], iDelta);
168953 pOut[nOut++] = 0x01;
168954 nOut += sqlite3Fts3PutVarint(&pOut[nOut], iCol);
168955 pOut[nOut++] = 0x02;
168960 pOut[nOut++] = 0x00;
168963 return nOut;
168978 int nOut = 0;
168988 nOut = pTS->anOutput[i];
168995 pTS->aaOutput[i], pTS->anOutput[i], aOut, nOut, &aNew, &nNew
169006 nOut = nNew;
169012 pTS->anOutput[0] = nOut;
194024 int nOut; /* Size of output buffer in bytes */
194040 nOut = nInput = sqlite3_value_bytes16(apArg[0]);
194041 if( nOut==0 ){
194047 UChar *zNew = sqlite3_realloc(zOutput, nOut);
194056 nOut = 2*u_strToUpper(zOutput,nOut/2,zInput,nInput/2,zLocale,&status);
194058 nOut = 2*u_strToLower(zOutput,nOut/2,zInput,nInput/2,zLocale,&status);
194062 sqlite3_result_text16(p, zOutput, nOut, xFree);
195768 int nOut;
195780 nOut = rbuDeltaOutputSize(aDelta, nDelta);
195781 if( nOut<0 ){
195786 aOut = sqlite3_malloc(nOut+1);
195791 if( nOut2!=nOut ){
195795 sqlite3_result_blob(context, aOut, nOut, sqlite3_free);
200205 int nOut,
200209 return pRealVfs->xFullPathname(pRealVfs, zPath, nOut, zOut);