HomeSort by relevance Sort by last modified time
    Searched defs:rotateLeft (Results 1 - 25 of 48) sorted by null

1 2

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
MD5Digest.java 168 private int rotateLeft(
220 a = rotateLeft(a + F(b, c, d) + X[ 0] + 0xd76aa478, S11) + b;
221 d = rotateLeft(d + F(a, b, c) + X[ 1] + 0xe8c7b756, S12) + a;
222 c = rotateLeft(c + F(d, a, b) + X[ 2] + 0x242070db, S13) + d;
223 b = rotateLeft(b + F(c, d, a) + X[ 3] + 0xc1bdceee, S14) + c;
224 a = rotateLeft(a + F(b, c, d) + X[ 4] + 0xf57c0faf, S11) + b;
225 d = rotateLeft(d + F(a, b, c) + X[ 5] + 0x4787c62a, S12) + a;
226 c = rotateLeft(c + F(d, a, b) + X[ 6] + 0xa8304613, S13) + d;
227 b = rotateLeft(b + F(c, d, a) + X[ 7] + 0xfd469501, S14) + c;
228 a = rotateLeft(a + F(b, c, d) + X[ 8] + 0x698098d8, S11) + b
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/kde/
md5-1.js 193 function rotateLeft(a,n) {
199 a = rotateLeft(a, s);
206 a = rotateLeft(a, s);
213 a = rotateLeft(a, s);
220 a = rotateLeft(a, s);
  /libcore/luni/src/main/java/java/lang/
Integer.java 661 public static int rotateLeft(int i, int distance) {
Long.java 679 public static long rotateLeft(long v, int distance) {
  /external/chromium_org/third_party/skia/src/gpu/
GrRedBlackTree.h 153 void rotateLeft(Node* n);
450 rotateLeft(p);
477 rotateLeft(gp);
524 void GrRedBlackTree<T,C>::rotateLeft(Node* n) {
705 rotateLeft(p);
776 rotateLeft(s);
794 rotateLeft(p);
  /external/skia/src/gpu/
GrRedBlackTree.h 153 void rotateLeft(Node* n);
450 rotateLeft(p);
477 rotateLeft(gp);
524 void GrRedBlackTree<T,C>::rotateLeft(Node* n) {
705 rotateLeft(p);
776 rotateLeft(s);
794 rotateLeft(p);
  /libcore/luni/src/main/java/java/util/
TreeMap.java 475 rotateLeft(node); // AVL right right
479 rotateLeft(node);
496 rotateLeft(left); // AVL left right
522 private void rotateLeft(Node<K, V> root) {
    [all...]