Home
last modified time | relevance | path

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

/external/lzma/CPP/7zip/Compress/
DLzmaEncoder.cpp36 static int ParseMatchFinder(const wchar_t *s, int *btMode, int *numHashBytes) in ParseMatchFinder() argument
48 *btMode = 0; in ParseMatchFinder()
62 *btMode = 1; in ParseMatchFinder()
75 return ParseMatchFinder(prop.bstrVal, &ep.btMode, &ep.numHashBytes) ? S_OK : E_INVALIDARG; in SetLzmaProp()
/external/lzma/C/
DLzmaEnc.h24 int btMode; /* 0 - hashChain Mode, 1 - binTree mode - normal, default = 1 */ member
DLzFind.h25 Byte btMode; member
DLzFind.c132 p->btMode = 1; in MatchFinder_SetDefaultSettings()
248 if (p->btMode) in MatchFinder_Create()
1090 if (!p->btMode) in MatchFinder_CreateVTable()
DLzmaEnc.c48 p->lc = p->lp = p->pb = p->algo = p->fb = p->btMode = p->numHashBytes = p->numThreads = -1; in LzmaEncProps_Init()
76 if (p->btMode < 0) p->btMode = (p->algo == 0 ? 0 : 1); in LzmaEncProps_Normalize()
78 if (p->mc == 0) p->mc = (16 + (p->fb >> 1)) >> (p->btMode ? 0 : 1); in LzmaEncProps_Normalize()
83 ((p->btMode && p->algo) ? 2 : 1); in LzmaEncProps_Normalize()
477 p->matchFinderBase.btMode = (Byte)(props.btMode ? 1 : 0); in LzmaEnc_SetProps()
480 if (props.btMode) in LzmaEnc_SetProps()
2566 p->mtMode = (p->multiThread && !p->fastMode && (p->matchFinderBase.btMode != 0)); in LzmaEnc_Alloc()