/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/ |
D | MD5Digest.java | 159 private int rotateLeft( in rotateLeft() method in MD5Digest 211 a = rotateLeft(a + F(b, c, d) + X[ 0] + 0xd76aa478, S11) + b; in processBlock() 212 d = rotateLeft(d + F(a, b, c) + X[ 1] + 0xe8c7b756, S12) + a; in processBlock() 213 c = rotateLeft(c + F(d, a, b) + X[ 2] + 0x242070db, S13) + d; in processBlock() 214 b = rotateLeft(b + F(c, d, a) + X[ 3] + 0xc1bdceee, S14) + c; in processBlock() 215 a = rotateLeft(a + F(b, c, d) + X[ 4] + 0xf57c0faf, S11) + b; in processBlock() 216 d = rotateLeft(d + F(a, b, c) + X[ 5] + 0x4787c62a, S12) + a; in processBlock() 217 c = rotateLeft(c + F(d, a, b) + X[ 6] + 0xa8304613, S13) + d; in processBlock() 218 b = rotateLeft(b + F(c, d, a) + X[ 7] + 0xfd469501, S14) + c; in processBlock() 219 a = rotateLeft(a + F(b, c, d) + X[ 8] + 0x698098d8, S11) + b; in processBlock() [all …]
|
/external/guava/guava/src/com/google/common/hash/ |
D | Murmur3_128HashFunction.java | 68 k1 = Long.rotateLeft(k1, 31); in bmix64() 72 h1 = Long.rotateLeft(h1, 27); in bmix64() 77 k2 = Long.rotateLeft(k2, 33); in bmix64() 81 h2 = Long.rotateLeft(h2, 31); in bmix64() 106 k2 = Long.rotateLeft(k2, 33); in processRemaining() 127 k1 = Long.rotateLeft(k1, 31); in processRemaining()
|
D | Murmur3_32HashFunction.java | 60 k1 = Integer.rotateLeft(k1, 15); in process() 64 h1 = Integer.rotateLeft(h1, 13); in process() 83 k1 = Integer.rotateLeft(k1, 15); in processRemaining()
|
/external/webkit/Source/JavaScriptCore/wtf/ |
D | SHA1.cpp | 105 static inline uint32_t rotateLeft(int n, uint32_t x) in rotateLeft() function 179 w[t] = rotateLeft(1, w[t - 3] ^ w[t - 8] ^ w[t - 14] ^ w[t - 16]); in processBlock() 188 uint32_t temp = rotateLeft(5, a) + f(t, b, c, d) + e + w[t] + k(t); in processBlock() 191 c = rotateLeft(30, b); in processBlock()
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
D | LongTest.java | 983 assertEquals(0xF, Long.rotateLeft(0xF, 0)); in test_rotateLeftJI() 984 assertEquals(0xF0, Long.rotateLeft(0xF, 4)); in test_rotateLeftJI() 985 assertEquals(0xF00, Long.rotateLeft(0xF, 8)); in test_rotateLeftJI() 986 assertEquals(0xF000, Long.rotateLeft(0xF, 12)); in test_rotateLeftJI() 987 assertEquals(0xF0000, Long.rotateLeft(0xF, 16)); in test_rotateLeftJI() 988 assertEquals(0xF00000, Long.rotateLeft(0xF, 20)); in test_rotateLeftJI() 989 assertEquals(0xF000000, Long.rotateLeft(0xF, 24)); in test_rotateLeftJI() 990 assertEquals(0xF0000000L, Long.rotateLeft(0xF, 28)); in test_rotateLeftJI() 991 assertEquals(0xF000000000000000L, Long.rotateLeft(0xF000000000000000L, 64)); in test_rotateLeftJI()
|
D | IntegerTest.java | 1149 assertEquals(0xF, Integer.rotateLeft(0xF, 0)); in test_rotateLeftII() 1150 assertEquals(0xF0, Integer.rotateLeft(0xF, 4)); in test_rotateLeftII() 1151 assertEquals(0xF00, Integer.rotateLeft(0xF, 8)); in test_rotateLeftII() 1152 assertEquals(0xF000, Integer.rotateLeft(0xF, 12)); in test_rotateLeftII() 1153 assertEquals(0xF0000, Integer.rotateLeft(0xF, 16)); in test_rotateLeftII() 1154 assertEquals(0xF00000, Integer.rotateLeft(0xF, 20)); in test_rotateLeftII() 1155 assertEquals(0xF000000, Integer.rotateLeft(0xF, 24)); in test_rotateLeftII() 1156 assertEquals(0xF0000000, Integer.rotateLeft(0xF, 28)); in test_rotateLeftII() 1157 assertEquals(0xF0000000, Integer.rotateLeft(0xF0000000, 32)); in test_rotateLeftII()
|
/external/skia/src/gpu/ |
D | GrRedBlackTree.h | 151 void rotateLeft(Node* n); 448 rotateLeft(p); in insert() 475 rotateLeft(gp); in insert() 522 void GrRedBlackTree<T,C>::rotateLeft(Node* n) { in rotateLeft() function 703 rotateLeft(p); in deleteAtNode() 774 rotateLeft(s); in deleteAtNode() 792 rotateLeft(p); in deleteAtNode()
|
/external/jmonkeyengine/engine/src/android/com/jme3/util/ |
D | FastInteger.java | 245 public static int rotateLeft(int i, int distance) { in rotateLeft() method
|
/external/proguard/src/proguard/gui/ |
D | default.pro | 134 public static int rotateLeft(int,int); 159 public static long rotateLeft(long,int);
|
D | boilerplate.pro | 197 public static int rotateLeft(int,int); 223 public static long rotateLeft(long,int);
|
/external/skia/legacy/src/ports/ |
D | SkFontHost_mac_coretext.cpp | 675 CGAffineTransform rotateLeft = CGAffineTransformMake(0, -1, 1, 0, 0, 0); in SkScalerContext_Mac() local 676 transform = CGAffineTransformConcat(rotateLeft, transform); in SkScalerContext_Mac()
|
/external/skia/src/ports/ |
D | SkFontHost_mac_coretext.cpp | 694 CGAffineTransform rotateLeft = CGAffineTransformMake(0, -1, 1, 0, 0, 0); in SkScalerContext_Mac() local 695 transform = CGAffineTransformConcat(rotateLeft, transform); in SkScalerContext_Mac()
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog | 6189 (WTF::rotateLeft):
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2002-12-03 | 17478 (KWQMapImpl::rotateRight), (KWQMapImpl::rotateLeft),
|