HomeSort by relevance Sort by last modified time
    Searched refs:rotateRight (Results 1 - 25 of 158) sorted by null

1 2 3 4 5 6 7

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Integers.java 13 public static int rotateRight(int i, int distance)
15 return Integer.rotateRight(i, distance);
  /art/test/950-redefine-intrinsic/src/
RedefinedLongIntrinsics.java 52 public static long rotateRight(long i, int distance) {
Main.java 70 // public static long rotateRight(long i, int distance) {
447 li2l("rotateRight", r, Long::rotateRight, RedefinedLongIntrinsics::rotateRight),
  /external/annotation-tools/scene-lib/src/annotations/io/
ASTRecord.java 120 : Integer.rotateRight(className.hashCode(), 3))
122 : Integer.rotateRight(methodName.hashCode(), 6))
124 : Integer.rotateRight(varName.hashCode(), 9))
126 : Integer.rotateRight(astPath.hashCode(), 12));
ASTPath.java 258 return Integer.rotateRight(base, shift);
415 hash = Integer.rotateRight(hash ^ s.peek().hashCode(), 1);
    [all...]
  /art/test/565-checker-rotate/src/
Main.java 219 return Integer.rotateRight(value ? 1 : 0, distance);
239 return Integer.rotateRight(value, distance);
259 return Integer.rotateRight(value, distance);
279 return Integer.rotateRight(value, distance);
299 return Integer.rotateRight(value, distance);
319 return Long.rotateRight(value, distance);
361 return Integer.rotateRight(value, distance);
  /art/test/557-checker-instruct-simplifier-ror/src/
Main.java 47 return java.lang.Integer.rotateRight(value, distance);
86 return java.lang.Long.rotateRight(value, distance);
458 // (i >>> distance) | (i << -distance) (i.e. libcore's Integer.rotateRight)
508 // (j >>> distance) | (j << -distance) (i.e. libcore's Long.rotateRight)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
HardwareUiLayout.java 169 rotateRight();
196 private void rotateRight() {
197 rotateRight(this);
198 rotateRight(mChild);
304 private void rotateRight(View v) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
IntegerTest.java     [all...]
LongTest.java     [all...]
  /art/test/988-method-trace/src/art/
Test988Intrinsics.java 66 java.lang.Integer.rotateRight(0, 0);
77 java.lang.Long.rotateRight(0L, 0);
  /prebuilts/go/darwin-x86/src/runtime/
mgclarge.go 157 root.rotateRight(t.parent)
175 root.rotateRight(t)
290 // rotateRight rotates the tree rooted at node y.
292 func (root *mTreap) rotateRight(y *treapNode) {
320 throw("large span treap rotateRight")
sema.go 288 root.rotateRight(s.parent)
347 root.rotateRight(s)
407 // rotateRight rotates the tree rooted at node y.
409 func (root *semaRoot) rotateRight(y *sudog) {
437 throw("semaRoot rotateRight")
  /prebuilts/go/linux-x86/src/runtime/
mgclarge.go 157 root.rotateRight(t.parent)
175 root.rotateRight(t)
290 // rotateRight rotates the tree rooted at node y.
292 func (root *mTreap) rotateRight(y *treapNode) {
320 throw("large span treap rotateRight")
sema.go 288 root.rotateRight(s.parent)
347 root.rotateRight(s)
407 // rotateRight rotates the tree rooted at node y.
409 func (root *semaRoot) rotateRight(y *sudog) {
437 throw("semaRoot rotateRight")
  /art/test/082-inline-execute/src/
Main.java     [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ChildHelper.java 480 final long after = Long.rotateRight(mData & ~mask, 1);
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
ChildHelper.java 480 final long after = Long.rotateRight(mData & ~mask, 1);
  /external/guava/guava/src/com/google/common/collect/
TreeMultiset.java 849 right = right.rotateRight();
856 return rotateRight();
879 private AvlNode<E> rotateRight() {
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
TreeMultiset.java 845 right = right.rotateRight();
852 return rotateRight();
875 private AvlNode<E> rotateRight() {
  /packages/apps/Gallery/src/com/android/camera/
MenuHelper.java 609 MenuItem rotateRight = rotateSubmenu.add(R.string.rotate_right)
619 requiresWriteAccessItems.add(rotateRight);
623 requiresImageItems.add(rotateRight);
    [all...]
  /libcore/ojluni/src/main/java/java/util/
HashMap.java     [all...]
TreeMap.java     [all...]
  /libcore/ojluni/src/main/java/java/lang/
Integer.java     [all...]
Long.java     [all...]

Completed in 1743 milliseconds

1 2 3 4 5 6 7