Home
last modified time | relevance | path

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

/linux/tools/perf/
H A Dbuiltin-bench.c142 #define for_each_collection(coll) \
143 for (coll = collections; coll->name; coll++)
146 #define for_each_bench(coll, bench) \
147 for (bench = coll->benchmarks; bench && bench->name; bench++) in dump_benchmarks() argument
149 static void dump_benchmarks(struct collection *coll) in dump_benchmarks()
153 printf("\n # List of available benchmarks for collection '%s':\n\n", coll->name); in dump_benchmarks()
155 for_each_bench(coll, bench) in dump_benchmarks()
180 struct collection *coll; in print_usage()
140 for_each_collection(coll) global() argument
144 for_each_bench(coll,bench) global() argument
178 struct collection *coll; print_usage() local
234 run_collection(struct collection * coll) run_collection() argument
260 struct collection *coll; run_all_collections() local
268 struct collection *coll; cmd_bench() local
[all...]
/linux/net/wireless/
H A Dreg.c713 struct fwdb_collection *coll = (void *)(data + ptr); in valid_country() local
718 if ((u8 *)coll + offsetofend(typeof(*coll), n_rules) > data + size) in valid_country()
722 if ((u8 *)coll + ALIGN(coll->len, 2) + in valid_country()
723 (coll->n_rules * 2) > data + size) in valid_country()
727 if (coll->len < offsetofend(struct fwdb_collection, dfs_region)) in valid_country()
730 rules_ptr = (void *)((u8 *)coll + ALIGN(coll->len, 2)); in valid_country()
732 for (i = 0; i < coll->n_rules; i++) { in valid_country()
884 struct fwdb_collection *coll = (void *)((u8 *)db + ptr); in __regdb_query_wmm() local
887 for (i = 0; i < coll->n_rules; i++) { in __regdb_query_wmm()
888 __be16 *rules_ptr = (void *)((u8 *)coll + ALIGN(coll->len, 2)); in __regdb_query_wmm()
[all …]
/linux/arch/arm64/kvm/vgic/
H A Dvgic-its.c176 #define its_is_collection_mapped(coll) ((coll) && \ argument
177 ((coll)->target_addr != COLLECTION_NOT_MAPPED))
402 struct its_collection *coll) in update_affinity_collection() argument
408 if (ite->collection != coll) in update_affinity_collection()
/linux/drivers/net/ethernet/alteon/
H A Dacenic.h567 u32 coll; member
H A Dacenic.c2796 dev->stats.collisions = readl(&mac_stats->coll); in ace_get_stats()