Home
last modified time | relevance | path

Searched refs:coll (Results 1 – 6 of 6) sorted by relevance

/Linux-v5.15/tools/perf/
Dbuiltin-bench.c118 #define for_each_collection(coll) \ argument
119 for (coll = collections; coll->name; coll++)
122 #define for_each_bench(coll, bench) \ argument
123 for (bench = coll->benchmarks; bench && bench->name; bench++)
125 static void dump_benchmarks(struct collection *coll) in dump_benchmarks() argument
129 printf("\n # List of available benchmarks for collection '%s':\n\n", coll->name); in dump_benchmarks()
131 for_each_bench(coll, bench) in dump_benchmarks()
156 struct collection *coll; in print_usage() local
166 for_each_collection(coll) in print_usage()
167 printf("%14s: %s\n", coll->name, coll->summary); in print_usage()
[all …]
/Linux-v5.15/net/wireless/
Dreg.c709 struct fwdb_collection *coll = (void *)(data + ptr); in valid_country() local
714 if ((u8 *)coll + offsetofend(typeof(*coll), n_rules) > data + size) in valid_country()
718 if ((u8 *)coll + ALIGN(coll->len, 2) + in valid_country()
719 (coll->n_rules * 2) > data + size) in valid_country()
723 if (coll->len < offsetofend(struct fwdb_collection, dfs_region)) in valid_country()
726 rules_ptr = (void *)((u8 *)coll + ALIGN(coll->len, 2)); in valid_country()
728 for (i = 0; i < coll->n_rules; i++) { in valid_country()
916 struct fwdb_collection *coll = (void *)((u8 *)db + ptr); in __regdb_query_wmm() local
919 for (i = 0; i < coll->n_rules; i++) { in __regdb_query_wmm()
920 __be16 *rules_ptr = (void *)((u8 *)coll + ALIGN(coll->len, 2)); in __regdb_query_wmm()
[all …]
/Linux-v5.15/Documentation/networking/device_drivers/appletalk/
Dcops.rst56 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 coll:0
/Linux-v5.15/arch/arm64/kvm/vgic/
Dvgic-its.c137 #define its_is_collection_mapped(coll) ((coll) && \ argument
138 ((coll)->target_addr != COLLECTION_NOT_MAPPED))
403 struct its_collection *coll) in update_affinity_collection() argument
409 if (!ite->collection || coll != ite->collection) in update_affinity_collection()
/Linux-v5.15/drivers/net/ethernet/alteon/
Dacenic.h567 u32 coll; member
Dacenic.c2800 dev->stats.collisions = readl(&mac_stats->coll); in ace_get_stats()