Lines Matching refs:use_len
219 size_t use_len; in ccm_auth_crypt() local
226 use_len = len_left < 16 - 2 ? len_left : 16 - 2; in ccm_auth_crypt()
227 memcpy( b + 2, src, use_len ); in ccm_auth_crypt()
228 len_left -= use_len; in ccm_auth_crypt()
229 src += use_len; in ccm_auth_crypt()
235 use_len = len_left > 16 ? 16 : len_left; in ccm_auth_crypt()
238 memcpy( b, src, use_len ); in ccm_auth_crypt()
241 len_left -= use_len; in ccm_auth_crypt()
242 src += use_len; in ccm_auth_crypt()
273 size_t use_len = len_left > 16 ? 16 : len_left; in ccm_auth_crypt() local
278 memcpy( b, src, use_len ); in ccm_auth_crypt()
282 CTR_CRYPT( dst, src, use_len ); in ccm_auth_crypt()
287 memcpy( b, dst, use_len ); in ccm_auth_crypt()
291 dst += use_len; in ccm_auth_crypt()
292 src += use_len; in ccm_auth_crypt()
293 len_left -= use_len; in ccm_auth_crypt()