Home | History | Annotate | Download | only in micro

Lines Matching defs:currentLimit

452   private int currentLimit = Integer.MAX_VALUE;
530 * Sets {@code currentLimit} to (current position) + {@code byteLimit}. This
540 final int oldLimit = currentLimit;
544 currentLimit = byteLimit;
554 if (bufferEnd > currentLimit) {
556 bufferSizeAfterLimit = bufferEnd - currentLimit;
569 currentLimit = oldLimit;
578 if (currentLimit == Integer.MAX_VALUE) {
583 return currentLimit - currentAbsolutePosition;
608 if (totalBytesRetired + bufferSize == currentLimit) {
668 if (totalBytesRetired + bufferPos + size > currentLimit) {
670 skipRawBytes(currentLimit - totalBytesRetired - bufferPos);
778 if (totalBytesRetired + bufferPos + size > currentLimit) {
780 skipRawBytes(currentLimit - totalBytesRetired - bufferPos);