Searched refs:md5_uint32 (Results 1 – 4 of 4) sorted by relevance
43 typedef uint32_t md5_uint32; typedef62 typedef unsigned int md5_uint32; typedef65 typedef unsigned short md5_uint32; typedef68 typedef unsigned long md5_uint32; typedef84 md5_uint32 A;85 md5_uint32 B;86 md5_uint32 C;87 md5_uint32 D;89 md5_uint32 total[2];90 md5_uint32 buflen;[all …]
89 ((md5_uint32 *) resbuf)[0] = SWAP (ctx->A);90 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B);91 ((md5_uint32 *) resbuf)[2] = SWAP (ctx->C);92 ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D);108 md5_uint32 bytes = ctx->buflen;120 *(md5_uint32 *) &ctx->buffer[bytes + pad] = SWAP (ctx->total[0] << 3);121 *(md5_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP ((ctx->total[1] << 3) |246 # define UNALIGNED_P(p) (((md5_uintptr) p) % __alignof__ (md5_uint32) != 0)248 # define UNALIGNED_P(p) (((md5_uintptr) p) % sizeof (md5_uint32) != 0)302 md5_uint32 correct_words[16];[all …]
41 typedef uint32_t md5_uint32; typedef47 md5_uint32 A;48 md5_uint32 B;49 md5_uint32 C;50 md5_uint32 D;52 md5_uint32 total[2];53 md5_uint32 buflen;54 char buffer[128] __attribute__ ((__aligned__ (__alignof__ (md5_uint32))));
74 ((md5_uint32 *) resbuf)[0] = SWAP (ctx->A);75 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B);76 ((md5_uint32 *) resbuf)[2] = SWAP (ctx->C);77 ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D);103 md5_uint32 bytes = ctx->buflen;248 # define UNALIGNED_P(p) (((md5_uintptr) p) % __alignof__ (md5_uint32) != 0)250 # define UNALIGNED_P(p) (((md5_uintptr) p) % sizeof (md5_uint32) != 0)304 md5_uint32 correct_words[16];305 const md5_uint32 *words = buffer;306 size_t nwords = len / sizeof (md5_uint32);[all …]