Home
last modified time | relevance | path

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

/third_party/openssl/crypto/poly1305/
Dpoly1305_base2_44.c32 static u64 U8TOU64(const unsigned char *p) in U8TOU64() function
67 r0 = U8TOU64(&key[0]) & 0x0ffffffc0fffffff; in poly1305_init()
68 r1 = U8TOU64(&key[8]) & 0x0ffffffc0ffffffc; in poly1305_init()
105 m0 = U8TOU64(inp + 0); in poly1305_blocks()
106 m1 = U8TOU64(inp + 8); in poly1305_blocks()
Dpoly1305.c110 static u64 U8TOU64(const unsigned char *p) in U8TOU64() function
145 st->r[0] = U8TOU64(&key[0]) & 0x0ffffffc0fffffff; in poly1305_init()
146 st->r[1] = U8TOU64(&key[8]) & 0x0ffffffc0ffffffc; in poly1305_init()
169 h0 = (u64)(d0 = (u128)h0 + U8TOU64(inp + 0)); in poly1305_blocks()
170 h1 = (u64)(d1 = (u128)h1 + (d0 >> 64) + U8TOU64(inp + 8)); in poly1305_blocks()