Searched refs:numHashBytes (Results 1 – 11 of 11) sorted by relevance
/external/lzma/CPP/7zip/Compress/ |
D | LzmaEncoder.cpp | 44 static int ParseMatchFinder(const wchar_t *s, int *btMode, int *numHashBytes) in ParseMatchFinder() argument 57 *numHashBytes = numHashBytesLoc; in ParseMatchFinder() 72 *numHashBytes = numHashBytesLoc; in ParseMatchFinder() 82 return ParseMatchFinder(prop.bstrVal, &ep.btMode, &ep.numHashBytes) ? S_OK : E_INVALIDARG; in SetLzmaProp()
|
/external/lzma/C/ |
D | LzFindMt.c | 200 if (num >= mf->numHashBytes) in HashThreadFunc() 202 num = num - mf->numHashBytes + 1; in HashThreadFunc() 323 if (p->hashNumAvail >= p->numHashBytes) in BtGetMatches() 350 startDistances + 1, p->numHashBytes - 1) - startDistances); in BtGetMatches() 361 …distances + curPos, p->numHashBytes - 1, p->hashBuf + p->hashBufPos, (Int32)(limit - curPos) , siz… in BtGetMatches() 506 p->numHashBytes = mf->numHashBytes; in MatchFinderMt_Init() 765 switch(p->MatchFinder->numHashBytes)
|
D | LzFind.c | 127 p->numHashBytes = 4; in MatchFinder_SetDefaultSettings() 196 if (p->numHashBytes == 2) in MatchFinder_Create() 209 if (p->numHashBytes == 3) in MatchFinder_Create() 217 if (p->numHashBytes > 2) p->fixedHashSize += kHash2Size; in MatchFinder_Create() 218 if (p->numHashBytes > 3) p->fixedHashSize += kHash3Size; in MatchFinder_Create() 219 if (p->numHashBytes > 4) p->fixedHashSize += kHash4Size; in MatchFinder_Create() 746 else if (p->numHashBytes == 2) in MatchFinder_CreateVTable() 751 else if (p->numHashBytes == 3) in MatchFinder_CreateVTable()
|
D | LzmaEnc.h | 27 int numHashBytes; /* 2, 3 or 4, default = 4 */ member
|
D | LzFindMt.h | 78 UInt32 numHashBytes; member
|
D | LzFind.h | 40 UInt32 numHashBytes; member
|
D | LzmaEnc.c | 49 p->lc = p->lp = p->pb = p->algo = p->fb = p->btMode = p->numHashBytes = p->numThreads = -1; in LzmaEncProps_Init() 65 if (p->numHashBytes < 0) p->numHashBytes = 4; in LzmaEncProps_Normalize() 416 UInt32 numHashBytes = 4; in LzmaEnc_SetProps() local 419 if (props.numHashBytes < 2) in LzmaEnc_SetProps() 420 numHashBytes = 2; in LzmaEnc_SetProps() 421 else if (props.numHashBytes < 4) in LzmaEnc_SetProps() 422 numHashBytes = props.numHashBytes; in LzmaEnc_SetProps() 424 p->matchFinderBase.numHashBytes = numHashBytes; in LzmaEnc_SetProps()
|
/external/lzma/Java/SevenZip/Compression/LZ/ |
D | BinTree.java | 34 public void SetType(int numHashBytes) in SetType() argument 36 HASH_ARRAY = (numHashBytes > 2); in SetType()
|
/external/lzma/CS/7zip/Compress/LZ/ |
D | LzBinTree.cs | 34 public void SetType(int numHashBytes) in SetType() argument 36 HASH_ARRAY = (numHashBytes > 2); in SetType()
|
/external/lzma/Java/SevenZip/Compression/LZMA/ |
D | Encoder.java | 367 int numHashBytes = 4; in Create() local 369 numHashBytes = 2; in Create() 370 bt.SetType(numHashBytes); in Create()
|
/external/lzma/CS/7zip/Compress/LZMA/ |
D | LzmaEncoder.cs | 367 int numHashBytes = 4; in Create() 369 numHashBytes = 2; in Create() 370 bt.SetType(numHashBytes); in Create()
|