Home
last modified time | relevance | path

Searched refs:nOut (Results 1 – 4 of 4) sorted by relevance

/src/contrib/bzip2/
H A Dunzcrash.c44 int nIn, nOut, nZ; variable
105 nOut = M_BLOCK_OUT; in main()
107 outbuf, &nOut, zbuf, nZ, 0, 0 ); in main()
113 if (nOut != nIn) { in main()
114 fprintf(stderr, "nIn/nOut mismatch %d %d\n", nIn, nOut ); in main()
117 for (i = 0; i < nOut; i++) in main()
122 if (i == nOut) fprintf(stderr, "really ok!\n" ); in main()
130 assert (nOut == nIn); in main()
131 for (i = 0; i < nOut; i++) { in main()
/src/contrib/sqlite3/
H A Dsqlite3.c1819 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
31854 int nOut; /* Size of the rendering buffer */ in sqlite3_str_vappendf() local
32076 nOut = etBUFSIZE; in sqlite3_str_vappendf()
32084 nOut = (int)n; in sqlite3_str_vappendf()
32086 bufpt = &zOut[nOut-1]; in sqlite3_str_vappendf()
32104 length = (int)(&zOut[nOut-1]-bufpt); in sqlite3_str_vappendf()
32130 length = (int)(&zOut[nOut-1]-bufpt); in sqlite3_str_vappendf()
38260 static int kvvfsDecode(const char *a, char *aOut, int nOut){ in kvvfsDecode() argument
38278 if( j+n>nOut ) return -1; in kvvfsDecode()
38765 int nOut, in kvvfsFullPathname() argument
[all …]
H A Dshell.c10120 int nOut, in apndFullPathname() argument
10123 return ORIGVFS(pVfs)->xFullPathname(ORIGVFS(pVfs),zPath,nOut,zOut); in apndFullPathname()
11164 int nOut /* Expected output size */ in zipfileInflate() argument
11166 u8 *aRes = sqlite3_malloc(nOut); in zipfileInflate()
11177 str.avail_out = nOut; in zipfileInflate()
11187 sqlite3_result_blob(pCtx, aRes, nOut, zipfileFree); in zipfileInflate()
12265 int nOut = 0; in zipfileStep() local
12266 rc = zipfileDeflate(aData, nData, &aFree, &nOut, &zErr); in zipfileStep()
12270 if( iMethod==8 || nOut<nData ){ in zipfileStep()
12272 nData = nOut; in zipfileStep()
[all …]
H A Dsqlite3.h1500 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);