Home
last modified time | relevance | path

Searched defs:U8TOU32 (Results 1 – 3 of 3) sorted by relevance

/freebsd/crypto/openssl/crypto/poly1305/
H A Dpoly1305_ieee754.c70 # define U8TOU32(p) (*(const u32 *)(p)) macro
73 # define U8TOU32(p) ({u32 ret; asm ("lwbrx %0,0,%1":"=r"(ret):"b"(p)); ret; }) macro
76 # define U8TOU32(p) ({u32 ret; asm ("lrv %0,%1":"=d"(ret):"m"(*(u32 *)(p))); ret; }) macro
81 # define U8TOU32(p) ((u32)(p)[0] | (u32)(p)[1]<<8 | \ macro
H A Dpoly1305.c22 static unsigned int U8TOU32(const unsigned char *p) in U8TOU32() function
/freebsd/sys/crypto/openssl/
H A Dossl_poly1305.c24 static unsigned int U8TOU32(const unsigned char *p) in U8TOU32() function