Searched refs:maxLen (Results 1 – 6 of 6) sorted by relevance
| /src/contrib/bzip2/ |
| H A D | huffman.c | 66 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 D | compress.c | 242 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 D | decompress.c | 110 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()
|
| /src/crypto/krb5/src/windows/leashdll/ |
| H A D | lshutil.cpp | 225 DWORD maxLen = 0; in getPrincipalList() local 244 &maxLen, // __out_opt LPDWORD lpcMaxValueNameLen, in getPrincipalList() 257 tempValName = new TCHAR[maxLen+1]; in getPrincipalList() 264 DWORD size = maxLen+1; in getPrincipalList()
|
| /src/contrib/sqlite3/autosetup/ |
| H A D | jimsh0.c | 403 int maxLen; member 533 int maxLen; member 12156 dupPtr->internalRep.listValue.maxLen = srcPtr->internalRep.listValue.maxLen; in DupListInternalRep() 12158 Jim_Alloc(sizeof(Jim_Obj *) * srcPtr->internalRep.listValue.maxLen); in DupListInternalRep() 12427 objPtr->internalRep.listValue.maxLen = dict->maxLen; in SetListFromAny() 12448 objPtr->internalRep.listValue.maxLen = 0; in SetListFromAny() 12478 objPtr->internalRep.listValue.maxLen = 0; in Jim_NewListObj() 12734 if (idx >= listPtr->internalRep.listValue.maxLen) { in ListEnsureLength() 12742 listPtr->internalRep.listValue.maxLen = idx; in ListEnsureLength() 12758 if (requiredLen > listPtr->internalRep.listValue.maxLen) { in ListInsertElements() [all …]
|
| /src/contrib/sqlite3/ |
| H A D | sqlite3.c | 45976 static int proxyGetLockPath(const char *dbPath, char *lPath, size_t maxLen){ in proxyGetLockPath() argument 45982 len = strlcpy(lPath, LOCKPROXYDIR, maxLen); in proxyGetLockPath() 45986 if( !confstr(_CS_DARWIN_USER_TEMP_DIR, lPath, maxLen) ){ in proxyGetLockPath() 45991 len = strlcat(lPath, "sqliteplocks", maxLen); in proxyGetLockPath() 45994 len = strlcpy(lPath, "/tmp/", maxLen); in proxyGetLockPath() 45999 len = strlcat(lPath, "/", maxLen); in proxyGetLockPath() 46004 for( i=0; i<dbLen && (i+len+7)<(int)maxLen; i++){ in proxyGetLockPath() 46009 strlcat(lPath, ":auto:", maxLen); in proxyGetLockPath()
|