HomeSort by relevance Sort by last modified time
    Searched refs:btMode (Results 1 - 5 of 5) sorted by null

  /external/lzma/CPP/7zip/Compress/
LzmaEncoder.cpp 44 static int ParseMatchFinder(const wchar_t *s, int *btMode, int *numHashBytes)
56 *btMode = 0;
71 *btMode = 1;
84 return ParseMatchFinder(prop.bstrVal, &ep.btMode, &ep.numHashBytes) ? S_OK : E_INVALIDARG;
  /external/lzma/C/
LzmaEnc.h 26 int btMode; /* 0 - hashChain Mode, 1 - binTree mode - normal, default = 1 */
LzFind.h 41 int btMode;
LzmaEnc.c 52 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)
    [all...]
LzFind.c 128 p->btMode = 1;
231 p->numSons = (p->btMode ? newCyclicBufferSize * 2 : newCyclicBufferSize);
743 if (!p->btMode)

Completed in 211 milliseconds