Home
last modified time | relevance | path

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

/external/lzma/CPP/7zip/Compress/
DLzmaEncoder.cpp36 static int ParseMatchFinder(const wchar_t *s, int *btMode, int *numHashBytes) in ParseMatchFinder() argument
49 *numHashBytes = numHashBytesLoc; in ParseMatchFinder()
63 *numHashBytes = numHashBytesLoc; in ParseMatchFinder()
75 return ParseMatchFinder(prop.bstrVal, &ep.btMode, &ep.numHashBytes) ? S_OK : E_INVALIDARG; in SetLzmaProp()
/external/lzma/C/
DLzFindMt.c207 if (num >= mf->numHashBytes) in HashThreadFunc()
209 num = num - mf->numHashBytes + 1; in HashThreadFunc()
363 if (p->hashNumAvail >= p->numHashBytes) in BtGetMatches()
393 startDistances + 1, p->numHashBytes - 1) - startDistances); in BtGetMatches()
404 distances + curPos, p->numHashBytes - 1, p->hashBuf + p->hashBufPos, in BtGetMatches()
560 p->numHashBytes = mf->numHashBytes; in MatchFinderMt_Init()
826 switch (p->MatchFinder->numHashBytes)
DLzFind.c133 p->numHashBytes = 4; in MatchFinder_SetDefaultSettings()
208 if (p->numHashBytes == 2) in MatchFinder_Create()
225 if (p->numHashBytes == 3) in MatchFinder_Create()
234 if (p->numHashBytes > 2) p->fixedHashSize += kHash2Size; in MatchFinder_Create()
235 if (p->numHashBytes > 3) p->fixedHashSize += kHash3Size; in MatchFinder_Create()
236 if (p->numHashBytes > 4) p->fixedHashSize += kHash4Size; in MatchFinder_Create()
1105 else if (p->numHashBytes == 2) in MatchFinder_CreateVTable()
1110 else if (p->numHashBytes == 3) in MatchFinder_CreateVTable()
DLzmaEnc.h25 int numHashBytes; /* 2, 3 or 4, default = 4 */ member
DLzFindMt.h76 UInt32 numHashBytes; member
DLzFind.h42 UInt32 numHashBytes; member
DLzmaEnc.c48 p->lc = p->lp = p->pb = p->algo = p->fb = p->btMode = p->numHashBytes = p->numThreads = -1; in LzmaEncProps_Init()
77 if (p->numHashBytes < 0) p->numHashBytes = 4; in LzmaEncProps_Normalize()
479 unsigned numHashBytes = 4; in LzmaEnc_SetProps() local
482 if (props.numHashBytes < 2) in LzmaEnc_SetProps()
483 numHashBytes = 2; in LzmaEnc_SetProps()
484 else if (props.numHashBytes < 4) in LzmaEnc_SetProps()
485 numHashBytes = props.numHashBytes; in LzmaEnc_SetProps()
487 p->matchFinderBase.numHashBytes = numHashBytes; in LzmaEnc_SetProps()
/external/lzma/Java/SevenZip/Compression/LZ/
DBinTree.java34 public void SetType(int numHashBytes) in SetType() argument
36 HASH_ARRAY = (numHashBytes > 2); in SetType()
/external/lzma/CS/7zip/Compress/LZ/
DLzBinTree.cs34 public void SetType(int numHashBytes) in SetType() argument
36 HASH_ARRAY = (numHashBytes > 2); in SetType()
/external/lzma/Java/SevenZip/Compression/LZMA/
DEncoder.java367 int numHashBytes = 4; in Create() local
369 numHashBytes = 2; in Create()
370 bt.SetType(numHashBytes); in Create()
/external/lzma/CS/7zip/Compress/LZMA/
DLzmaEncoder.cs367 int numHashBytes = 4; in Create()
369 numHashBytes = 2; in Create()
370 bt.SetType(numHashBytes); in Create()