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

  /external/brotli/java/org/brotli/dec/
Decode.java 936 int transformIdx = wordId >>> shift;
938 if (transformIdx < Transform.NUM_TRANSFORMS) {
940 Dictionary.getData(), offset, s.copyLength, transformIdx);
    [all...]
  /external/brotli/csharp/org/brotli/dec/
Decode.cs 901 int transformIdx = (int)(((uint)wordId) >> shift);
903 if (transformIdx < Org.Brotli.Dec.Transform.Transforms.Length)
905 int len = Org.Brotli.Dec.Transform.TransformDictionaryWord(ringBuffer, state.copyDst, Org.Brotli.Dec.Dictionary.GetData(), offset, state.copyLength, Org.Brotli.Dec.Transform.Transforms[transformIdx]);
    [all...]
  /external/brotli/js/
decode.js     [all...]

Completed in 692 milliseconds