Home
last modified time | relevance | path

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

/third_party/lzma/C/
DLzFind.c216 p->numHashBytes = 4; in MatchFinder_SetDefaultSettings()
312 if (keepAddBufferAfter < p->numHashBytes) in MatchFinder_Create()
313 keepAddBufferAfter = p->numHashBytes; in MatchFinder_Create()
328 if (p->numHashBytes != 2) in MatchFinder_Create()
343 if (p->numHashBytes == 3) in MatchFinder_Create()
356 if (p->numHashBytes >= 5) in MatchFinder_Create()
370 if (p->numHashBytes > 2) p->fixedHashSize += kHash2Size; in MatchFinder_Create()
371 if (p->numHashBytes > 3) p->fixedHashSize += kHash3Size; in MatchFinder_Create()
756 if (GET_AVAIL_BYTES(p) >= p->numHashBytes) // optional optimization for last bytes of data. in MatchFinder_CheckLimits()
1558 if (p->numHashBytes <= 4) in MatchFinder_CreateVTable()
[all …]
DLzFindMt.c513 if (num >= mf->numHashBytes) in HashThreadFunc()
515 num = num - mf->numHashBytes + 1; in HashThreadFunc()
624 if (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()
1370 switch (MF(p)->numHashBytes)
DLzmaEnc.h25 int numHashBytes; /* 2, 3 or 4, default = 4 */ member
DLzmaEnc.c62 p->lc = p->lp = p->pb = p->algo = p->fb = p->btMode = p->numHashBytes = p->numThreads = -1; in LzmaEncProps_Init()
97 if (p->numHashBytes < 0) p->numHashBytes = (p->btMode ? 4 : 5); in LzmaEncProps_Normalize()
589 unsigned numHashBytes = 4; in LzmaEnc_SetProps() local
592 if (props.numHashBytes < 2) numHashBytes = 2; in LzmaEnc_SetProps()
593 else if (props.numHashBytes < 4) numHashBytes = (unsigned)props.numHashBytes; in LzmaEnc_SetProps()
595 if (props.numHashBytes >= 5) numHashBytes = 5; in LzmaEnc_SetProps()
597 MFB.numHashBytes = numHashBytes; in LzmaEnc_SetProps()
DLzFindMt.h78 UInt32 numHashBytes; member
DLzFind.h42 UInt32 numHashBytes; member
/third_party/lzma/CPP/7zip/Compress/
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/
DBinTree.java34 public void SetType(int numHashBytes) in SetType() argument
36 HASH_ARRAY = (numHashBytes > 2); in SetType()
/third_party/lzma/CS/7zip/Compress/LZ/
DLzBinTree.cs34 public void SetType(int numHashBytes) in SetType() argument
36 HASH_ARRAY = (numHashBytes > 2); in SetType()
/third_party/lzma/Java/SevenZip/Compression/LZMA/
DEncoder.java367 int numHashBytes = 4; in Create() local
369 numHashBytes = 2; in Create()
370 bt.SetType(numHashBytes); in Create()
/third_party/lzma/CS/7zip/Compress/LZMA/
DLzmaEncoder.cs367 int numHashBytes = 4; in Create()
369 numHashBytes = 2; in Create()
370 bt.SetType(numHashBytes); in Create()