Home | History | Annotate | Download | only in impl

Lines Matching refs:off

258         for (int off = 0, len = data.length; off < len; off += 32) {
259 int n = Math.min(32, len - off);
260 if (off < 0x10) {
263 if (off < 0x100) {
266 if (off < 0x1000) {
269 buf.append(Integer.toHexString(off));
276 buf.append(Integer.toHexString((data[off + index] & 0xF0) >> 4));
277 buf.append(Integer.toHexString((data[off + index] & 0x0F) >> 0));
293 int ch = data[off + index] & 0xFF;
299 if (off + 32 >= 2048) {