Home
last modified time | relevance | path

Searched refs:U32TO8_LE (Results 1 – 2 of 2) sorted by relevance

/external/openssh/
Dpoly1305.c25 #define U32TO8_LE(p, v) \ macro
156 U32TO8_LE(&out[ 0], f0); f1 += (f0 >> 32); in poly1305_auth()
157 U32TO8_LE(&out[ 4], f1); f2 += (f1 >> 32); in poly1305_auth()
158 U32TO8_LE(&out[ 8], f2); f3 += (f2 >> 32); in poly1305_auth()
159 U32TO8_LE(&out[12], f3); in poly1305_auth()
/external/boringssl/src/crypto/poly1305/
Dpoly1305.c38 static void U32TO8_LE(uint8_t *m, uint32_t v) { in U32TO8_LE() function
309 U32TO8_LE(&mac[0], f0); in CRYPTO_poly1305_finish()
311 U32TO8_LE(&mac[4], f1); in CRYPTO_poly1305_finish()
313 U32TO8_LE(&mac[8], f2); in CRYPTO_poly1305_finish()
315 U32TO8_LE(&mac[12], f3); in CRYPTO_poly1305_finish()