Home
last modified time | relevance | path

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

/freebsd/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()
/freebsd/contrib/sqlite3/
H A Dsqlite3.c1791 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
31340 int nOut; /* Size of the rendering buffer */ in sqlite3_str_vappendf() local
31562 nOut = etBUFSIZE; in sqlite3_str_vappendf()
31570 nOut = (int)n; in sqlite3_str_vappendf()
31572 bufpt = &zOut[nOut-1]; in sqlite3_str_vappendf()
31590 length = (int)(&zOut[nOut-1]-bufpt); in sqlite3_str_vappendf()
31616 length = (int)(&zOut[nOut-1]-bufpt); in sqlite3_str_vappendf()
37775 static int kvvfsDecode(const char *a, char *aOut, int nOut){
37793 if( j+n>nOut ) return -1;
38280 int nOut,
[all …]
H A Dshell.c9291 int nOut, in apndFullPathname() argument
9294 return ORIGVFS(pVfs)->xFullPathname(ORIGVFS(pVfs),zPath,nOut,zOut); in apndFullPathname()
10325 int nOut /* Expected output size */ in zipfileInflate() argument
10327 u8 *aRes = sqlite3_malloc(nOut); in zipfileInflate()
10338 str.avail_out = nOut; in zipfileInflate()
10348 sqlite3_result_blob(pCtx, aRes, nOut, zipfileFree); in zipfileInflate()
11426 int nOut = 0; in zipfileStep() local
11427 rc = zipfileDeflate(aData, nData, &aFree, &nOut, &zErr); in zipfileStep()
11431 if( iMethod==8 || nOut<nData ){ in zipfileStep()
11433 nData = nOut; in zipfileStep()
[all …]
H A Dsqlite3.h1478 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);