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()
82 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
DLzmaEnc.c49 p->lc = p->lp = p->pb = p->algo = p->fb = p->btMode = p->numHashBytes = p->numThreads = -1; in LzmaEncProps_Init()
64 if (p->btMode < 0) p->btMode = (p->algo == 0 ? 0 : 1); in LzmaEncProps_Normalize()
66 if (p->mc == 0) p->mc = (16 + (p->fb >> 1)) >> (p->btMode ? 0 : 1); in LzmaEncProps_Normalize()
70 ((p->btMode && p->algo) ? 2 : 1); in LzmaEncProps_Normalize()
414 p->matchFinderBase.btMode = props.btMode; in LzmaEnc_SetProps()
417 if (props.btMode) in LzmaEnc_SetProps()
1900 Bool btMode; in LzmaEnc_Alloc() local
1903 btMode = (p->matchFinderBase.btMode != 0); in LzmaEnc_Alloc()
1905 p->mtMode = (p->multiThread && !p->fastMode && btMode); in LzmaEnc_Alloc()
DLzFind.h43 int btMode; member
DLzFind.c126 p->btMode = 1; in MatchFinder_SetDefaultSettings()
229 p->numSons = (p->btMode ? newCyclicBufferSize * 2 : newCyclicBufferSize); in MatchFinder_Create()
741 if (!p->btMode) in MatchFinder_CreateVTable()