Home
last modified time | relevance | path

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

/external/lzma/CPP/7zip/Compress/
DLzmaEncoder.cpp44 static int ParseMatchFinder(const wchar_t *s, int *btMode, int *numHashBytes) in ParseMatchFinder() argument
56 *btMode = 0; in ParseMatchFinder()
71 *btMode = 1; in ParseMatchFinder()
84 return ParseMatchFinder(prop.bstrVal, &ep.btMode, &ep.numHashBytes) ? S_OK : E_INVALIDARG; in SetLzmaProp()
/external/lzma/C/
DLzmaEnc.h26 int btMode; /* 0 - hashChain Mode, 1 - binTree mode - normal, default = 1 */ member
DLzFind.h41 int btMode; member
DLzmaEnc.c52 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()
82 ((p->btMode && p->algo) ? 2 : 1); in LzmaEncProps_Normalize()
424 p->matchFinderBase.btMode = props.btMode; in LzmaEnc_SetProps()
427 if (props.btMode) in LzmaEnc_SetProps()
1916 p->mtMode = (p->multiThread && !p->fastMode && (p->matchFinderBase.btMode != 0)); in LzmaEnc_Alloc()
DLzFind.c128 p->btMode = 1; in MatchFinder_SetDefaultSettings()
231 p->numSons = (p->btMode ? newCyclicBufferSize * 2 : newCyclicBufferSize); in MatchFinder_Create()
743 if (!p->btMode) in MatchFinder_CreateVTable()