OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:leftrotate
(Results
1 - 2
of
2
) sorted by null
/external/boringssl/src/ssl/test/runner/
chacha20_poly1305.go
14
func
leftRotate
(a uint32, n uint) uint32 {
20
state[d] =
leftRotate
(state[d]^state[a], 16)
23
state[b] =
leftRotate
(state[b]^state[c], 12)
26
state[d] =
leftRotate
(state[d]^state[a], 8)
29
state[b] =
leftRotate
(state[b]^state[c], 7)
/external/deqp/framework/delibs/debase/
deSha1.c
36
static deUint32
leftRotate
(deUint32 val, deUint32 count)
67
stream->data[ndx] =
leftRotate
(stream->data[ndx - 3]
109
const deUint32 tmp =
leftRotate
(a, 5) + f + e + k + stream->data[ndx];
113
c =
leftRotate
(b, 30);
Completed in 71 milliseconds