Lines Matching refs:U8TO32_LE
13 #define U8TO32_LE(p) \ macro
45 t0 = U8TO32_LE(key + 0); in poly1305_auth()
46 t1 = U8TO32_LE(key + 4); in poly1305_auth()
47 t2 = U8TO32_LE(key + 8); in poly1305_auth()
48 t3 = U8TO32_LE(key + 12); in poly1305_auth()
77 t0 = U8TO32_LE(m - 16); in poly1305_auth()
78 t1 = U8TO32_LE(m - 12); in poly1305_auth()
79 t2 = U8TO32_LE(m - 8); in poly1305_auth()
80 t3 = U8TO32_LE(m - 4); in poly1305_auth()
127 t0 = U8TO32_LE(mp + 0); in poly1305_auth()
128 t1 = U8TO32_LE(mp + 4); in poly1305_auth()
129 t2 = U8TO32_LE(mp + 8); in poly1305_auth()
130 t3 = U8TO32_LE(mp + 12); in poly1305_auth()
163 f0 = ((h0 ) | (h1 << 26)) + (uint64_t)U8TO32_LE(&key[16]); in poly1305_auth()
164 f1 = ((h1 >> 6) | (h2 << 20)) + (uint64_t)U8TO32_LE(&key[20]); in poly1305_auth()
165 f2 = ((h2 >> 12) | (h3 << 14)) + (uint64_t)U8TO32_LE(&key[24]); in poly1305_auth()
166 f3 = ((h3 >> 18) | (h4 << 8)) + (uint64_t)U8TO32_LE(&key[28]); in poly1305_auth()