Lines Matching refs:bytes_hashed
320 int bytes_hashed; /* Bytes (out of L1_KEY_LEN) incorperated. */ member
542 key = hc->nh_key + hc->bytes_hashed; in nh_transform()
581 hc->bytes_hashed = 0; in nh_reset()
622 hc->bytes_hashed += HASH_BUF_BYTES; in nh_update()
629 hc->bytes_hashed += i; in nh_update()
680 hc->bytes_hashed += hc->next_data_empty; in nh_final()
681 } else if (hc->bytes_hashed == 0) { in nh_final()
687 nbits = (hc->bytes_hashed << 3); in nh_final()
1046 UWORD bytes_hashed, bytes_remaining; in uhash_update() local
1055 bytes_hashed = ctx->msg_len % L1_KEY_LEN; in uhash_update()
1057 bytes_hashed = L1_KEY_LEN; in uhash_update()
1059 if (bytes_hashed + len >= L1_KEY_LEN) { in uhash_update()
1064 if (bytes_hashed) { in uhash_update()
1065 bytes_remaining = (L1_KEY_LEN - bytes_hashed); in uhash_update()