• Home
  • Raw
  • Download

Lines Matching refs:nOut

2391   int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
27461 int nOut; /* Size of the rendering buffer */
27685 nOut = etBUFSIZE;
27693 nOut = (int)n;
27695 bufpt = &zOut[nOut-1];
27713 length = (int)(&zOut[nOut-1]-bufpt);
27739 length = (int)(&zOut[nOut-1]-bufpt);
38781 int nOut /* Allocated size of buffer zOut */
38786 if( osGetcwd(zOut, nOut-2)==0 ){
38792 if( (iOff+nPath+1)>nOut ){
38798 sqlite3_snprintf(nOut-iOff, &zOut[iOff], "%s", zPath);
38814 int nOut, /* Size of output buffer in bytes */
38818 return mkFullPathname(zPath, zOut, nOut);
38852 zDel = sqlite3_malloc(nOut);
38859 nByte = osReadlink(zIn, zDel, nOut-1);
38866 if( nByte+n+1>nOut ){
38883 rc = mkFullPathname(zIn, zOut, nOut);
47127 int nOut,
47130 sqlite3_snprintf(nOut, zOut, "%s", zPath);
61293 int nOut, /* Size of buffer pOut in bytes */
61304 return sqlite3OsRead(pWal->pWalFd, pOut, (nOut>sz ? sz : nOut), iOffset);
83449 int nOut; /* Number of bytes of the string text to include in output */
83463 nOut = pVar->n;
83465 if( nOut>SQLITE_TRACE_SIZE_LIMIT ){
83466 nOut = SQLITE_TRACE_SIZE_LIMIT;
83467 while( nOut<pVar->n && (pVar->z[nOut]&0xc0)==0x80 ){ nOut++; }
83470 sqlite3_str_appendf(&out, "'%.*q'", nOut, pVar->z);
83472 if( nOut<pVar->n ){
83473 sqlite3_str_appendf(&out, "/*+%d bytes*/", pVar->n-nOut);
83482 int nOut; /* Number of bytes of the blob to include in output */
83485 nOut = pVar->n;
83487 if( nOut>SQLITE_TRACE_SIZE_LIMIT ) nOut = SQLITE_TRACE_SIZE_LIMIT;
83489 for(i=0; i<nOut; i++){
83494 if( nOut<pVar->n ){
83495 sqlite3_str_appendf(&out, "/*+%d bytes*/", pVar->n-nOut);
103406 int nOut = nSql;
103425 nOut - (iOff + pBest->t.n)
103427 nOut += nReplace - pBest->t.n;
103428 zOut[nOut] = '\0';
105473 int nOut, /* Number of slots in aOut[] */
105488 for(i=0; *z && i<nOut; i++){
114267 i64 nOut; /* Maximum size of zOut */
114296 nOut = nStr + 1;
114297 assert( nOut<SQLITE_MAX_LENGTH );
114298 zOut = contextMalloc(context, (i64)nOut);
114309 nOut += nRep - nPattern;
114310 testcase( nOut-1==db->aLimit[SQLITE_LIMIT_LENGTH] );
114311 testcase( nOut-2==db->aLimit[SQLITE_LIMIT_LENGTH] );
114312 if( nOut-1>db->aLimit[SQLITE_LIMIT_LENGTH] ){
114323 zOut = sqlite3_realloc64(zOut, (int)nOut + (nOut - nStr - 1));
114336 assert( j+nStr-i+1<=nOut );
114339 assert( j<=nOut );
135781 LogEst nOut; /* Estimated number of output rows */
135816 LogEst nOut; /* Number of outputs for this subquery */
136434 if( pLoop->nOut>=10 ){
136436 sqlite3LogEstToInt(pLoop->nOut));
136474 v, addrExplain, pLvl->addrBody, pLvl->addrVisit, pLoop->nOut, zObj
140288 LogEst nOut /* Number of outputs for the new entry */
140302 p->nOut = nOut;
140313 if( p->nOut>nOut ) p->nOut = nOut;
141523 pLoop->nOut -= nAdjust;
141526 nLower, nUpper, nAdjust*-1, pLoop->nOut));
141589 int nOut = pLoop->nOut;
141666 nOut--;
141683 nOut--;
141700 if( nNew<nOut ){
141701 nOut = nNew;
141704 (u32)iLower, (u32)iUpper, nOut));
141718 nNew = whereRangeAdjust(pLower, nOut);
141731 nOut -= (pLower!=0) + (pUpper!=0);
141733 if( nNew<nOut ) nOut = nNew;
141735 if( pLoop->nOut>nOut ){
141737 pLoop->nOut, nOut));
141740 pLoop->nOut = (LogEst)nOut;
141950 sqlite3DebugPrintf(" cost %d,%d,%d\n", p->rSetup, p->rRun, p->nOut);
142090 if( pX->nOut > pY->nOut ) return 0; /* X costs more than Y */
142129 pTemplate->rRun, pTemplate->nOut, p->rRun, p->nOut-1));
142131 pTemplate->nOut = p->nOut - 1;
142136 pTemplate->rRun, pTemplate->nOut, p->rRun, p->nOut+1));
142138 pTemplate->nOut = p->nOut + 1;
142200 && p->nOut<=pTemplate->nOut /* (2c) */
142212 && p->nOut>=pTemplate->nOut /* (2b) */
142269 pTemplate->nOut);
142406 pLoop->nOut += pTerm->truthProb;
142410 pLoop->nOut--;
142424 if( pLoop->nOut > nRow-iReduce ) pLoop->nOut = nRow - iReduce;
142565 saved_nOut = pNew->nOut;
142732 assert( pNew->nOut==saved_nOut );
142741 assert( pNew->nOut==saved_nOut );
142745 pNew->nOut += pTerm->truthProb;
142746 pNew->nOut -= nIn;
142749 tRowcnt nOut = 0;
142761 rc = whereEqualScanEst(pParse, pBuilder, pExpr->pRight, &nOut);
142763 rc = whereInScanEst(pParse, pBuilder, pExpr->x.pList, &nOut);
142767 if( nOut ){
142768 pNew->nOut = sqlite3LogEst(nOut);
142769 if( pNew->nOut>saved_nOut ) pNew->nOut = saved_nOut;
142770 pNew->nOut -= nIn;
142773 if( nOut==0 )
142776 pNew->nOut += (pProbe->aiRowLogEst[nEq] - pProbe->aiRowLogEst[nEq-1]);
142781 pNew->nOut += 10;
142791 rCostIdx = pNew->nOut + 1 + (15*pProbe->szIdxRow)/pSrc->pTab->szTabRow;
142794 pNew->rRun = sqlite3LogEstAdd(pNew->rRun, pNew->nOut + 16);
142798 nOutUnadjusted = pNew->nOut;
142800 pNew->nOut += nInMul + nIn;
142805 pNew->nOut = saved_nOut;
142807 pNew->nOut = nOutUnadjusted;
142815 pNew->nOut = saved_nOut;
142826 pNew->nOut = saved_nOut;
142853 pNew->nOut -= nIter;
142858 pNew->nOut = saved_nOut;
143069 pNew->nOut = 43; assert( 43==sqlite3LogEst(20) );
143070 pNew->rRun = sqlite3LogEstAdd(rLogSize,pNew->nOut);
143099 pNew->nOut = rSize;
143115 pNew->nOut = rSize;
143175 pNew->nOut = rSize;
143346 pNew->nOut = sqlite3LogEst(pIdxInfo->estimatedRows);
143622 sqlite3LogEstAdd(sPrev.a[i].nOut, sCur.a[j].nOut));
143647 pNew->nOut = sSum.a[i].nOut;
144208 LogEst nOut; /* Rows visited by (pFrom+pWLoop) */
144230 nOut = pFrom->nRow + pWLoop->nOut;
144290 wherePathName(pFrom, iLoop, pWLoop), rCost, nOut, rUnsorted,
144309 wherePathName(pFrom, iLoop, pWLoop), rCost, nOut, rUnsorted,
144324 && (pTo->nRow<nOut
144325 || (pTo->nRow==nOut && pTo->rUnsorted<=rUnsorted)
144333 wherePathName(pFrom, iLoop, pWLoop), rCost, nOut, rUnsorted,
144351 wherePathName(pFrom, iLoop, pWLoop), rCost, nOut, rUnsorted,
144362 pTo->nRow = nOut;
144563 pLoop->nOut = (LogEst)1;
163102 int nOut = 0;
163109 nOut += sqlite3Fts3PutVarint(&pOut[nOut], iDelta);
163110 pOut[nOut++] = 0x02;
163122 nOut += sqlite3Fts3PutVarint(&pOut[nOut], iDelta);
163125 pOut[nOut++] = 0x01;
163126 nOut += sqlite3Fts3PutVarint(&pOut[nOut], iCol);
163127 pOut[nOut++] = 0x02;
163132 pOut[nOut++] = 0x00;
163135 return nOut;
163150 int nOut = 0;
163160 nOut = pTS->anOutput[i];
163167 pTS->aaOutput[i], pTS->anOutput[i], aOut, nOut, &aNew, &nNew
163178 nOut = nNew;
163184 pTS->anOutput[0] = nOut;
188055 int nOut; /* Size of output buffer in bytes */
188071 nOut = nInput = sqlite3_value_bytes16(apArg[0]);
188072 if( nOut==0 ){
188078 UChar *zNew = sqlite3_realloc(zOutput, nOut);
188087 nOut = 2*u_strToUpper(zOutput,nOut/2,zInput,nInput/2,zLocale,&status);
188089 nOut = 2*u_strToLower(zOutput,nOut/2,zInput,nInput/2,zLocale,&status);
188093 sqlite3_result_text16(p, zOutput, nOut, xFree);
189789 int nOut;
189801 nOut = rbuDeltaOutputSize(aDelta, nDelta);
189802 if( nOut<0 ){
189807 aOut = sqlite3_malloc(nOut+1);
189812 if( nOut2!=nOut ){
189816 sqlite3_result_blob(context, aOut, nOut, sqlite3_free);
193947 int nOut,
193951 return pRealVfs->xFullPathname(pRealVfs, zPath, nOut, zOut);