Lines Matching refs:use_len
206 size_t use_len; in ccm_auth_crypt() local
214 use_len = len_left < 16 - 2 ? len_left : 16 - 2; in ccm_auth_crypt()
215 memcpy( b + 2, src, use_len ); in ccm_auth_crypt()
216 len_left -= use_len; in ccm_auth_crypt()
217 src += use_len; in ccm_auth_crypt()
223 use_len = len_left > 16 ? 16 : len_left; in ccm_auth_crypt()
226 memcpy( b, src, use_len ); in ccm_auth_crypt()
229 len_left -= use_len; in ccm_auth_crypt()
230 src += use_len; in ccm_auth_crypt()
261 size_t use_len = len_left > 16 ? 16 : len_left; in ccm_auth_crypt() local
266 memcpy( b, src, use_len ); in ccm_auth_crypt()
270 CTR_CRYPT( dst, src, use_len ); in ccm_auth_crypt()
275 memcpy( b, dst, use_len ); in ccm_auth_crypt()
279 dst += use_len; in ccm_auth_crypt()
280 src += use_len; in ccm_auth_crypt()
281 len_left -= use_len; in ccm_auth_crypt()