Home
last modified time | relevance | path

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

/netbsd-src/external/bsd/bzip2/dist/
H A Dunzcrash.c46 int nIn, nOut, nZ; variable
107 nOut = M_BLOCK_OUT; in main()
109 outbuf, &nOut, zbuf, nZ, 0, 0 ); in main()
115 if (nOut != nIn) { in main()
116 fprintf(stderr, "nIn/nOut mismatch %d %d\n", nIn, nOut ); in main()
119 for (i = 0; i < nOut; i++) in main()
124 if (i == nOut) fprintf(stderr, "really ok!\n" ); in main()
132 assert (nOut == nIn); in main()
133 for (i = 0; i < nOut; i++) { in main()
/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3.c1789 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
31041 int nOut; /* Size of the rendering buffer */ in sqlite3_str_vappendf() local
31263 nOut = etBUFSIZE; in sqlite3_str_vappendf()
31271 nOut = (int)n; in sqlite3_str_vappendf()
31273 bufpt = &zOut[nOut-1]; in sqlite3_str_vappendf()
31291 length = (int)(&zOut[nOut-1]-bufpt); in sqlite3_str_vappendf()
31317 length = (int)(&zOut[nOut-1]-bufpt); in sqlite3_str_vappendf()
37435 static int kvvfsDecode(const char *a, char *aOut, int nOut){
37453 if( j+n>nOut ) return -1;
37940 int nOut,
[all …]
H A Dshell.c9213 int nOut, in apndFullPathname() argument
9216 return ORIGVFS(pVfs)->xFullPathname(ORIGVFS(pVfs),zPath,nOut,zOut); in apndFullPathname()
10247 int nOut /* Expected output size */ in zipfileInflate() argument
10249 u8 *aRes = sqlite3_malloc(nOut); in zipfileInflate()
10260 str.avail_out = nOut; in zipfileInflate()
10270 sqlite3_result_blob(pCtx, aRes, nOut, zipfileFree); in zipfileInflate()
11348 int nOut = 0; in zipfileStep() local
11349 rc = zipfileDeflate(aData, nData, &aFree, &nOut, &zErr); in zipfileStep()
11353 if( iMethod==8 || nOut<nData ){ in zipfileStep()
11355 nData = nOut; in zipfileStep()
[all …]
H A Dsqlite3.h1476 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/etc/c/
H A Dsqlite3.d373 int function (sqlite3_vfs*, const char *zName, int nOut, char *zOut) xFullPathname;