Lines Matching refs:func_bytes
36 unsigned int func_bytes; in glue_ecb_req_128bit() local
42 func_bytes = bsize * gctx->funcs[i].num_blocks; in glue_ecb_req_128bit()
44 if (nbytes < func_bytes) in glue_ecb_req_128bit()
50 src += func_bytes; in glue_ecb_req_128bit()
51 dst += func_bytes; in glue_ecb_req_128bit()
52 nbytes -= func_bytes; in glue_ecb_req_128bit()
53 } while (nbytes >= func_bytes); in glue_ecb_req_128bit()
113 unsigned int func_bytes, num_blocks; in glue_cbc_decrypt_req_128bit() local
127 func_bytes = bsize * num_blocks; in glue_cbc_decrypt_req_128bit()
129 if (nbytes < func_bytes) in glue_cbc_decrypt_req_128bit()
139 nbytes -= func_bytes; in glue_cbc_decrypt_req_128bit()
145 } while (nbytes >= func_bytes); in glue_cbc_decrypt_req_128bit()
173 unsigned int func_bytes, num_blocks; in glue_ctr_req_128bit() local
184 func_bytes = bsize * num_blocks; in glue_ctr_req_128bit()
186 if (nbytes < func_bytes) in glue_ctr_req_128bit()
194 nbytes -= func_bytes; in glue_ctr_req_128bit()
195 } while (nbytes >= func_bytes); in glue_ctr_req_128bit()
233 unsigned int num_blocks, func_bytes; in __glue_xts_req_128bit() local
239 func_bytes = bsize * num_blocks; in __glue_xts_req_128bit()
241 if (nbytes >= func_bytes) { in __glue_xts_req_128bit()
248 nbytes -= func_bytes; in __glue_xts_req_128bit()
249 } while (nbytes >= func_bytes); in __glue_xts_req_128bit()