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

  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
Latin1Converter.java 73 int readAhead = 0;
101 readAheadBuffer[readAhead++] = (byte) b;
116 readAheadBuffer[readAhead++] = (byte) b;
121 out.append(readAheadBuffer, 0, readAhead);
122 readAhead = 0;
135 i = i - readAhead;
136 readAhead = 0;
147 for (int j = 0; j < readAhead; j++)
FixASCIIControlsReader.java 59 int readAhead = 0;
67 available = super.read(readAheadBuffer, readAhead, 1) == 1;
70 char c = processChar(readAheadBuffer[readAhead]);
79 readAhead = 0;
84 unread(readAheadBuffer, 0, readAhead + 1);
85 readAhead = 0;
89 readAhead++;
92 else if (readAhead > 0)
95 unread(readAheadBuffer, 0, readAhead);
97 readAhead = 0
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
LZMAEncoder.java 65 int readAhead = -1;
195 uncompressedSize += readAhead + 1;
196 readAhead = -1;
225 assert readAhead == -1;
236 --readAhead;
237 assert readAhead == -1;
246 if (!lz.hasEnoughData(readAhead + 1))
251 assert readAhead >= 0;
252 int posState = (lz.getPos() - readAhead) & posMask;
265 assert lz.getMatchLen(-readAhead, reps[back], len) == len
    [all...]
LZMAEncoderFast.java 46 // Get the matches for the next byte unless readAhead indicates
49 if (readAhead == -1)
LZMAEncoderNormal.java 114 if (readAhead == -1)

Completed in 183 milliseconds