Searched refs:PLUS (Results 1 – 1 of 1) sorted by relevance
/picolibc-latest/newlib/libc/stdlib/ |
D | chacha_private.h | 59 #define PLUS(v,w) (U32V((v) + (w))) macro 60 #define PLUSONE(v) (PLUS((v),1)) 63 a = PLUS(a,b); d = ROTATE(XOR(d,a),16); \ 64 c = PLUS(c,d); b = ROTATE(XOR(b,c),12); \ 65 a = PLUS(a,b); d = ROTATE(XOR(d,a), 8); \ 66 c = PLUS(c,d); b = ROTATE(XOR(b,c), 7); 166 x0 = PLUS(x0,j0); in chacha_encrypt_bytes() 167 x1 = PLUS(x1,j1); in chacha_encrypt_bytes() 168 x2 = PLUS(x2,j2); in chacha_encrypt_bytes() 169 x3 = PLUS(x3,j3); in chacha_encrypt_bytes() [all …]
|