Searched refs:readAhead (Results 1 – 5 of 5) sorted by relevance
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
D | FixASCIIControlsReader.java | 59 int readAhead = 0; in read() local 67 available = super.read(readAheadBuffer, readAhead, 1) == 1; in read() 70 char c = processChar(readAheadBuffer[readAhead]); in read() 79 readAhead = 0; in read() 84 unread(readAheadBuffer, 0, readAhead + 1); in read() 85 readAhead = 0; in read() 89 readAhead++; in read() 92 else if (readAhead > 0) in read() 95 unread(readAheadBuffer, 0, readAhead); in read() 97 readAhead = 0; in read()
|
D | Latin1Converter.java | 73 int readAhead = 0; in convert() local 101 readAheadBuffer[readAhead++] = (byte) b; in convert() 116 readAheadBuffer[readAhead++] = (byte) b; in convert() 121 out.append(readAheadBuffer, 0, readAhead); in convert() 122 readAhead = 0; in convert() 135 i = i - readAhead; in convert() 136 readAhead = 0; in convert() 147 for (int j = 0; j < readAhead; j++) in convert()
|
/external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/ |
D | LZMAEncoder.java | 65 int readAhead = -1; field in LZMAEncoder 195 uncompressedSize += readAhead + 1; in reset() 196 readAhead = -1; in reset() 225 assert readAhead == -1; in encodeInit() 236 --readAhead; in encodeInit() 237 assert readAhead == -1; in encodeInit() 246 if (!lz.hasEnoughData(readAhead + 1)) in encodeSymbol() 251 assert readAhead >= 0; in encodeSymbol() local 252 int posState = (lz.getPos() - readAhead) & posMask; in encodeSymbol() 265 assert lz.getMatchLen(-readAhead, reps[back], len) == len; in encodeSymbol() [all …]
|
D | LZMAEncoderFast.java | 49 if (readAhead == -1) in getNextSymbol()
|
D | LZMAEncoderNormal.java | 114 if (readAhead == -1) in getNextSymbol()
|