Home
last modified time | relevance | path

Searched refs:copysiz (Results 1 – 2 of 2) sorted by relevance

/f-stack/freebsd/crypto/
H A Dsha1.c228 size_t copysiz; in sha1_loop() local
236 copysiz = (gaplen < len - off) ? gaplen : len - off; in sha1_loop()
237 bcopy(&input[off], &ctxt->m.b8[gapstart], copysiz); in sha1_loop()
238 COUNT += copysiz; in sha1_loop()
240 ctxt->c.b64[0] += copysiz * 8; in sha1_loop()
243 off += copysiz; in sha1_loop()
/f-stack/freebsd/crypto/aesni/
H A Daesni.c438 size_t copysiz; in intel_sha1_update() local
454 copysiz = (gaplen < datalen - off) ? gaplen : datalen - off; in intel_sha1_update()
455 bcopy(&data[off], &ctx->m.b8[gapstart], copysiz); in intel_sha1_update()
456 ctx->count += copysiz; in intel_sha1_update()
458 ctx->c.b64[0] += copysiz * 8; in intel_sha1_update()
461 off += copysiz; in intel_sha1_update()