• Home
  • Raw
  • Download

Lines Matching refs:distance

46   public static int rotateIntegerRight(int value, int distance) {  in rotateIntegerRight()  argument
47 return java.lang.Integer.rotateRight(value, distance); in rotateIntegerRight()
66 public static int rotateIntegerLeft(int value, int distance) { in rotateIntegerLeft() argument
67 return java.lang.Integer.rotateLeft(value, distance); in rotateIntegerLeft()
85 public static long rotateLongRight(long value, int distance) { in rotateLongRight() argument
86 return java.lang.Long.rotateRight(value, distance); in rotateLongRight()
105 public static long rotateLongLeft(long value, int distance) { in rotateLongLeft() argument
106 return java.lang.Long.rotateLeft(value, distance); in rotateLongLeft()
250 public static int ror_int_reg_v_csubv(int value, int distance) { in ror_int_reg_v_csubv() argument
251 return (value >>> distance) | (value << (32 - distance)); in ror_int_reg_v_csubv()
285 int distance = x - y; in ror_int_subv_csubv() local
286 return (value >>> distance) | (value << (32 - distance)); in ror_int_subv_csubv()
317 int distance = x - y; in ror_int_subv_csubv_env() local
318 int bits_minus_dist = 32 - distance; in ror_int_subv_csubv_env()
319 return ((value >>> distance) | (value << bits_minus_dist)) + bits_minus_dist; in ror_int_subv_csubv_env()
344 public static long ror_long_reg_v_csubv(long value, int distance) { in ror_long_reg_v_csubv() argument
345 return (value >>> distance) | (value << (64 - distance)); in ror_long_reg_v_csubv()
350 public static long ror_long_reg_v_csubv_0(long value, int distance) { in ror_long_reg_v_csubv_0() argument
351 return (value >>> distance) | (value << (32 - distance)); in ror_long_reg_v_csubv_0()
357 int distance = x - y; in ror_long_subv_csubv_0() local
358 return (value >>> distance) | (value << (32 - distance)); in ror_long_subv_csubv_0()
384 public static int rol_int_reg_csubv_v(int value, int distance) { in rol_int_reg_csubv_v() argument
385 return (value >>> (32 - distance)) | (value << distance); in rol_int_reg_csubv_v()
421 int distance = x - y; in rol_int_csubv_subv() local
422 return (value >>> (32 - distance)) | (value << distance); in rol_int_csubv_subv()
448 public static long rol_long_reg_csubv_v(long value, int distance) { in rol_long_reg_csubv_v() argument
449 return (value >>> (64 - distance)) | (value << distance); in rol_long_reg_csubv_v()
454 public static long rol_long_reg_csubv_v_0(long value, int distance) { in rol_long_reg_csubv_v_0() argument
455 return (value >>> (32 - distance)) | (value << distance); in rol_long_reg_csubv_v_0()
479 public static int ror_int_reg_v_negv(int value, int distance) { in ror_int_reg_v_negv() argument
480 return (value >>> distance) | (value << -distance); in ror_int_reg_v_negv()
503 public static int ror_int_reg_v_negv_env(int value, int distance) { in ror_int_reg_v_negv_env() argument
504 int neg_distance = -distance; in ror_int_reg_v_negv_env()
505 return ((value >>> distance) | (value << neg_distance)) + neg_distance; in ror_int_reg_v_negv_env()
529 public static long ror_long_reg_v_negv(long value, int distance) { in ror_long_reg_v_negv() argument
530 return (value >>> distance) | (value << -distance); in ror_long_reg_v_negv()
554 public static int rol_int_reg_negv_v(int value, int distance) { in rol_int_reg_negv_v() argument
555 return (value << distance) | (value >>> -distance); in rol_int_reg_negv_v()
579 public static long rol_long_reg_negv_v(long value, int distance) { in rol_long_reg_negv_v() argument
580 return (value << distance) | (value >>> -distance); in rol_long_reg_negv_v()
605 public static long rol_long_reg_v_negv_add(long value, int distance) { in rol_long_reg_v_negv_add() argument
606 return (value << distance) + (value >>> -distance); in rol_long_reg_v_negv_add()
631 public static long rol_long_reg_v_negv_xor(long value, int distance) { in rol_long_reg_v_negv_xor() argument
632 return (value << distance) ^ (value >>> -distance); in rol_long_reg_v_negv_xor()