Home
last modified time | relevance | path

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

/illumos-gate/usr/src/common/lzma/
H A DLzmaEnc.h27 int btMode; /* 0 - hashChain Mode, 1 - binTree mode - normal, default = 1 */ member
H A DLzFind.h38 int btMode; 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()
69 if (p->btMode < 0) p->btMode = (p->algo == 0 ? 0 : 1); in LzmaEncProps_Normalize()
71 if (p->mc == 0) p->mc = (16 + (p->fb >> 1)) >> (p->btMode ? 0 : 1); in LzmaEncProps_Normalize()
72 if (p->numThreads < 0) p->numThreads = ((p->btMode && p->algo) ? 2 : 1); in LzmaEncProps_Normalize()
434 p->matchFinderBase.btMode = props.btMode; in LzmaEnc_SetProps()
437 if (props.btMode) in LzmaEnc_SetProps()
1926 (p->matchFinderBase.btMode != 0)); in LzmaEnc_Alloc()
H A DLzFind.c118 p->btMode = 1; in MatchFinder_SetDefaultSettings()
224 p->numSons = (p->btMode ? newCyclicBufferSize * 2 : newCyclicBufferSize); in MatchFinder_Create()
736 if (!p->btMode) in MatchFinder_CreateVTable()