HomeSort by relevance Sort by last modified time
    Searched defs:numHashBytes (Results 1 - 6 of 6) sorted by null

  /external/lzma/C/
LzmaEnc.h 27 int numHashBytes; /* 2, 3 or 4, default = 4 */
LzFind.h 38 UInt32 numHashBytes;
LzFindMt.h 76 UInt32 numHashBytes;
LzmaEnc.c 52 p->lc = p->lp = p->pb = p->algo = p->fb = p->btMode = p->numHashBytes = p->numThreads = -1;
77 if (p->numHashBytes < 0) p->numHashBytes = 4;
426 UInt32 numHashBytes = 4;
429 if (props.numHashBytes < 2)
430 numHashBytes = 2;
431 else if (props.numHashBytes < 4)
432 numHashBytes = props.numHashBytes;
434 p->matchFinderBase.numHashBytes = numHashBytes;
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lzma/
Encoder.java 347 int numHashBytes = 4;
348 if (_matchFinderType == EMatchFinderTypeBT2) numHashBytes = 2;
349 bt.SetType(numHashBytes);
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java 367 int numHashBytes = 4;
369 numHashBytes = 2;
370 bt.SetType(numHashBytes);
    [all...]

Completed in 221 milliseconds