Searched refs:c64 (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/sys/
H A Dsha2.h80 uint64_t c64[2]; /* for SHA384/512, modulo 2^128 */ member in union:__anon466::__anon468
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dzfs_sha256.c254 uint64_t c64[2]; local
275 c64[0] = 0;
276 c64[1] = size << 3;
277 Encode64(pad+padsize, c64, sizeof (c64));
278 padsize += sizeof (c64);
/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/
H A Dsha256.c255 uint64_t c64[2]; local
276 c64[0] = 0;
277 c64[1] = size << 3;
278 Encode64(pad+padsize, c64, sizeof (c64));
279 padsize += sizeof (c64);
/illumos-gate/usr/src/common/crypto/sha2/
H A Dsha2.c751 ctx->count.c64[0] = ctx->count.c64[1] = 0;
819 buf_index = (ctx->count.c64[1] >> 3) & 0x7F;
822 if ((ctx->count.c64[1] += (input_len << 3)) < (input_len << 3))
823 ctx->count.c64[0]++;
825 ctx->count.c64[0] += (input_len >> 29);
917 uint8_t bitcount_be64[sizeof (ctx->count.c64)];
928 index = (ctx->count.c64[1] >> 3) & 0x7f;
929 Encode64(bitcount_be64, ctx->count.c64,

Completed in 61 milliseconds