Lines Matching refs:dlen
3300 unsigned int dlen = COMP_BUF_SIZE; in test_acomp() local
3310 memset(output, 0, dlen); in test_acomp()
3313 sg_init_one(&dst, output, dlen); in test_acomp()
3324 acomp_request_set_params(req, &src, &dst, ilen, dlen); in test_acomp()
3337 ilen = req->dlen; in test_acomp()
3338 dlen = COMP_BUF_SIZE; in test_acomp()
3340 sg_init_one(&dst, decomp_out, dlen); in test_acomp()
3342 acomp_request_set_params(req, &src, &dst, ilen, dlen); in test_acomp()
3353 if (req->dlen != ctemplate[i].inlen) { in test_acomp()
3355 i + 1, algo, req->dlen); in test_acomp()
3362 if (memcmp(input_vec, decomp_out, req->dlen)) { in test_acomp()
3365 hexdump(output, req->dlen); in test_acomp()
3377 unsigned int dlen = COMP_BUF_SIZE; in test_acomp() local
3387 memset(output, 0, dlen); in test_acomp()
3390 sg_init_one(&dst, output, dlen); in test_acomp()
3401 acomp_request_set_params(req, &src, &dst, ilen, dlen); in test_acomp()
3414 if (req->dlen != dtemplate[i].outlen) { in test_acomp()
3416 i + 1, algo, req->dlen); in test_acomp()
3423 if (memcmp(output, dtemplate[i].output, req->dlen)) { in test_acomp()
3426 hexdump(output, req->dlen); in test_acomp()