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

/art/test/542-bitfield-rotates/src/
H A DMain.java214 public static long $noinline$rotate_long_left_reg_negv_v(long value, int distance) {
222 assertLongEquals($noinline$rotate_long_left_reg_negv_v(0x11, 0), 0x11);
224 assertLongEquals($noinline$rotate_long_left_reg_negv_v(0x11, 1), 0x22);
225 assertLongEquals($noinline$rotate_long_left_reg_negv_v(0x11, Long.SIZE - 1), 0x8000000000000008L);
226 assertLongEquals($noinline$rotate_long_left_reg_negv_v(0x11, Long.SIZE), 0x11);
227 assertLongEquals($noinline$rotate_long_left_reg_negv_v(0x11, Long.SIZE + 1), 0x22);
229 assertLongEquals($noinline$rotate_long_left_reg_negv_v(0x11, -1), 0x8000000000000008L);
230 assertLongEquals($noinline$rotate_long_left_reg_negv_v(0x11, -(Long.SIZE - 1)), 0x22);
231 assertLongEquals($noinline$rotate_long_left_reg_negv_v(0x11, -Long.SIZE), 0x11);
232 assertLongEquals($noinline$rotate_long_left_reg_negv_v(
[all...]

Completed in 4 milliseconds