• Home
  • Raw
  • Download

Lines Matching refs:dlen

3208 		unsigned int dlen = COMP_BUF_SIZE;  in test_comp()  local
3215 ilen, output, &dlen); in test_comp()
3223 ilen = dlen; in test_comp()
3224 dlen = COMP_BUF_SIZE; in test_comp()
3226 ilen, decomp_output, &dlen); in test_comp()
3233 if (dlen != ctemplate[i].inlen) { in test_comp()
3236 dlen); in test_comp()
3245 hexdump(decomp_output, dlen); in test_comp()
3253 unsigned int dlen = COMP_BUF_SIZE; in test_comp() local
3259 ilen, decomp_output, &dlen); in test_comp()
3267 if (dlen != dtemplate[i].outlen) { in test_comp()
3270 dlen); in test_comp()
3275 if (memcmp(decomp_output, dtemplate[i].output, dlen)) { in test_comp()
3278 hexdump(decomp_output, dlen); in test_comp()
3316 unsigned int dlen = COMP_BUF_SIZE; in test_acomp() local
3326 memset(output, 0, dlen); in test_acomp()
3329 sg_init_one(&dst, output, dlen); in test_acomp()
3340 acomp_request_set_params(req, &src, &dst, ilen, dlen); in test_acomp()
3353 ilen = req->dlen; in test_acomp()
3354 dlen = COMP_BUF_SIZE; in test_acomp()
3356 sg_init_one(&dst, decomp_out, dlen); in test_acomp()
3358 acomp_request_set_params(req, &src, &dst, ilen, dlen); in test_acomp()
3369 if (req->dlen != ctemplate[i].inlen) { in test_acomp()
3371 i + 1, algo, req->dlen); in test_acomp()
3378 if (memcmp(input_vec, decomp_out, req->dlen)) { in test_acomp()
3381 hexdump(output, req->dlen); in test_acomp()
3393 unsigned int dlen = COMP_BUF_SIZE; in test_acomp() local
3403 memset(output, 0, dlen); in test_acomp()
3406 sg_init_one(&dst, output, dlen); in test_acomp()
3417 acomp_request_set_params(req, &src, &dst, ilen, dlen); in test_acomp()
3430 if (req->dlen != dtemplate[i].outlen) { in test_acomp()
3432 i + 1, algo, req->dlen); in test_acomp()
3439 if (memcmp(output, dtemplate[i].output, req->dlen)) { in test_acomp()
3442 hexdump(output, req->dlen); in test_acomp()