Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/digest/
H A Dripemd.d89 private uint rotateLeft(uint x, uint n) @safe pure nothrow @nogc in rotateLeft() function
135 a = rotateLeft(a, s) + e; in FF()
136 c = rotateLeft(c, 10); in FF()
143 a = rotateLeft(a, s) + e; in GG()
144 c = rotateLeft(c, 10); in GG()
151 a = rotateLeft(a, s) + e; in HH()
152 c = rotateLeft(c, 10); in HH()
159 a = rotateLeft(a, s) + e; in II()
160 c = rotateLeft(c, 10); in II()
167 a = rotateLeft(a, s) + e; in JJ()
[all …]
H A Dsha.d171 private uint rotateLeft(uint x, uint n) @safe pure nothrow @nogc in rotateLeft() function
396 T = Ch(B, C, D) + E + rotateLeft(A, 5) + Wi + 0x5a827999; in SHA()
397 B = rotateLeft(B, 30); in SHA()
403 W[i&15] = rotateLeft(W[(i-3)&15] ^ W[(i-8)&15] ^ W[(i-14)&15] ^ W[(i-16)&15], 1); in SHA()
404 T = Ch(B, C, D) + E + rotateLeft(A, 5) + W[i&15] + 0x5a827999; in SHA()
405 B = rotateLeft(B, 30); in SHA()
411 W[i&15] = rotateLeft(W[(i-3)&15] ^ W[(i-8)&15] ^ W[(i-14)&15] ^ W[(i-16)&15], 1); in SHA()
412 T = Parity(B, C, D) + E + rotateLeft(A, 5) + W[i&15] + 0x6ed9eba1; in SHA()
413 B = rotateLeft(B, 30); in SHA()
419 W[i&15] = rotateLeft(W[(i-3)&15] ^ W[(i-8)&15] ^ W[(i-14)&15] ^ W[(i-16)&15], 1); in SHA()
[all …]
H A Dmd.d85 private uint rotateLeft(uint x, uint n) @safe pure nothrow @nogc in rotateLeft() function
129 a = rotateLeft(a, s); in FF()
137 a = rotateLeft(a, s); in GG()
145 a = rotateLeft(a, s); in HH()
153 a = rotateLeft(a, s); in II()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonConstExtenders.cpp165 Node *rotateLeft(Node *Lower, Node *Higher);
185 return rotateLeft(N->Right, N); in rebalance()
664 RangeTree::Node *RangeTree::rotateLeft(Node *Lower, Node *Higher) { in rotateLeft() function in RangeTree
685 Lower = rotateLeft(Lower->Right, Lower); in rotateRight()