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

/external/lzma/CPP/7zip/Compress/
H A DLzmaEncoder.cpp44 static int ParseMatchFinder(const wchar_t *s, int *btMode, int *numHashBytes) argument
56 *btMode = 0;
71 *btMode = 1;
84 return ParseMatchFinder(prop.bstrVal, &ep.btMode, &ep.numHashBytes) ? S_OK : E_INVALIDARG;
/external/lzma/C/
H A DLzmaEnc.h26 int btMode; /* 0 - hashChain Mode, 1 - binTree mode - normal, default = 1 */ member in struct:_CLzmaEncProps
H A DLzFind.h41 int btMode; member in struct:_CMatchFinder
H A DLzmaEnc.c52 p->lc = p->lp = p->pb = p->algo = p->fb = p->btMode = p->numHashBytes = p->numThreads = -1;
76 if (p->btMode < 0) p->btMode = (p->algo == 0 ? 0 : 1);
78 if (p->mc == 0) p->mc = (16 + (p->fb >> 1)) >> (p->btMode ? 0 : 1);
82 ((p->btMode && p->algo) ? 2 : 1);
424 p->matchFinderBase.btMode = props.btMode;
427 if (props.btMode)
1916 p->mtMode = (p->multiThread && !p->fastMode && (p->matchFinderBase.btMode != 0));
H A DLzFind.c128 p->btMode = 1;
231 p->numSons = (p->btMode ? newCyclicBufferSize * 2 : newCyclicBufferSize);
743 if (!p->btMode)

Completed in 711 milliseconds