Home
last modified time | relevance | path

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

/illumos-gate/usr/src/common/crypto/edonr/
H A Dedonr.c456 state->unprocessed_bits = 0; in EdonRInit()
464 state->unprocessed_bits = 0; in EdonRInit()
472 state->unprocessed_bits = 0; in EdonRInit()
480 state->unprocessed_bits = 0; in EdonRInit()
500 if (state->unprocessed_bits > 0) { in EdonRUpdate()
504 ASSERT(state->unprocessed_bits + databitlen <= in EdonRUpdate()
508 + (state->unprocessed_bits >> 3), LastBytes); in EdonRUpdate()
509 state->unprocessed_bits += (int)databitlen; in EdonRUpdate()
510 databitlen = state->unprocessed_bits; in EdonRUpdate()
521 state->unprocessed_bits = (int)databitlen; in EdonRUpdate()
[all …]
/illumos-gate/usr/src/uts/common/sys/
H A Dedonr.h75 int unprocessed_bits; member