Gets the signed byte value at the given offset, without doing any argument checking. @param off offset to fetch @return byte at that offset
(int off)
| 230 | * @return byte at that offset |
| 231 | */ |
| 232 | private int getByte0(int off) { |
| 233 | return bytes[start + off]; |
| 234 | } |
| 235 | |
| 236 | /** |
| 237 | * Gets the {@code unsigned byte} value at the given offset, |