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

  /libcore/luni/src/main/java/java/nio/charset/
CharsetDecoderICU.java 48 private int outEnd;
104 outEnd = 0;
117 ec = NativeConverter.decode(converterHandle, input, inEnd, output, outEnd, data, true);
145 ec = NativeConverter.decode(converterHandle, input, inEnd, output, outEnd, data, false);
173 outEnd = out.arrayOffset() + out.limit();
176 outEnd = out.remaining();
177 if (allocatedOutput == null || outEnd > allocatedOutput.length) {
178 allocatedOutput = new char[outEnd];
CharsetEncoderICU.java 63 private int outEnd;
132 outEnd = 0;
145 ec = NativeConverter.encode(converterHandle, input, inEnd, output, outEnd, data, true);
174 ec = NativeConverter.encode(converterHandle, input, inEnd, output, outEnd, data, false);
214 outEnd = out.arrayOffset() + out.limit();
217 outEnd = out.remaining();
218 if (allocatedOutput == null || outEnd > allocatedOutput.length) {
219 allocatedOutput = new byte[outEnd];

Completed in 38 milliseconds