Searched refs:ilen (Results 1 – 2 of 2) sorted by relevance
/crypto/ |
D | ccm.c | 187 int ilen, err; in crypto_ccm_auth() local 199 ilen = format_adata(idata, assoclen); in crypto_ccm_auth() 200 sg_set_buf(&sg[1], idata, ilen); in crypto_ccm_auth() 203 ilen = 0; in crypto_ccm_auth() 209 ahash_request_set_crypt(ahreq, sg, NULL, assoclen + ilen + 16); in crypto_ccm_auth() 218 ilen = 16 - (assoclen + ilen) % 16; in crypto_ccm_auth() 219 if (ilen < 16) { in crypto_ccm_auth() 220 memset(idata, 0, ilen); in crypto_ccm_auth() 222 sg_set_buf(&sg[0], idata, ilen); in crypto_ccm_auth() 226 cryptlen += ilen; in crypto_ccm_auth()
|
D | testmgr.c | 2919 int ilen; in test_comp() local 2925 ilen = ctemplate[i].inlen; in test_comp() 2927 ilen, output, &dlen); in test_comp() 2935 ilen = dlen; in test_comp() 2938 ilen, decomp_output, &dlen); in test_comp() 2964 int ilen; in test_comp() local 2969 ilen = dtemplate[i].inlen; in test_comp() 2971 ilen, decomp_output, &dlen); in test_comp() 3029 int ilen = ctemplate[i].inlen; in test_acomp() local 3032 input_vec = kmemdup(ctemplate[i].input, ilen, GFP_KERNEL); in test_acomp() [all …]
|