Searched refs:U32TO8_LE (Results 1 – 3 of 3) sorted by relevance
/freebsd/crypto/openssh/ |
H A D | poly1305.c | 24 #define U32TO8_LE(p, v) \ macro 155 U32TO8_LE(&out[ 0], f0); f1 += (f0 >> 32); in poly1305_auth() 156 U32TO8_LE(&out[ 4], f1); f2 += (f1 >> 32); in poly1305_auth() 157 U32TO8_LE(&out[ 8], f2); f3 += (f2 >> 32); in poly1305_auth() 158 U32TO8_LE(&out[12], f3); in poly1305_auth()
|
/freebsd/contrib/unbound/util/ |
H A D | siphash.c | 40 #define U32TO8_LE(p, v) \ macro 47 U32TO8_LE((p), (uint32_t)((v))); \ 48 U32TO8_LE((p) + 4, (uint32_t)((v) >> 32));
|
/freebsd/crypto/openssl/crypto/siphash/ |
H A D | siphash.c | 34 #define U32TO8_LE(p, v) \ macro 41 U32TO8_LE((p), (uint32_t)((v))); \ 42 U32TO8_LE((p) + 4, (uint32_t)((v) >> 32));
|