Home
last modified time | relevance | path

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

/freebsd/contrib/bzip2/
H A Dhuffman.c66 Int32 maxLen ) in BZ2_hbMakeCodeLengths() argument
120 if (j > maxLen) tooLong = True; in BZ2_hbMakeCodeLengths()
155 Int32 maxLen, in BZ2_hbAssignCodes() argument
161 for (n = minLen; n <= maxLen; n++) { in BZ2_hbAssignCodes()
175 Int32 maxLen, in BZ2_hbCreateDecodeTables() argument
181 for (i = minLen; i <= maxLen; i++) in BZ2_hbCreateDecodeTables()
193 for (i = minLen; i <= maxLen; i++) { in BZ2_hbCreateDecodeTables()
198 for (i = minLen + 1; i <= maxLen; i++) in BZ2_hbCreateDecodeTables()
H A Dcompress.c242 Int32 nSelectors, alphaSize, minLen, maxLen, selCtr; in sendMTFValues() local
483 maxLen = 0; in sendMTFValues()
485 if (s->len[t][i] > maxLen) maxLen = s->len[t][i]; in sendMTFValues()
488 AssertH ( !(maxLen > 17 /*20*/ ), 3004 ); in sendMTFValues()
491 minLen, maxLen, alphaSize ); in sendMTFValues()
H A Ddecompress.c110 Int32 minLen, maxLen; in BZ2_decompress() local
340 maxLen = 0; in BZ2_decompress()
342 if (s->len[t][i] > maxLen) maxLen = s->len[t][i]; in BZ2_decompress()
350 minLen, maxLen, alphaSize in BZ2_decompress()
/freebsd/contrib/sqlite3/
H A Dsqlite3.c45497 static int proxyGetLockPath(const char *dbPath, char *lPath, size_t maxLen){
45503 len = strlcpy(lPath, LOCKPROXYDIR, maxLen);
45507 if( !confstr(_CS_DARWIN_USER_TEMP_DIR, lPath, maxLen) ){
45512 len = strlcat(lPath, "sqliteplocks", maxLen);
45515 len = strlcpy(lPath, "/tmp/", maxLen);
45520 len = strlcat(lPath, "/", maxLen);
45525 for( i=0; i<dbLen && (i+len+7)<(int)maxLen; i++){
45530 strlcat(lPath, ":auto:", maxLen);