Home | History | Annotate | Download | only in write

Lines Matching refs:curByte

36     private int[] curByte = new int[8];
50 curByte[i] = 0;
57 int toWrite = (curByte[0] << 7) | (curByte[1] << 6) | (curByte[2] << 5)
58 | (curByte[3] << 4) | (curByte[4] << 3) | (curByte[5] << 2)
59 | (curByte[6] << 1) | curByte[7];
74 curByte[curBit++] = value;