Home
last modified time | relevance | path

Searched refs:op_cnt (Results 1 – 3 of 3) sorted by relevance

/Linux-v6.6/tools/testing/selftests/bpf/progs/
Dhtab_mem_bench.c27 long op_cnt = 0; variable
63 __sync_fetch_and_add(&op_cnt, 1); in overwrite()
79 __sync_fetch_and_add(&op_cnt, 2); in batch_add_batch_del()
91 __sync_fetch_and_add(&op_cnt, 1); in add_only()
103 __sync_fetch_and_add(&op_cnt, 1); in del_only()
/Linux-v6.6/drivers/crypto/bcm/
Dutil.c361 u32 op_cnt; in spu_debugfs_read() local
388 op_cnt = atomic_read(&ipriv->cipher_cnt[alg][mode]); in spu_debugfs_read()
389 if (op_cnt) { in spu_debugfs_read()
393 spu_alg_name(alg, mode), op_cnt); in spu_debugfs_read()
401 op_cnt = atomic_read(&ipriv->hash_cnt[alg]); in spu_debugfs_read()
402 if (op_cnt) { in spu_debugfs_read()
406 hash_alg_name[alg], op_cnt); in spu_debugfs_read()
416 op_cnt = atomic_read(&ipriv->hmac_cnt[alg]); in spu_debugfs_read()
417 if (op_cnt) { in spu_debugfs_read()
421 hash_alg_name[alg], op_cnt); in spu_debugfs_read()
[all …]
/Linux-v6.6/tools/testing/selftests/bpf/benchs/
Dbench_htab_mem.c295 res->hits = atomic_swap(&ctx.skel->bss->op_cnt, 0) / env.producer_cnt; in htab_mem_measure()