Home
last modified time | relevance | path

Searched refs:rotateLeft (Results 1 – 13 of 13) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
DMD5Digest.java186 private int rotateLeft( in rotateLeft() method in MD5Digest
238 a = rotateLeft(a + F(b, c, d) + X[ 0] + 0xd76aa478, S11) + b; in processBlock()
239 d = rotateLeft(d + F(a, b, c) + X[ 1] + 0xe8c7b756, S12) + a; in processBlock()
240 c = rotateLeft(c + F(d, a, b) + X[ 2] + 0x242070db, S13) + d; in processBlock()
241 b = rotateLeft(b + F(c, d, a) + X[ 3] + 0xc1bdceee, S14) + c; in processBlock()
242 a = rotateLeft(a + F(b, c, d) + X[ 4] + 0xf57c0faf, S11) + b; in processBlock()
243 d = rotateLeft(d + F(a, b, c) + X[ 5] + 0x4787c62a, S12) + a; in processBlock()
244 c = rotateLeft(c + F(d, a, b) + X[ 6] + 0xa8304613, S13) + d; in processBlock()
245 b = rotateLeft(b + F(c, d, a) + X[ 7] + 0xfd469501, S14) + c; in processBlock()
246 a = rotateLeft(a + F(b, c, d) + X[ 8] + 0x698098d8, S11) + b; in processBlock()
[all …]
/external/guava/guava/src/com/google/common/hash/
DSipHashFunction.java161 v1 = Long.rotateLeft(v1, 13); in sipRound()
162 v3 = Long.rotateLeft(v3, 16); in sipRound()
165 v0 = Long.rotateLeft(v0, 32); in sipRound()
168 v1 = Long.rotateLeft(v1, 17); in sipRound()
169 v3 = Long.rotateLeft(v3, 21); in sipRound()
172 v2 = Long.rotateLeft(v2, 32); in sipRound()
DMurmur3_128HashFunction.java103 h1 = Long.rotateLeft(h1, 27); in bmix64()
109 h2 = Long.rotateLeft(h2, 31); in bmix64()
190 k1 = Long.rotateLeft(k1, 31); in mixK1()
197 k2 = Long.rotateLeft(k2, 33); in mixK2()
DMurmur3_32HashFunction.java127 k1 = Integer.rotateLeft(k1, 15); in mixK1()
134 h1 = Integer.rotateLeft(h1, 13); in mixH1()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
DIntegers.java8 public static int rotateLeft(int i, int distance) in rotateLeft() method in Integers
10 return Integer.rotateLeft(i, distance); in rotateLeft()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/field/
DGenericPolynomialExtensionField.java60 ^ Integers.rotateLeft(minimalPolynomial.hashCode(), 16); in hashCode()
/external/guava/guava/src/com/google/common/collect/
DHashing.java47 return C2 * Integer.rotateLeft(hashCode * C1, 15); in smear()
DTreeMultiset.java851 return rotateLeft();
854 left = left.rotateLeft();
867 private AvlNode<E> rotateLeft() {
/external/guava/guava/src/com/google/common/base/
DSmallCharMatcher.java58 return C2 * Integer.rotateLeft(hashCode * C1, 15); in smear()
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DTreeMultiset.java847 return rotateLeft();
850 left = left.rotateLeft();
863 private AvlNode<E> rotateLeft() {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
DECCurve.java495 ^ Integers.rotateLeft(getA().toBigInteger().hashCode(), 8) in hashCode()
496 ^ Integers.rotateLeft(getB().toBigInteger().hashCode(), 16); in hashCode()
/external/proguard/src/proguard/gui/
Ddefault.pro134 public static int rotateLeft(int,int);
159 public static long rotateLeft(long,int);
Dboilerplate.pro197 public static int rotateLeft(int,int);
223 public static long rotateLeft(long,int);