Home
last modified time | relevance | path

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

/linux-6.1.9/tools/perf/
Dbuiltin-bench.c126 #define for_each_collection(coll) \ argument
127 for (coll = collections; coll->name; coll++)
130 #define for_each_bench(coll, bench) \ argument
131 for (bench = coll->benchmarks; bench && bench->name; bench++)
133 static void dump_benchmarks(struct collection *coll) in dump_benchmarks() argument
137 printf("\n # List of available benchmarks for collection '%s':\n\n", coll->name); in dump_benchmarks()
139 for_each_bench(coll, bench) in dump_benchmarks()
164 struct collection *coll; in print_usage() local
174 for_each_collection(coll) in print_usage()
175 printf("%14s: %s\n", coll->name, coll->summary); in print_usage()
[all …]
/linux-6.1.9/net/wireless/
Dreg.c710 struct fwdb_collection *coll = (void *)(data + ptr); in valid_country() local
715 if ((u8 *)coll + offsetofend(typeof(*coll), n_rules) > data + size) in valid_country()
719 if ((u8 *)coll + ALIGN(coll->len, 2) + in valid_country()
720 (coll->n_rules * 2) > data + size) in valid_country()
724 if (coll->len < offsetofend(struct fwdb_collection, dfs_region)) in valid_country()
727 rules_ptr = (void *)((u8 *)coll + ALIGN(coll->len, 2)); in valid_country()
729 for (i = 0; i < coll->n_rules; i++) { in valid_country()
919 struct fwdb_collection *coll = (void *)((u8 *)db + ptr); in __regdb_query_wmm() local
922 for (i = 0; i < coll->n_rules; i++) { in __regdb_query_wmm()
923 __be16 *rules_ptr = (void *)((u8 *)coll + ALIGN(coll->len, 2)); in __regdb_query_wmm()
[all …]
/linux-6.1.9/Documentation/networking/device_drivers/appletalk/
Dcops.rst56 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 coll:0
/linux-6.1.9/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) in update_affinity_collection()
/linux-6.1.9/drivers/net/ethernet/alteon/
Dacenic.h567 u32 coll; member
Dacenic.c2797 dev->stats.collisions = readl(&mac_stats->coll); in ace_get_stats()