Lines Matching defs:batch
170 bool delayed, int batch, int reset_n, int bufs)
178 const bool random_batch = batch == RANDOM_BATCH;
193 batch = (random() % vq->vring.num) + 1;
196 (started - completed) < batch) {
317 .name = "batch",
337 " [--batch=random/N]"
349 long batch = 1, reset = 0;
376 batch = RANDOM_BATCH;
378 batch = strtol(optarg, NULL, 10);
379 assert(batch > 0);
380 assert(batch < (long)INT_MAX + 1);
401 run_test(&dev, &dev.vqs[0], delayed, batch, reset, 0x100000);