Home
last modified time | relevance | path

Searched refs:U8TO32_LE (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/openssl/openssl/crypto/poly1305/
Dpoly1305.c65 static uint32_t U8TO32_LE(const unsigned char *m) in U8TO32_LE() function
77 static uint32_t U8TO32_LE(const unsigned char *m) in U8TO32_LE() function
140 t0 = U8TO32_LE(in); in poly1305_update()
141 t1 = U8TO32_LE(in+4); in poly1305_update()
142 t2 = U8TO32_LE(in+8); in poly1305_update()
143 t3 = U8TO32_LE(in+12); in poly1305_update()
203 t0 = U8TO32_LE(mp+0); in poly1305_update()
204 t1 = U8TO32_LE(mp+4); in poly1305_update()
205 t2 = U8TO32_LE(mp+8); in poly1305_update()
206 t3 = U8TO32_LE(mp+12); in poly1305_update()
[all …]
Dpoly1305_vec.c68 #define U8TO32_LE(m) (*(uint32_t*)(m)) macro
228 p->R23.d[1] = U8TO32_LE(key + 16); in CRYPTO_poly1305_init()
229 p->R23.d[3] = U8TO32_LE(key + 20); in CRYPTO_poly1305_init()
230 p->R24.d[1] = U8TO32_LE(key + 24); in CRYPTO_poly1305_init()
231 p->R24.d[3] = U8TO32_LE(key + 28); in CRYPTO_poly1305_init()
/external/chromium_org/third_party/openssl/openssl/patches/
Dchacha20poly1305.patch1708 +static uint32_t U8TO32_LE(const unsigned char *m)
1720 +static uint32_t U8TO32_LE(const unsigned char *m)
1772 + t0 = U8TO32_LE(in);
1773 + t1 = U8TO32_LE(in+4);
1774 + t2 = U8TO32_LE(in+8);
1775 + t3 = U8TO32_LE(in+12);
1835 + t0 = U8TO32_LE(mp+0);
1836 + t1 = U8TO32_LE(mp+4);
1837 + t2 = U8TO32_LE(mp+8);
1838 + t3 = U8TO32_LE(mp+12);
[all …]
Dneon_runtime.patch1047 t0 = U8TO32_LE(key+0);
1048 t1 = U8TO32_LE(key+4);
1049 t2 = U8TO32_LE(key+8);
/external/chromium_org/third_party/openssl/patches.chromium/
D0007-chacha.patch3306 ++static uint32_t U8TO32_LE(const unsigned char *m)
3318 ++static uint32_t U8TO32_LE(const unsigned char *m)
3370 ++ t0 = U8TO32_LE(in);
3371 ++ t1 = U8TO32_LE(in+4);
3372 ++ t2 = U8TO32_LE(in+8);
3373 ++ t3 = U8TO32_LE(in+12);
3433 ++ t0 = U8TO32_LE(mp+0);
3434 ++ t1 = U8TO32_LE(mp+4);
3435 ++ t2 = U8TO32_LE(mp+8);
3436 ++ t3 = U8TO32_LE(mp+12);
[all …]