Lines Matching refs:use_len
219 size_t use_len; in ccm_auth_crypt() local
227 use_len = len_left < 16 - 2 ? len_left : 16 - 2; in ccm_auth_crypt()
228 memcpy( b + 2, src, use_len ); in ccm_auth_crypt()
229 len_left -= use_len; in ccm_auth_crypt()
230 src += use_len; in ccm_auth_crypt()
236 use_len = len_left > 16 ? 16 : len_left; in ccm_auth_crypt()
239 memcpy( b, src, use_len ); in ccm_auth_crypt()
242 len_left -= use_len; in ccm_auth_crypt()
243 src += use_len; in ccm_auth_crypt()
274 size_t use_len = len_left > 16 ? 16 : len_left; in ccm_auth_crypt() local
279 memcpy( b, src, use_len ); in ccm_auth_crypt()
283 CTR_CRYPT( dst, src, use_len ); in ccm_auth_crypt()
288 memcpy( b, dst, use_len ); in ccm_auth_crypt()
292 dst += use_len; in ccm_auth_crypt()
293 src += use_len; in ccm_auth_crypt()
294 len_left -= use_len; in ccm_auth_crypt()