Home
last modified time | relevance | path

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

/titanic_44/usr/src/common/lzma/
H A DLzFind.c119 p->numHashBytes = 4; in MatchFinder_SetDefaultSettings()
190 if (p->numHashBytes == 2) in MatchFinder_Create()
204 if (p->numHashBytes == 3) in MatchFinder_Create()
212 if (p->numHashBytes > 2) p->fixedHashSize += kHash2Size; in MatchFinder_Create()
213 if (p->numHashBytes > 3) p->fixedHashSize += kHash3Size; in MatchFinder_Create()
214 if (p->numHashBytes > 4) p->fixedHashSize += kHash4Size; in MatchFinder_Create()
741 else if (p->numHashBytes == 2) in MatchFinder_CreateVTable()
746 else if (p->numHashBytes == 3) in MatchFinder_CreateVTable()
H A DLzmaEnc.h28 int numHashBytes; /* 2, 3 or 4, default = 4 */ member
H A DLzFind.h36 UInt32 numHashBytes; member
H A DLzmaEnc.c54 p->lc = p->lp = p->pb = p->algo = p->fb = p->btMode = p->numHashBytes = p->numThreads = -1; in LzmaEncProps_Init()
70 if (p->numHashBytes < 0) p->numHashBytes = 4; in LzmaEncProps_Normalize()
436 UInt32 numHashBytes = 4; in LzmaEnc_SetProps() local
439 if (props.numHashBytes < 2) in LzmaEnc_SetProps()
440 numHashBytes = 2; in LzmaEnc_SetProps()
441 else if (props.numHashBytes < 4) in LzmaEnc_SetProps()
442 numHashBytes = props.numHashBytes; in LzmaEnc_SetProps()
444 p->matchFinderBase.numHashBytes = numHashBytes; in LzmaEnc_SetProps()