Searched defs:rotate_long_left_reg_csubv_v (Results 1 - 1 of 1) sorted by relevance

/art/test/542-bitfield-rotates/src/
H A DMain.java122 public static long $noinline$rotate_long_left_reg_csubv_v(long value, int distance) {
130 assertLongEquals($noinline$rotate_long_left_reg_csubv_v(0x11, 0), 0x11);
132 assertLongEquals($noinline$rotate_long_left_reg_csubv_v(0x11, 1), 0x22);
133 assertLongEquals($noinline$rotate_long_left_reg_csubv_v(0x11, Long.SIZE - 1), 0x8000000000000008L);
134 assertLongEquals($noinline$rotate_long_left_reg_csubv_v(0x11, Long.SIZE), 0x11);
135 assertLongEquals($noinline$rotate_long_left_reg_csubv_v(0x11, Long.SIZE + 1), 0x22);
137 assertLongEquals($noinline$rotate_long_left_reg_csubv_v(0x11, -1), 0x8000000000000008L);
138 assertLongEquals($noinline$rotate_long_left_reg_csubv_v(0x11, -(Long.SIZE - 1)), 0x22);
139 assertLongEquals($noinline$rotate_long_left_reg_csubv_v(0x11, -Long.SIZE), 0x11);
140 assertLongEquals($noinline$rotate_long_left_reg_csubv_v(
[all...]

Completed in 4 milliseconds