Home | History | Annotate | Download | only in src

Lines Matching refs:mBytes

25         final int[] mBytes = {
31 i1 = mBytes[0] | mBytes[1] << 8 | mBytes[2] << 16 | mBytes[3] << 24;
32 i2 = mBytes[4] | mBytes[5] << 8 | mBytes[6] << 16 | mBytes[7] << 24;
39 l = (long)mBytes[0]
40 | (long)mBytes[1] << 8
41 | (long)mBytes[2] << 16
42 | (long)mBytes[3] << 24
43 | (long)mBytes[4] << 32
44 | (long)mBytes[5] << 40
45 | (long)mBytes[6] << 48
46 | (long)mBytes[7] << 56;