Lines Matching refs:U8TO32_LE
19 #define U8TO32_LE(p) \ macro
48 t0 = U8TO32_LE(key+0); in poly1305_auth()
49 t1 = U8TO32_LE(key+4); in poly1305_auth()
50 t2 = U8TO32_LE(key+8); in poly1305_auth()
51 t3 = U8TO32_LE(key+12); in poly1305_auth()
78 t0 = U8TO32_LE(m-16); in poly1305_auth()
79 t1 = U8TO32_LE(m-12); in poly1305_auth()
80 t2 = U8TO32_LE(m-8); in poly1305_auth()
81 t3 = U8TO32_LE(m-4); in poly1305_auth()
115 t0 = U8TO32_LE(mp+0); in poly1305_auth()
116 t1 = U8TO32_LE(mp+4); in poly1305_auth()
117 t2 = U8TO32_LE(mp+8); in poly1305_auth()
118 t3 = U8TO32_LE(mp+12); in poly1305_auth()
151 f0 = ((h0 ) | (h1 << 26)) + (uint64_t)U8TO32_LE(&key[16]); in poly1305_auth()
152 f1 = ((h1 >> 6) | (h2 << 20)) + (uint64_t)U8TO32_LE(&key[20]); in poly1305_auth()
153 f2 = ((h2 >> 12) | (h3 << 14)) + (uint64_t)U8TO32_LE(&key[24]); in poly1305_auth()
154 f3 = ((h3 >> 18) | (h4 << 8)) + (uint64_t)U8TO32_LE(&key[28]); in poly1305_auth()