Lines Matching refs:next_buflen

3081 	int next_buflen;  member
3445 req->nbytes - state->next_buflen, in ahash_done_bi()
3446 state->next_buflen, 0); in ahash_done_bi()
3447 state->buflen = state->next_buflen; in ahash_done_bi()
3510 req->nbytes - state->next_buflen, in ahash_done_ctx_dst()
3511 state->next_buflen, 0); in ahash_done_ctx_dst()
3512 state->buflen = state->next_buflen; in ahash_done_ctx_dst()
3541 int *next_buflen = &state->next_buflen; in ahash_update_ctx() local
3547 *next_buflen = in_len & (crypto_tfm_alg_blocksize(&ahash->base) - 1); in ahash_update_ctx()
3548 to_hash = in_len - *next_buflen; in ahash_update_ctx()
3552 int src_len = req->nbytes - *next_buflen; in ahash_update_ctx()
3631 } else if (*next_buflen) { in ahash_update_ctx()
3634 *buflen = *next_buflen; in ahash_update_ctx()
3993 int *next_buflen = &state->next_buflen; in ahash_update_no_ctx() local
3999 *next_buflen = in_len & (crypto_tfm_alg_blocksize(&ahash->base) - 1); in ahash_update_no_ctx()
4000 to_hash = in_len - *next_buflen; in ahash_update_no_ctx()
4004 int src_len = req->nbytes - *next_buflen; in ahash_update_no_ctx()
4085 } else if (*next_buflen) { in ahash_update_no_ctx()
4088 *buflen = *next_buflen; in ahash_update_no_ctx()
4210 int *next_buflen = &state->next_buflen; in ahash_update_first() local
4216 *next_buflen = req->nbytes & (crypto_tfm_alg_blocksize(&ahash->base) - in ahash_update_first()
4218 to_hash = req->nbytes - *next_buflen; in ahash_update_first()
4222 int src_len = req->nbytes - *next_buflen; in ahash_update_first()
4307 } else if (*next_buflen) { in ahash_update_first()
4313 *buflen = *next_buflen; in ahash_update_first()
4344 state->next_buflen = 0; in ahash_init()