Symbol: U8TOU32
crypto/openssl/crypto/poly1305/poly1305.c
269
st->r[0] = U8TOU32(&key[0]) & 0x0fffffff;
crypto/openssl/crypto/poly1305/poly1305.c
270
st->r[1] = U8TOU32(&key[4]) & 0x0ffffffc;
crypto/openssl/crypto/poly1305/poly1305.c
271
st->r[2] = U8TOU32(&key[8]) & 0x0ffffffc;
crypto/openssl/crypto/poly1305/poly1305.c
272
st->r[3] = U8TOU32(&key[12]) & 0x0ffffffc;
crypto/openssl/crypto/poly1305/poly1305.c
301
h0 = (u32)(d0 = (u64)h0 + U8TOU32(inp + 0));
crypto/openssl/crypto/poly1305/poly1305.c
302
h1 = (u32)(d1 = (u64)h1 + (d0 >> 32) + U8TOU32(inp + 4));
crypto/openssl/crypto/poly1305/poly1305.c
303
h2 = (u32)(d2 = (u64)h2 + (d1 >> 32) + U8TOU32(inp + 8));
crypto/openssl/crypto/poly1305/poly1305.c
304
h3 = (u32)(d3 = (u64)h3 + (d2 >> 32) + U8TOU32(inp + 12));
crypto/openssl/crypto/poly1305/poly1305.c
406
ctx->nonce[0] = U8TOU32(&key[16]);
crypto/openssl/crypto/poly1305/poly1305.c
407
ctx->nonce[1] = U8TOU32(&key[20]);
crypto/openssl/crypto/poly1305/poly1305.c
408
ctx->nonce[2] = U8TOU32(&key[24]);
crypto/openssl/crypto/poly1305/poly1305.c
409
ctx->nonce[3] = U8TOU32(&key[28]);
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
162
r0.u = EXP(52 + 0) | (U8TOU32(&key[0]) & 0x0fffffff);
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
163
r1.u = EXP(52 + 32) | (U8TOU32(&key[4]) & 0x0ffffffc);
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
164
r2.u = EXP(52 + 64) | (U8TOU32(&key[8]) & 0x0ffffffc);
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
165
r3.u = EXP(52 + 96) | (U8TOU32(&key[12]) & 0x0ffffffc);
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
290
in0.u = EXP(52 + 0) | U8TOU32(&inp[0]);
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
291
in1.u = EXP(52 + 32) | U8TOU32(&inp[4]);
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
292
in2.u = EXP(52 + 64) | U8TOU32(&inp[8]);
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
293
in3.u = EXP(52 + 96) | U8TOU32(&inp[12]) | pad;
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
309
in0.u = EXP(52 + 0) | U8TOU32(&inp[0]);
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
310
in1.u = EXP(52 + 32) | U8TOU32(&inp[4]);
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
311
in2.u = EXP(52 + 64) | U8TOU32(&inp[8]);
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
312
in3.u = EXP(52 + 96) | U8TOU32(&inp[12]) | pad;
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
83
#ifndef U8TOU32
sys/crypto/openssl/ossl_poly1305.c
51
ctx->nonce[0] = U8TOU32(&key[16]);
sys/crypto/openssl/ossl_poly1305.c
52
ctx->nonce[1] = U8TOU32(&key[20]);
sys/crypto/openssl/ossl_poly1305.c
53
ctx->nonce[2] = U8TOU32(&key[24]);
sys/crypto/openssl/ossl_poly1305.c
54
ctx->nonce[3] = U8TOU32(&key[28]);