Searched refs:U8TOU32 (Results 1 – 3 of 3) sorted by relevance
70 # define U8TOU32(p) (*(const u32 *)(p)) macro73 # define U8TOU32(p) ({u32 ret; asm ("lwbrx %0,0,%1":"=r"(ret):"b"(p)); ret; }) macro76 # define U8TOU32(p) ({u32 ret; asm ("lrv %0,%1":"=d"(ret):"m"(*(u32 *)(p))); ret; }) macro80 #ifndef U8TOU3281 # define U8TOU32(p) ((u32)(p)[0] | (u32)(p)[1]<<8 | \ macro160 r0.u = EXP(52+0) | (U8TOU32(&key[0]) & 0x0fffffff); in poly1305_init()161 r1.u = EXP(52+32) | (U8TOU32(&key[4]) & 0x0ffffffc); in poly1305_init()162 r2.u = EXP(52+64) | (U8TOU32(&key[8]) & 0x0ffffffc); in poly1305_init()163 r3.u = EXP(52+96) | (U8TOU32(&key[12]) & 0x0ffffffc); in poly1305_init()295 in0.u = EXP(52+0) | U8TOU32(&inp[0]); in poly1305_blocks()[all …]
22 static unsigned int U8TOU32(const unsigned char *p) in U8TOU32() function283 st->r[0] = U8TOU32(&key[0]) & 0x0fffffff; in poly1305_init()284 st->r[1] = U8TOU32(&key[4]) & 0x0ffffffc; in poly1305_init()285 st->r[2] = U8TOU32(&key[8]) & 0x0ffffffc; in poly1305_init()286 st->r[3] = U8TOU32(&key[12]) & 0x0ffffffc; in poly1305_init()315 h0 = (u32)(d0 = (u64)h0 + U8TOU32(inp + 0)); in poly1305_blocks()316 h1 = (u32)(d1 = (u64)h1 + (d0 >> 32) + U8TOU32(inp + 4)); in poly1305_blocks()317 h2 = (u32)(d2 = (u64)h2 + (d1 >> 32) + U8TOU32(inp + 8)); in poly1305_blocks()318 h3 = (u32)(d3 = (u64)h3 + (d2 >> 32) + U8TOU32(inp + 12)); in poly1305_blocks()435 ctx->nonce[0] = U8TOU32(&key[16]); in Poly1305_Init()[all …]
24 static unsigned int U8TOU32(const unsigned char *p) in U8TOU32() function51 ctx->nonce[0] = U8TOU32(&key[16]); in Poly1305_Init()52 ctx->nonce[1] = U8TOU32(&key[20]); in Poly1305_Init()53 ctx->nonce[2] = U8TOU32(&key[24]); in Poly1305_Init()54 ctx->nonce[3] = U8TOU32(&key[28]); in Poly1305_Init()