Lines Matching refs:u64
57 typedef unsigned long long u64; typedef
58 typedef union { double d; u64 u; } elem64;
99 static const u64 one = 1;
103 static const u64 fsr = 1ULL<<30;
148 u64 fsr_orig; in poly1305_init()
229 u64 pad = (u64)padbit<<32; in poly1305_blocks()
270 u64 fsr_orig; in poly1305_blocks()
433 u64 h0, h1, h2, h3, h4; in poly1305_emit()
435 u64 t; in poly1305_emit()
479 g0 = (u32)(t = (u64)g0 + nonce[0]); in poly1305_emit()
480 g1 = (u32)(t = (u64)g1 + (t >> 32) + nonce[1]); in poly1305_emit()
481 g2 = (u32)(t = (u64)g2 + (t >> 32) + nonce[2]); in poly1305_emit()
482 g3 = (u32)(t = (u64)g3 + (t >> 32) + nonce[3]); in poly1305_emit()