Lines Matching refs:stat
261 int eras, int trials, struct estat *stat,
298 stat->irv++;
303 stat->wepos++;
308 stat->dwrong++;
310 stat->nwords += trials;
322 struct estat stat = {0, 0, 0, 0};
331 test_uc(rs, len, errs, eras, trials, &stat, ws, method);
335 stat.dwrong, stat.nwords);
337 stat.irv, stat.nwords);
339 pr_info(" Wrong error position: %d\n", stat.wepos);
342 retval = stat.dwrong + stat.wepos + stat.irv;
367 int eras, int trials, struct bcstat *stat,
384 stat->rsuccess++;
399 stat->noncw++;
401 stat->rfail++;
404 stat->nwords += trials;
410 struct bcstat stat = {0, 0, 0, 0};
424 test_bc(rs, len, errs, eras, trials, &stat, ws);
429 stat.rfail, stat.nwords);
431 stat.rsuccess, stat.nwords);
433 stat.noncw, stat.rsuccess);
436 if (stat.noncw && v >= V_PROGRESS)
437 pr_warn(" FAIL: %d silent failures!\n", stat.noncw);
439 return stat.noncw;