Home
last modified time | relevance | path

Searched refs:maxLen (Results 1 – 7 of 7) sorted by relevance

/netbsd-src/external/bsd/bzip2/dist/
H A Dhuffman.c68 Int32 maxLen ) in BZ2_hbMakeCodeLengths() argument
122 if (j > maxLen) tooLong = True; in BZ2_hbMakeCodeLengths()
157 Int32 maxLen, in BZ2_hbAssignCodes() argument
163 for (n = minLen; n <= maxLen; n++) { in BZ2_hbAssignCodes()
177 Int32 maxLen, in BZ2_hbCreateDecodeTables() argument
183 for (i = minLen; i <= maxLen; i++) in BZ2_hbCreateDecodeTables()
195 for (i = minLen; i <= maxLen; i++) { in BZ2_hbCreateDecodeTables()
200 for (i = minLen + 1; i <= maxLen; i++) in BZ2_hbCreateDecodeTables()
H A Dcompress.c244 Int32 nSelectors, alphaSize, minLen, maxLen, selCtr; in sendMTFValues() local
485 maxLen = 0; in sendMTFValues()
487 if (s->len[t][i] > maxLen) maxLen = s->len[t][i]; in sendMTFValues()
490 AssertH ( !(maxLen > 17 /*20*/ ), 3004 ); in sendMTFValues()
493 minLen, maxLen, alphaSize ); in sendMTFValues()
H A Ddecompress.c112 Int32 minLen, maxLen; in BZ2_decompress() local
342 maxLen = 0; in BZ2_decompress()
344 if (s->len[t][i] > maxLen) maxLen = s->len[t][i]; in BZ2_decompress()
352 minLen, maxLen, alphaSize in BZ2_decompress()
/netbsd-src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
H A Dbzlib.c1198 Int32 minLen, maxLen; in netpgpv_BZ2_decompress() local
1422 maxLen = 0; in netpgpv_BZ2_decompress()
1424 if (s->len[t][i] > maxLen) maxLen = s->len[t][i]; in netpgpv_BZ2_decompress()
1432 minLen, maxLen, alphaSize in netpgpv_BZ2_decompress()
1904 Int32 maxLen ) in netpgpv_BZ2_hbMakeCodeLengths() argument
1958 if (j > maxLen) tooLong = True; in netpgpv_BZ2_hbMakeCodeLengths()
1993 Int32 maxLen, in netpgpv_BZ2_hbAssignCodes() argument
1999 for (n = minLen; n <= maxLen; n++) { in netpgpv_BZ2_hbAssignCodes()
2013 Int32 maxLen, in netpgpv_BZ2_hbCreateDecodeTables() argument
2019 for (i = minLen; i <= maxLen; i++) in netpgpv_BZ2_hbCreateDecodeTables()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/net/
H A Dcurl.d2932 enum maxLen = fmt.length - "%d%03d%d%d%d".length + 10 + 10 + 3 + 3 + 3; in defaultUserAgent() local
2934 static char[maxLen] buf = void; in defaultUserAgent()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/net/
H A Dcurl.d2907 enum maxLen = fmt.length - "%d%03d%d%d%d".length + 10 + 10 + 3 + 3 + 3; in defaultUserAgent() local
2909 static char[maxLen] buf = void; in defaultUserAgent()
/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3.c45146 static int proxyGetLockPath(const char *dbPath, char *lPath, size_t maxLen){
45152 len = strlcpy(lPath, LOCKPROXYDIR, maxLen);
45156 if( !confstr(_CS_DARWIN_USER_TEMP_DIR, lPath, maxLen) ){
45161 len = strlcat(lPath, "sqliteplocks", maxLen);
45164 len = strlcpy(lPath, "/tmp/", maxLen);
45169 len = strlcat(lPath, "/", maxLen);
45174 for( i=0; i<dbLen && (i+len+7)<(int)maxLen; i++){
45179 strlcat(lPath, ":auto:", maxLen);