Searched refs:QUARTERROUND (Results 1 – 2 of 2) sorted by relevance
| /netbsd/src/crypto/external/bsd/openssh/dist/ |
| D | chacha.c | 47 #define QUARTERROUND(a,b,c,d) \ macro 142 QUARTERROUND( x0, x4, x8,x12) in chacha_encrypt_bytes() 143 QUARTERROUND( x1, x5, x9,x13) in chacha_encrypt_bytes() 144 QUARTERROUND( x2, x6,x10,x14) in chacha_encrypt_bytes() 145 QUARTERROUND( x3, x7,x11,x15) in chacha_encrypt_bytes() 146 QUARTERROUND( x0, x5,x10,x15) in chacha_encrypt_bytes() 147 QUARTERROUND( x1, x6,x11,x12) in chacha_encrypt_bytes() 148 QUARTERROUND( x2, x7, x8,x13) in chacha_encrypt_bytes() 149 QUARTERROUND( x3, x4, x9,x14) in chacha_encrypt_bytes()
|
| /netbsd/src/lib/libc/gen/ |
| D | arc4random.c | 123 #define QUARTERROUND(a, b, c, d) do { \ macro 158 QUARTERROUND( x0, x4, x8,x12); in crypto_core() 159 QUARTERROUND( x1, x5, x9,x13); in crypto_core() 160 QUARTERROUND( x2, x6,x10,x14); in crypto_core() 161 QUARTERROUND( x3, x7,x11,x15); in crypto_core() 162 QUARTERROUND( x0, x5,x10,x15); in crypto_core() 163 QUARTERROUND( x1, x6,x11,x12); in crypto_core() 164 QUARTERROUND( x2, x7, x8,x13); in crypto_core() 165 QUARTERROUND( x3, x4, x9,x14); in crypto_core()
|