Searched refs:byteLimit (Results 1 – 2 of 2) sorted by relevance
23 private int byteLimit; field in ParsableBitArray31 byteLimit = limit; in ParsableBitArray()38 byteLimit = limit; in reset()87 while (byteOffset < byteLimit && !readBit()) { in canReadUEV()90 boolean hitLimit = byteOffset == byteLimit; in canReadUEV()113 for (int i = oldByteOffset + 1; i <= newByteOffset && newByteOffset < byteLimit; i++) { in canReadBits()120 return newByteOffset < byteLimit || (newByteOffset == byteLimit && newBitOffset == 0); in canReadBits()124 return (2 <= offset && offset < byteLimit && data[offset] == (byte) 0x03 && in shouldSkipByte()
437 int currentPosition, int byteLimit, CharSequence msgBody) { in findNextUnicodePosition() argument438 int nextPos = Math.min(currentPosition + byteLimit / 2, msgBody.length()); in findNextUnicodePosition()