Lines Matching refs:use_len
248 size_t use_len; in ccm_auth_crypt() local
256 use_len = len_left < 16 - 2 ? len_left : 16 - 2; in ccm_auth_crypt()
257 memcpy( b + 2, src, use_len ); in ccm_auth_crypt()
258 len_left -= use_len; in ccm_auth_crypt()
259 src += use_len; in ccm_auth_crypt()
265 use_len = len_left > 16 ? 16 : len_left; in ccm_auth_crypt()
268 memcpy( b, src, use_len ); in ccm_auth_crypt()
271 len_left -= use_len; in ccm_auth_crypt()
272 src += use_len; in ccm_auth_crypt()
303 size_t use_len = len_left > 16 ? 16 : len_left; in ccm_auth_crypt() local
308 memcpy( b, src, use_len ); in ccm_auth_crypt()
312 CTR_CRYPT( dst, src, use_len ); in ccm_auth_crypt()
317 memcpy( b, dst, use_len ); in ccm_auth_crypt()
321 dst += use_len; in ccm_auth_crypt()
322 src += use_len; in ccm_auth_crypt()
323 len_left -= use_len; in ccm_auth_crypt()