• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/build_vxworks/test_micro/

Lines Matching refs:ops

31 b_inmem_op_ds(u_int ops, int update)
65 for (; ops > 0; --ops) {
66 keybuf[(ops % keysize)] = letters[(ops % 26)];
74 for (; ops > 0; --ops)
87 b_inmem_op_ds_bulk(u_int ops, u_int *totalp)
139 for (total = 0; ops > 0; --ops) {
169 b_inmem_op_tds(u_int ops, int update, u_int32_t env_flags, u_int32_t log_flags)
232 for (; ops > 0; --ops)
244 for (; ops > 0; --ops) {
268 u_int ops, total;
276 ops = 0;
296 ops = (u_int)atoi(optarg);
314 if (ops == 0)
315 ops = DEFAULT_OPS;
316 b_inmem_op_ds(ops, 0);
319 ops, keysize, datasize);
327 * The ops value is the number of bulk operations, not key get
329 * long, and use the returned number of retrievals as the ops
332 if (ops == 0)
333 ops = 100000;
334 b_inmem_op_ds_bulk(ops, &total);
335 ops = total;
338 ops, keysize, datasize);
340 if (ops == 0)
341 ops = DEFAULT_OPS;
342 b_inmem_op_ds(ops, 1);
345 ops, keysize, datasize);
347 if (ops == 0)
348 ops = DEFAULT_OPS;
349 b_inmem_op_tds(ops, 0, 0, 0);
352 ops, keysize, datasize);
354 if (ops == 0)
355 ops = DEFAULT_OPS;
358 b_inmem_op_tds(ops, 1, 0, DB_LOG_INMEMORY);
360 b_inmem_op_tds(ops, 1, 0, DB_LOG_IN_MEMORY);
364 ops, keysize, datasize);
369 if (ops == 0)
370 ops = DEFAULT_OPS;
371 b_inmem_op_tds(ops, 1, DB_TXN_NOSYNC, 0);
374 ops, keysize, datasize);
376 if (ops == 0)
377 ops = DEFAULT_OPS;
379 b_inmem_op_tds(ops, 1, DB_TXN_WRITE_NOSYNC, 0);
382 ops, keysize, datasize);
389 * default ops.
391 if (ops == 0)
392 ops = 100000;
393 b_inmem_op_tds(ops, 1, 0, 0);
396 ops, keysize, datasize);
402 TIMER_DISPLAY(ops);
411 "[-d datasize] [-k keysize] [-l logbufsz] [-o ops] [-P pagesz]\n\t",