Lines Matching refs:u32
66 typedef unsigned int u32; typedef
88 poly1305_blocks(void *ctx, const unsigned char *inp, size_t len, u32 padbit);
148 poly1305_blocks(void *ctx, const unsigned char *inp, size_t len, u32 padbit) in poly1305_blocks()
214 const u32 nonce[4]) in poly1305_emit()
258 u32 h[5];
259 u32 r[4];
290 poly1305_blocks(void *ctx, const unsigned char *inp, size_t len, u32 padbit) in poly1305_blocks()
293 u32 r0, r1, r2, r3; in poly1305_blocks()
294 u32 s1, s2, s3; in poly1305_blocks()
295 u32 h0, h1, h2, h3, h4, c; in poly1305_blocks()
315 h0 = (u32)(d0 = (u64)h0 + U8TOU32(inp + 0)); in poly1305_blocks()
316 h1 = (u32)(d1 = (u64)h1 + (d0 >> 32) + U8TOU32(inp + 4)); in poly1305_blocks()
317 h2 = (u32)(d2 = (u64)h2 + (d1 >> 32) + U8TOU32(inp + 8)); in poly1305_blocks()
318 h3 = (u32)(d3 = (u64)h3 + (d2 >> 32) + U8TOU32(inp + 12)); in poly1305_blocks()
319 h4 += (u32)(d3 >> 32) + padbit; in poly1305_blocks()
345 h0 = (u32)d0; in poly1305_blocks()
346 h1 = (u32)(d1 += d0 >> 32); in poly1305_blocks()
347 h2 = (u32)(d2 += d1 >> 32); in poly1305_blocks()
348 h3 = (u32)(d3 += d2 >> 32); in poly1305_blocks()
349 h4 += (u32)(d3 >> 32); in poly1305_blocks()
380 const u32 nonce[4]) in poly1305_emit()
383 u32 h0, h1, h2, h3, h4; in poly1305_emit()
384 u32 g0, g1, g2, g3, g4; in poly1305_emit()
386 u32 mask; in poly1305_emit()
395 g0 = (u32)(t = (u64)h0 + 5); in poly1305_emit()
396 g1 = (u32)(t = (u64)h1 + (t >> 32)); in poly1305_emit()
397 g2 = (u32)(t = (u64)h2 + (t >> 32)); in poly1305_emit()
398 g3 = (u32)(t = (u64)h3 + (t >> 32)); in poly1305_emit()
399 g4 = h4 + (u32)(t >> 32); in poly1305_emit()
414 h0 = (u32)(t = (u64)h0 + nonce[0]); in poly1305_emit()
415 h1 = (u32)(t = (u64)h1 + (t >> 32) + nonce[1]); in poly1305_emit()
416 h2 = (u32)(t = (u64)h2 + (t >> 32) + nonce[2]); in poly1305_emit()
417 h3 = (u32)(t = (u64)h3 + (t >> 32) + nonce[3]); in poly1305_emit()