Searched refs:U32TO8_LE (Results 1 - 4 of 4) sorted by relevance
/third_party/libwebsockets/plugins/ssh-base/crypto/ |
H A D | poly1305.c | 19 #define U32TO8_LE(p, v) \ macro 168 U32TO8_LE(&out[ 0], f0); f1 += (f0 >> 32); in poly1305_auth() 169 U32TO8_LE(&out[ 4], f1); f2 += (f1 >> 32); in poly1305_auth() 170 U32TO8_LE(&out[ 8], f2); f3 += (f2 >> 32); in poly1305_auth() 171 U32TO8_LE(&out[12], f3); in poly1305_auth()
|
/third_party/eudev/src/shared/ |
H A D | siphash24.c | 29 #define U32TO8_LE(p, v) \ macro 34 U32TO8_LE((p), (u32)((v) )); \ 35 U32TO8_LE((p) + 4, (u32)((v) >> 32));
|
/third_party/node/deps/openssl/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));
|
/third_party/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));
|
Completed in 2 milliseconds