Lines Matching defs:nOut

1683   int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
10009 int nOut; /* Number of buffers currently checked out */
10010 int mxOut; /* Highwater mark for nOut */
13821 *pCurrent = db->lookaside.nOut;
13824 db->lookaside.mxOut = db->lookaside.nOut;
19265 db->lookaside.nOut--;
19397 db->lookaside.nOut++;
19399 if( db->lookaside.nOut>db->lookaside.mxOut ){
19400 db->lookaside.mxOut = db->lookaside.nOut;
19739 int nOut; /* Size of the rendering buffer */
19905 nOut = etBUFSIZE;
19908 nOut = precision + 10;
19909 zOut = zExtra = sqlite3Malloc( nOut );
19915 bufpt = &zOut[nOut-1];
19935 length = (int)(&zOut[nOut-1]-bufpt);
19946 length = (int)(&zOut[nOut-1]-bufpt);
28979 int nOut, /* Size of output buffer in bytes */
28993 zOut[nOut-1] = '\0';
28995 sqlite3_snprintf(nOut, zOut, "%s", zPath);
28998 if( osGetcwd(zOut, nOut-1)==0 ){
29002 sqlite3_snprintf(nOut-nCwd, &zOut[nCwd], "/%s", zPath);
47891 ** (which is nOut bytes in size). Return SQLITE_OK if successful, or an
47897 int nOut, /* Size of buffer pOut in bytes */
47908 return sqlite3OsRead(pWal->pWalFd, pOut, (nOut>sz ? sz : nOut), iOffset);
64634 int nOut; /* Number of bytes of the string text to include in output */
64646 nOut = pVar->n;
64648 if( nOut>SQLITE_TRACE_SIZE_LIMIT ){
64649 nOut = SQLITE_TRACE_SIZE_LIMIT;
64650 while( nOut<pVar->n && (pVar->z[nOut]&0xc0)==0x80 ){ nOut++; }
64653 sqlite3XPrintf(&out, "'%.*q'", nOut, pVar->z);
64655 if( nOut<pVar->n ) sqlite3XPrintf(&out, "/*+%d bytes*/", pVar->n-nOut);
64663 int nOut; /* Number of bytes of the blob to include in output */
64666 nOut = pVar->n;
64668 if( nOut>SQLITE_TRACE_SIZE_LIMIT ) nOut = SQLITE_TRACE_SIZE_LIMIT;
64670 for(i=0; i<nOut; i++){
64675 if( nOut<pVar->n ) sqlite3XPrintf(&out, "/*+%d bytes*/", pVar->n-nOut);
82735 db->lookaside.nOut : 0 );
82770 assert( nLookaside==0 || nLookaside==db->lookaside.nOut );
88249 i64 nOut; /* Maximum size of zOut */
88276 nOut = nStr + 1;
88277 assert( nOut<SQLITE_MAX_LENGTH );
88278 zOut = contextMalloc(context, (i64)nOut);
88289 nOut += nRep - nPattern;
88290 testcase( nOut-1==db->aLimit[SQLITE_LIMIT_LENGTH] );
88291 testcase( nOut-2==db->aLimit[SQLITE_LIMIT_LENGTH] );
88292 if( nOut-1>db->aLimit[SQLITE_LIMIT_LENGTH] ){
88298 zOut = sqlite3_realloc(zOut, (int)nOut);
88309 assert( j+nStr-i+1==nOut );
88312 assert( j<=nOut );
115315 if( db->lookaside.nOut ){
115774 assert( db->lookaside.nOut==0 ); /* Fails on a lookaside memory leak */
121733 int nOut = 0;
121740 nOut += sqlite3Fts3PutVarint(&pOut[nOut], iDelta);
121741 pOut[nOut++] = 0x02;
121753 nOut += sqlite3Fts3PutVarint(&pOut[nOut], iDelta);
121756 pOut[nOut++] = 0x01;
121757 nOut += sqlite3Fts3PutVarint(&pOut[nOut], iCol);
121758 pOut[nOut++] = 0x02;
121763 pOut[nOut++] = 0x00;
121766 return nOut;
121781 int nOut = 0;
121791 nOut = pTS->anOutput[i];
121798 pTS->aaOutput[i], pTS->anOutput[i], aOut, nOut, &aNew, &nNew
121809 nOut = nNew;
121815 pTS->anOutput[0] = nOut;