Home | History | Annotate | Download | only in src

Lines Matching refs:mBytes

10         final int[] mBytes = {
16 i1 = mBytes[0] | mBytes[1] << 8 | mBytes[2] << 16 | mBytes[3] << 24;
17 i2 = mBytes[4] | mBytes[5] << 8 | mBytes[6] << 16 | mBytes[7] << 24;
25 l = (long)mBytes[0]
26 | (long)mBytes[1] << 8
27 | (long)mBytes[2] << 16
28 | (long)mBytes[3] << 24
29 | (long)mBytes[4] << 32
30 | (long)mBytes[5] << 40
31 | (long)mBytes[6] << 48
32 | (long)mBytes[7] << 56;