Lines Matching refs:value
51 public static int $noinline$rotate_int_right_reg_v_csubv(int value, int distance) { in $noinline$rotate_int_right_reg_v_csubv() argument
52 return (value >>> distance) | (value << (32 - distance)); in $noinline$rotate_int_right_reg_v_csubv()
71 public static long $noinline$rotate_long_right_reg_v_csubv(long value, int distance) { in $noinline$rotate_long_right_reg_v_csubv() argument
72 return (value >>> distance) | (value << (64 - distance)); in $noinline$rotate_long_right_reg_v_csubv()
91 public static int $noinline$rotate_int_left_reg_csubv_v(int value, int distance) { in $noinline$rotate_int_left_reg_csubv_v() argument
92 return (value >>> (32 - distance)) | (value << distance); in $noinline$rotate_int_left_reg_csubv_v()
111 public static long $noinline$rotate_long_left_reg_csubv_v(long value, int distance) { in $noinline$rotate_long_left_reg_csubv_v() argument
112 return (value >>> (64 - distance)) | (value << distance); in $noinline$rotate_long_left_reg_csubv_v()
131 public static int $noinline$rotate_int_right_reg_v_negv(int value, int distance) { in $noinline$rotate_int_right_reg_v_negv() argument
132 return (value >>> distance) | (value << -distance); in $noinline$rotate_int_right_reg_v_negv()
151 public static long $noinline$rotate_long_right_reg_v_negv(long value, int distance) { in $noinline$rotate_long_right_reg_v_negv() argument
152 return (value >>> distance) | (value << -distance); in $noinline$rotate_long_right_reg_v_negv()
171 public static int $noinline$rotate_int_left_reg_negv_v(int value, int distance) { in $noinline$rotate_int_left_reg_negv_v() argument
172 return (value >>> -distance) | (value << distance); in $noinline$rotate_int_left_reg_negv_v()
191 public static long $noinline$rotate_long_left_reg_negv_v(long value, int distance) { in $noinline$rotate_long_left_reg_negv_v() argument
192 return (value >>> -distance) | (value << distance); in $noinline$rotate_long_left_reg_negv_v()
211 public static int $noinline$rotate_int_right_constant_0(int value) { in $noinline$rotate_int_right_constant_0() argument
212 return (value >>> 0) | (value << 0); in $noinline$rotate_int_right_constant_0()
215 public static int $noinline$rotate_int_right_constant_1(int value) { in $noinline$rotate_int_right_constant_1() argument
216 return (value >>> 1) | (value << -1); in $noinline$rotate_int_right_constant_1()
219 public static int $noinline$rotate_int_right_constant_m1(int value) { in $noinline$rotate_int_right_constant_m1() argument
220 return (value >>> -1) | (value << 1); in $noinline$rotate_int_right_constant_m1()
223 public static int $noinline$rotate_int_right_constant_16(int value) { in $noinline$rotate_int_right_constant_16() argument
224 return (value >>> 16) | (value << -16); in $noinline$rotate_int_right_constant_16()
234 public static long $noinline$rotate_long_right_constant_0(long value) { in $noinline$rotate_long_right_constant_0() argument
235 return (value >>> 0) | (value << 0); in $noinline$rotate_long_right_constant_0()
238 public static long $noinline$rotate_long_right_constant_1(long value) { in $noinline$rotate_long_right_constant_1() argument
239 return (value >>> 1) | (value << -1); in $noinline$rotate_long_right_constant_1()
242 public static long $noinline$rotate_long_right_constant_m1(long value) { in $noinline$rotate_long_right_constant_m1() argument
243 return (value >>> -1) | (value << 1); in $noinline$rotate_long_right_constant_m1()
246 public static long $noinline$rotate_long_right_constant_16(long value) { in $noinline$rotate_long_right_constant_16() argument
247 return (value >>> 16) | (value << -16); in $noinline$rotate_long_right_constant_16()
250 public static long $noinline$rotate_long_right_constant_32(long value) { in $noinline$rotate_long_right_constant_32() argument
251 return (value >>> 32) | (value << -32); in $noinline$rotate_long_right_constant_32()
254 public static long $noinline$rotate_long_right_constant_48(long value) { in $noinline$rotate_long_right_constant_48() argument
255 return (value >>> 48) | (value << -48); in $noinline$rotate_long_right_constant_48()
258 public static long $noinline$rotate_long_right_constant_64(long value) { in $noinline$rotate_long_right_constant_64() argument
259 return (value >>> 64) | (value << -64); in $noinline$rotate_long_right_constant_64()
271 public static int $noinline$rotate_int_left_constant_0(int value) { in $noinline$rotate_int_left_constant_0() argument
272 return (value << 0) | (value >>> 0); in $noinline$rotate_int_left_constant_0()
275 public static int $noinline$rotate_int_left_constant_1(int value) { in $noinline$rotate_int_left_constant_1() argument
276 return (value << 1) | (value >>> -1); in $noinline$rotate_int_left_constant_1()
279 public static int $noinline$rotate_int_left_constant_m1(int value) { in $noinline$rotate_int_left_constant_m1() argument
280 return (value << -1) | (value >>> 1); in $noinline$rotate_int_left_constant_m1()
283 public static int $noinline$rotate_int_left_constant_16(int value) { in $noinline$rotate_int_left_constant_16() argument
284 return (value << 16) | (value >>> -16); in $noinline$rotate_int_left_constant_16()
294 public static long $noinline$rotate_long_left_constant_0(long value) { in $noinline$rotate_long_left_constant_0() argument
295 return (value << 0) | (value >>> 0); in $noinline$rotate_long_left_constant_0()
298 public static long $noinline$rotate_long_left_constant_1(long value) { in $noinline$rotate_long_left_constant_1() argument
299 return (value << 1) | (value >>> -1); in $noinline$rotate_long_left_constant_1()
302 public static long $noinline$rotate_long_left_constant_m1(long value) { in $noinline$rotate_long_left_constant_m1() argument
303 return (value << -1) | (value >>> 1); in $noinline$rotate_long_left_constant_m1()
306 public static long $noinline$rotate_long_left_constant_16(long value) { in $noinline$rotate_long_left_constant_16() argument
307 return (value << 16) | (value >>> -16); in $noinline$rotate_long_left_constant_16()
310 public static long $noinline$rotate_long_left_constant_32(long value) { in $noinline$rotate_long_left_constant_32() argument
311 return (value << 32) | (value >>> -32); in $noinline$rotate_long_left_constant_32()
314 public static long $noinline$rotate_long_left_constant_48(long value) { in $noinline$rotate_long_left_constant_48() argument
315 return (value << 48) | (value >>> -48); in $noinline$rotate_long_left_constant_48()
318 public static long $noinline$rotate_long_left_constant_64(long value) { in $noinline$rotate_long_left_constant_64() argument
319 return (value << 64) | (value >>> -64); in $noinline$rotate_long_left_constant_64()