Searched refs:mBytes (Results 1 – 3 of 3) sorted by relevance
/dalvik/tests/027-arithmetic/src/ |
D | Main.java | 10 final int[] mBytes = { in shiftTest1() local 16 i1 = mBytes[0] | mBytes[1] << 8 | mBytes[2] << 16 | mBytes[3] << 24; in shiftTest1() 17 i2 = mBytes[4] | mBytes[5] << 8 | mBytes[6] << 16 | mBytes[7] << 24; in shiftTest1() 25 l = (long)mBytes[0] in shiftTest1() 26 | (long)mBytes[1] << 8 in shiftTest1() 27 | (long)mBytes[2] << 16 in shiftTest1() 28 | (long)mBytes[3] << 24 in shiftTest1() 29 | (long)mBytes[4] << 32 in shiftTest1() 30 | (long)mBytes[5] << 40 in shiftTest1() 31 | (long)mBytes[6] << 48 in shiftTest1() [all …]
|
/dalvik/tests/003-omnibus-opcodes/src/ |
D | IntMath.java | 11 final int[] mBytes = { in shiftTest1() local 17 i1 = mBytes[0] | mBytes[1] << 8 | mBytes[2] << 16 | mBytes[3] << 24; in shiftTest1() 18 i2 = mBytes[4] | mBytes[5] << 8 | mBytes[6] << 16 | mBytes[7] << 24; in shiftTest1() 25 l = (long)mBytes[0] in shiftTest1() 26 | (long)mBytes[1] << 8 in shiftTest1() 27 | (long)mBytes[2] << 16 in shiftTest1() 28 | (long)mBytes[3] << 24 in shiftTest1() 29 | (long)mBytes[4] << 32 in shiftTest1() 30 | (long)mBytes[5] << 40 in shiftTest1() 31 | (long)mBytes[6] << 48 in shiftTest1() [all …]
|
/dalvik/libcore/math/src/test/java/org/apache/harmony/math/tests/java/math/ |
D | BigIntegerModPowTest.java | 50 byte mBytes[] = {1, 2, 3}; in testModPowException() 56 BigInteger modulus = new BigInteger(mSign, mBytes); in testModPowException() 77 byte mBytes[] = {-128, 2, 3, 4, 5}; in testModPowPosExp() 84 BigInteger modulus = new BigInteger(mSign, mBytes); in testModPowPosExp() 106 byte mBytes[] = {-128, 2, 3, 4, 5}; in testModPowNegExp() 113 BigInteger modulus = new BigInteger(mSign, mBytes); in testModPowNegExp() 134 byte mBytes[] = {1, 2, 3}; in testmodInverseException() 138 BigInteger modulus = new BigInteger(mSign, mBytes); in testmodInverseException() 158 byte mBytes[] = {-12, 1, 0, 0, 0, 23, 44, 55, 66}; in testmodInverseNonInvertible() 162 BigInteger modulus = new BigInteger(mSign, mBytes); in testmodInverseNonInvertible() [all …]
|