Home | History | Annotate | Download | only in dist

Lines Matching defs:nOut

1586   int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
9689 int nOut; /* Number of buffers currently checked out */
9690 int mxOut; /* Highwater mark for nOut */
13398 *pCurrent = db->lookaside.nOut;
13401 db->lookaside.mxOut = db->lookaside.nOut;
19081 db->lookaside.nOut--;
19213 db->lookaside.nOut++;
19215 if( db->lookaside.nOut>db->lookaside.mxOut ){
19216 db->lookaside.mxOut = db->lookaside.nOut;
19554 int nOut; /* Size of the rendering buffer */
19720 nOut = etBUFSIZE;
19723 nOut = precision + 10;
19724 zOut = zExtra = sqlite3Malloc( nOut );
19730 bufpt = &zOut[nOut-1];
19750 length = (int)(&zOut[nOut-1]-bufpt);
19761 length = (int)(&zOut[nOut-1]-bufpt);
30386 int nOut, /* Size of output buffer in bytes */
30400 zOut[nOut-1] = '\0';
30402 sqlite3_snprintf(nOut, zOut, "%s", zPath);
30405 if( osGetcwd(zOut, nOut-1)==0 ){
30409 sqlite3_snprintf(nOut-nCwd, &zOut[nCwd], "/%s", zPath);
38395 SQLITE_PRIVATE int sqlite3WalRead(Wal *pWal, Pgno pgno, int *pInWal, int nOut, u8 *pOut);
47643 int nOut, /* Size of buffer pOut in bytes */
47744 return sqlite3OsRead(pWal->pWalFd, pOut, (nOut>sz ? sz : nOut), iOffset);
87126 i64 nOut; /* Maximum size of zOut */
87153 nOut = nStr + 1;
87154 assert( nOut<SQLITE_MAX_LENGTH );
87155 zOut = contextMalloc(context, (i64)nOut);
87166 nOut += nRep - nPattern;
87167 testcase( nOut-1==db->aLimit[SQLITE_LIMIT_LENGTH] );
87168 testcase( nOut-2==db->aLimit[SQLITE_LIMIT_LENGTH] );
87169 if( nOut-1>db->aLimit[SQLITE_LIMIT_LENGTH] ){
87175 zOut = sqlite3_realloc(zOut, (int)nOut);
87186 assert( j+nStr-i+1==nOut );
87189 assert( j<=nOut );
112926 if( db->lookaside.nOut ){
113290 assert( db->lookaside.nOut==0 ); /* Fails on a lookaside memory leak */
119076 int nOut = 0;
119083 nOut += sqlite3Fts3PutVarint(&pOut[nOut], iDelta);
119084 pOut[nOut++] = 0x02;
119096 nOut += sqlite3Fts3PutVarint(&pOut[nOut], iDelta);
119099 pOut[nOut++] = 0x01;
119100 nOut += sqlite3Fts3PutVarint(&pOut[nOut], iCol);
119101 pOut[nOut++] = 0x02;
119106 pOut[nOut++] = 0x00;
119109 return nOut;
119124 int nOut = 0;
119134 nOut = pTS->anOutput[i];
119141 pTS->aaOutput[i], pTS->anOutput[i], aOut, nOut, &aNew, &nNew
119152 nOut = nNew;
119158 pTS->anOutput[0] = nOut;