Lines Matching refs:value

53   public static int $noinline$rotate_int_right_reg_v_csubv(int value, int distance) {  in $noinline$rotate_int_right_reg_v_csubv()  argument
57 return (value >>> distance) | (value << (32 - distance)); in $noinline$rotate_int_right_reg_v_csubv()
76 public static long $noinline$rotate_long_right_reg_v_csubv(long value, int distance) { in $noinline$rotate_long_right_reg_v_csubv() argument
80 return (value >>> distance) | (value << (64 - distance)); in $noinline$rotate_long_right_reg_v_csubv()
99 public static int $noinline$rotate_int_left_reg_csubv_v(int value, int distance) { in $noinline$rotate_int_left_reg_csubv_v() argument
103 return (value >>> (32 - distance)) | (value << distance); in $noinline$rotate_int_left_reg_csubv_v()
122 public static long $noinline$rotate_long_left_reg_csubv_v(long value, int distance) { in $noinline$rotate_long_left_reg_csubv_v() argument
126 return (value >>> (64 - distance)) | (value << distance); in $noinline$rotate_long_left_reg_csubv_v()
145 public static int $noinline$rotate_int_right_reg_v_negv(int value, int distance) { in $noinline$rotate_int_right_reg_v_negv() argument
149 return (value >>> distance) | (value << -distance); in $noinline$rotate_int_right_reg_v_negv()
168 public static long $noinline$rotate_long_right_reg_v_negv(long value, int distance) { in $noinline$rotate_long_right_reg_v_negv() argument
172 return (value >>> distance) | (value << -distance); in $noinline$rotate_long_right_reg_v_negv()
191 public static int $noinline$rotate_int_left_reg_negv_v(int value, int distance) { in $noinline$rotate_int_left_reg_negv_v() argument
195 return (value >>> -distance) | (value << distance); in $noinline$rotate_int_left_reg_negv_v()
214 public static long $noinline$rotate_long_left_reg_negv_v(long value, int distance) { in $noinline$rotate_long_left_reg_negv_v() argument
218 return (value >>> -distance) | (value << distance); in $noinline$rotate_long_left_reg_negv_v()
237 public static int $noinline$rotate_int_right_constant_0(int value) { in $noinline$rotate_int_right_constant_0() argument
241 return (value >>> 0) | (value << 0); in $noinline$rotate_int_right_constant_0()
244 public static int $noinline$rotate_int_right_constant_1(int value) { in $noinline$rotate_int_right_constant_1() argument
248 return (value >>> 1) | (value << -1); in $noinline$rotate_int_right_constant_1()
251 public static int $noinline$rotate_int_right_constant_m1(int value) { in $noinline$rotate_int_right_constant_m1() argument
255 return (value >>> -1) | (value << 1); in $noinline$rotate_int_right_constant_m1()
258 public static int $noinline$rotate_int_right_constant_16(int value) { in $noinline$rotate_int_right_constant_16() argument
262 return (value >>> 16) | (value << -16); in $noinline$rotate_int_right_constant_16()
272 public static long $noinline$rotate_long_right_constant_0(long value) { in $noinline$rotate_long_right_constant_0() argument
276 return (value >>> 0) | (value << 0); in $noinline$rotate_long_right_constant_0()
279 public static long $noinline$rotate_long_right_constant_1(long value) { in $noinline$rotate_long_right_constant_1() argument
283 return (value >>> 1) | (value << -1); in $noinline$rotate_long_right_constant_1()
286 public static long $noinline$rotate_long_right_constant_m1(long value) { in $noinline$rotate_long_right_constant_m1() argument
290 return (value >>> -1) | (value << 1); in $noinline$rotate_long_right_constant_m1()
293 public static long $noinline$rotate_long_right_constant_16(long value) { in $noinline$rotate_long_right_constant_16() argument
297 return (value >>> 16) | (value << -16); in $noinline$rotate_long_right_constant_16()
300 public static long $noinline$rotate_long_right_constant_32(long value) { in $noinline$rotate_long_right_constant_32() argument
304 return (value >>> 32) | (value << -32); in $noinline$rotate_long_right_constant_32()
307 public static long $noinline$rotate_long_right_constant_48(long value) { in $noinline$rotate_long_right_constant_48() argument
311 return (value >>> 48) | (value << -48); in $noinline$rotate_long_right_constant_48()
314 public static long $noinline$rotate_long_right_constant_64(long value) { in $noinline$rotate_long_right_constant_64() argument
318 return (value >>> 64) | (value << -64); in $noinline$rotate_long_right_constant_64()
330 public static int $noinline$rotate_int_left_constant_0(int value) { in $noinline$rotate_int_left_constant_0() argument
334 return (value << 0) | (value >>> 0); in $noinline$rotate_int_left_constant_0()
337 public static int $noinline$rotate_int_left_constant_1(int value) { in $noinline$rotate_int_left_constant_1() argument
341 return (value << 1) | (value >>> -1); in $noinline$rotate_int_left_constant_1()
344 public static int $noinline$rotate_int_left_constant_m1(int value) { in $noinline$rotate_int_left_constant_m1() argument
348 return (value << -1) | (value >>> 1); in $noinline$rotate_int_left_constant_m1()
351 public static int $noinline$rotate_int_left_constant_16(int value) { in $noinline$rotate_int_left_constant_16() argument
355 return (value << 16) | (value >>> -16); in $noinline$rotate_int_left_constant_16()
365 public static long $noinline$rotate_long_left_constant_0(long value) { in $noinline$rotate_long_left_constant_0() argument
369 return (value << 0) | (value >>> 0); in $noinline$rotate_long_left_constant_0()
372 public static long $noinline$rotate_long_left_constant_1(long value) { in $noinline$rotate_long_left_constant_1() argument
376 return (value << 1) | (value >>> -1); in $noinline$rotate_long_left_constant_1()
379 public static long $noinline$rotate_long_left_constant_m1(long value) { in $noinline$rotate_long_left_constant_m1() argument
383 return (value << -1) | (value >>> 1); in $noinline$rotate_long_left_constant_m1()
386 public static long $noinline$rotate_long_left_constant_16(long value) { in $noinline$rotate_long_left_constant_16() argument
390 return (value << 16) | (value >>> -16); in $noinline$rotate_long_left_constant_16()
393 public static long $noinline$rotate_long_left_constant_32(long value) { in $noinline$rotate_long_left_constant_32() argument
397 return (value << 32) | (value >>> -32); in $noinline$rotate_long_left_constant_32()
400 public static long $noinline$rotate_long_left_constant_48(long value) { in $noinline$rotate_long_left_constant_48() argument
404 return (value << 48) | (value >>> -48); in $noinline$rotate_long_left_constant_48()
407 public static long $noinline$rotate_long_left_constant_64(long value) { in $noinline$rotate_long_left_constant_64() argument
411 return (value << 64) | (value >>> -64); in $noinline$rotate_long_left_constant_64()