Searched refs:nOut (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/bzip2/ |
| H A D | unzcrash.c | 44 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 D | sqlite3.c | 1845 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut); 32598 int nOut; /* Size of the rendering buffer */ in sqlite3_str_vappendf() local 32848 nOut = etBUFSIZE; in sqlite3_str_vappendf() 32856 nOut = (int)n; in sqlite3_str_vappendf() 32858 bufpt = &zOut[nOut-1]; in sqlite3_str_vappendf() 32876 length = (int)(&zOut[nOut-1]-bufpt); in sqlite3_str_vappendf() 32904 length = (int)(&zOut[nOut-1]-bufpt); in sqlite3_str_vappendf() 39579 int kvvfsDecode(const char *a, char *aOut, int nOut){ in kvvfsDecode() argument 39594 if( n>nOut ) return -1 /* oversized/malformed input */; in kvvfsDecode() 39598 if( j+n>nOut ) return -1 /* oversized/malformed input */; in kvvfsDecode() [all …]
|
| H A D | shell.c | 12076 int nOut, in apndFullPathname() argument 12079 return ORIGVFS(pVfs)->xFullPathname(ORIGVFS(pVfs),zPath,nOut,zOut); in apndFullPathname() 13164 int nOut /* Expected output size */ in zipfileInflate() argument 13166 u8 *aRes = sqlite3_malloc64(nOut); in zipfileInflate() 13177 str.avail_out = nOut; in zipfileInflate() 14275 int nOut = 0; in zipfileStep() local 14276 rc = zipfileDeflate(aData, nData, &aFree, &nOut, &zErr); in zipfileStep() 14280 if( iMethod==8 || nOut<nData ){ in zipfileStep() 14282 nData = nOut; in zipfileStep() 14510 uLongf nOut = compressBound(nData); in sqlarCompressFunc() local [all …]
|
| H A D | sqlite3.h | 1524 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
|