Home
last modified time | relevance | path

Searched refs:numHashBytes (Results 1 - 11 of 11) sorted by relevance

/third_party/lzma/C/
H A DLzFind.c223 p->numHashBytes = 4; in MatchFinder_SetDefaultSettings()
317 if (p->numHashBytes == 2) in MatchFinder_GetHashMask2()
328 if (p->numHashBytes == 3) in MatchFinder_GetHashMask2()
332 // (hash_size >= (1 << 16)) : Required for (numHashBytes > 2) in MatchFinder_GetHashMask2()
335 if (p->numHashBytes >= 5) in MatchFinder_GetHashMask2()
343 if (p->numHashBytes == 2) in MatchFinder_GetHashMask()
355 if (p->numHashBytes == 3) in MatchFinder_GetHashMask()
361 // (hash_size >= (1 << 16)) : Required for (numHashBytes > 2) in MatchFinder_GetHashMask()
364 if (p->numHashBytes >= 5) in MatchFinder_GetHashMask()
380 /* we need (p->keepSizeAfter >= p->numHashBytes) */ in MatchFinder_Create()
[all...]
H A DLzFindMt.c499 if (avail < mf->numHashBytes) : in HashThreadFunc()
513 if (num >= mf->numHashBytes) in HashThreadFunc()
515 num = num - mf->numHashBytes + 1; in HashThreadFunc()
577 in [len, dist] match pairs, if (p->numHashBytes >= 2) in BtGetMatches()
624 if (avail >= p->numHashBytes) in BtGetMatches()
629 /* (avail < p->numHashBytes) in BtGetMatches()
674 startDistances + 1, p->numHashBytes - 1) - startDistances); in BtGetMatches()
689 p->numHashBytes - 1, p->hashBuf + p->hashBufPos, in BtGetMatches()
915 p->numHashBytes = mf->numHashBytes; in MatchFinderMt_Init()
[all...]
H A DLzFindMt.h78 UInt32 numHashBytes; member
H A DLzmaEnc.h25 int numHashBytes; /* 2, 3 or 4, default = 4 */ member
H A DLzFind.h42 UInt32 numHashBytes; member
H A DLzmaEnc.c62 p->lc = p->lp = p->pb = p->algo = p->fb = p->btMode = p->numHashBytes = p->numThreads = -1; in LzmaEncProps_Init()
98 if (p->numHashBytes < 0) p->numHashBytes = (p->btMode ? 4 : 5); in LzmaEncProps_Normalize()
573 unsigned numHashBytes = 4; in LzmaEnc_SetProps() local
576 if (props.numHashBytes < 2) numHashBytes = 2; in LzmaEnc_SetProps()
577 else if (props.numHashBytes < 4) numHashBytes = (unsigned)props.numHashBytes; in LzmaEnc_SetProps()
579 if (props.numHashBytes > in LzmaEnc_SetProps()
[all...]
/third_party/lzma/CPP/7zip/Compress/
H A DLzmaEncoder.cpp49 static int ParseMatchFinder(const wchar_t *s, int *btMode, int *numHashBytes) in ParseMatchFinder() argument
62 *numHashBytes = num; in ParseMatchFinder()
77 *numHashBytes = num; in ParseMatchFinder()
92 return ParseMatchFinder(prop.bstrVal, &ep.btMode, &ep.numHashBytes) ? S_OK : E_INVALIDARG; in SetLzmaProp()
/third_party/lzma/Java/SevenZip/Compression/LZ/
H A DBinTree.java34 public void SetType(int numHashBytes) in SetType() argument
36 HASH_ARRAY = (numHashBytes > 2); in SetType()
/third_party/lzma/CS/7zip/Compress/LZ/
H A DLzBinTree.cs34 public void SetType(int numHashBytes) in SetType() argument
36 HASH_ARRAY = (numHashBytes > 2); in SetType()
/third_party/lzma/Java/SevenZip/Compression/LZMA/
H A DEncoder.java367 int numHashBytes = 4; in Create()
369 numHashBytes = 2; in Create()
370 bt.SetType(numHashBytes); in Create()
/third_party/lzma/CS/7zip/Compress/LZMA/
H A DLzmaEncoder.cs367 int numHashBytes = 4; in Create()
369 numHashBytes = 2; in Create()
370 bt.SetType(numHashBytes); in Create()

Completed in 12 milliseconds