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

  /external/chromium_org/third_party/lzma_sdk/
LzmaEnc.c 891 static UInt32 Backward(CLzmaEnc *p, UInt32 *backRes, UInt32 cur)
922 *backRes = p->opt[0].backPrev;
929 static UInt32 GetOptimum(CLzmaEnc *p, UInt32 position, UInt32 *backRes)
941 *backRes = opt->backPrev;
958 *backRes = (UInt32)(-1);
985 *backRes = repMaxIndex;
994 *backRes = matches[numPairs - 1] + LZMA_NUM_REPS;
1003 *backRes = (UInt32)-1;
1037 *backRes = p->opt[1].backPrev;
1136 return Backward(p, backRes, cur)
    [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaEnc.c 892 static UInt32 Backward(CLzmaEnc *p, UInt32 *backRes, UInt32 cur)
923 *backRes = p->opt[0].backPrev;
930 static UInt32 GetOptimum(CLzmaEnc *p, UInt32 position, UInt32 *backRes)
942 *backRes = opt->backPrev;
959 *backRes = (UInt32)(-1);
986 *backRes = repMaxIndex;
995 *backRes = matches[numPairs - 1] + LZMA_NUM_REPS;
1004 *backRes = (UInt32)-1;
1038 *backRes = p->opt[1].backPrev;
1137 return Backward(p, backRes, cur)
    [all...]
  /external/lzma/C/
LzmaEnc.c 891 static UInt32 Backward(CLzmaEnc *p, UInt32 *backRes, UInt32 cur)
922 *backRes = p->opt[0].backPrev;
929 static UInt32 GetOptimum(CLzmaEnc *p, UInt32 position, UInt32 *backRes)
941 *backRes = opt->backPrev;
958 *backRes = (UInt32)(-1);
985 *backRes = repMaxIndex;
994 *backRes = matches[numPairs - 1] + LZMA_NUM_REPS;
1003 *backRes = (UInt32)-1;
1037 *backRes = p->opt[1].backPrev;
1136 return Backward(p, backRes, cur);
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 501 UInt32 Backward(out UInt32 backRes, UInt32 cur)
530 backRes = _optimum[0].BackPrev;
539 UInt32 GetOptimum(UInt32 position, out UInt32 backRes)
544 backRes = _optimum[_optimumCurrentIndex].BackPrev;
565 backRes = 0xFFFFFFFF;
582 backRes = repMaxIndex;
590 backRes = _matchDistances[numDistancePairs - 1] + Base.kNumRepDistances;
600 backRes = (UInt32)0xFFFFFFFF;
629 backRes = _optimum[1].BackPrev;
701 return Backward(out backRes, cur);
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java 530 backRes = _optimum[0].BackPrev;
537 int backRes;
544 backRes = _optimum[_optimumCurrentIndex].BackPrev;
565 backRes = -1;
582 backRes = repMaxIndex;
590 backRes = _matchDistances[numDistancePairs - 1] + Base.kNumRepDistances;
600 backRes = -1;
629 backRes = _optimum[1].BackPrev;
    [all...]

Completed in 99 milliseconds