/kernel/linux/linux-6.6/tools/net/ynl/lib/ |
H A D | nlspec.py | 3 import collections namespace 192 self.attrs = collections.OrderedDict() 193 self.attrs_by_val = collections.OrderedDict() 401 self.attr_sets = collections.OrderedDict() 402 self.msgs = collections.OrderedDict() 403 self.req_by_value = collections.OrderedDict() 404 self.rsp_by_value = collections.OrderedDict() 405 self.ops = collections.OrderedDict() 406 self.ntfs = collections.OrderedDict() 407 self.consts = collections [all...] |
/kernel/linux/linux-5.10/tools/perf/scripts/python/ |
H A D | mem-phys-addr.py | 14 import collections namespace 26 load_mem_type_cnt = collections.Counter()
|
H A D | stackcollapse.py | 26 from collections import defaultdict
|
H A D | sched-migration.py | 15 from collections import defaultdict 19 # Python 3: UserList moved to the collections package 20 from collections import UserList
|
/kernel/linux/linux-5.10/tools/testing/kunit/ |
H A D | kunit_config.py | 9 import collections namespace 15 KconfigEntryBase = collections.namedtuple('KconfigEntryBase', ['name', 'value'])
|
H A D | kunit.py | 15 from collections import namedtuple
|
/kernel/linux/linux-6.6/tools/perf/scripts/python/ |
H A D | mem-phys-addr.py | 14 import collections namespace 26 load_mem_type_cnt = collections.Counter()
|
H A D | stackcollapse.py | 26 from collections import defaultdict
|
H A D | sched-migration.py | 15 from collections import defaultdict 19 # Python 3: UserList moved to the collections package 20 from collections import UserList
|
/kernel/linux/linux-5.10/tools/testing/selftests/net/ |
H A D | devlink_port_split.py | 8 import collections namespace 21 Port = collections.namedtuple('Port', 'bus_info name')
|
/kernel/linux/linux-5.10/tools/perf/ |
H A D | builtin-bench.c | 5 * General benchmarking collections provided by perf 101 static struct collection collections[] = { variable 117 /* Iterate over all benchmark collections: */ 119 for (coll = collections; coll->name; coll++) 164 printf(" # List of all available benchmark collections:\n\n"); in print_usage()
|
/kernel/linux/linux-6.6/tools/perf/ |
H A D | builtin-bench.c | 5 * General benchmarking collections provided by perf 121 static struct collection collections[] = { variable 139 /* Iterate over all benchmark collections: */ 141 for (coll = collections; coll->name; coll++) 186 printf(" # List of all available benchmark collections:\n\n"); in print_usage()
|
/kernel/linux/linux-6.6/rust/alloc/ |
H A D | lib.rs | 3 //! # The Rust core allocation and collections library 5 //! This library provides smart pointers and collections for managing 48 //! [standard collections library](../std/collections/index.html). 246 pub mod collections; modules 279 let mut hasher = std::collections::hash_map::RandomState::new().build_hasher();
|
H A D | raw_vec.rs | 16 use crate::collections::TryReserveError; 17 use crate::collections::TryReserveErrorKind::*;
|
/kernel/linux/linux-6.6/tools/testing/selftests/net/ |
H A D | devlink_port_split.py | 8 import collections namespace 23 Port = collections.namedtuple('Port', 'bus_info name')
|
/kernel/linux/linux-6.6/rust/macros/ |
H A D | vtable.rs | 4 use std::collections::HashSet;
|
/kernel/linux/linux-6.6/scripts/ |
H A D | generate_rust_target.rs | 14 collections::HashMap,
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/ |
H A D | test_bpftool.py | 4 import collections namespace
|
/kernel/linux/linux-5.10/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/ |
H A D | Core.py | 9 from collections import defaultdict
|
/kernel/linux/linux-6.6/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/ |
H A D | Core.py | 9 from collections import defaultdict
|
/kernel/linux/linux-6.6/rust/alloc/vec/ |
H A D | spec_extend.rs | 4 use crate::collections::TryReserveError;
|
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/ |
H A D | test_bpftool.py | 4 import collections namespace
|
/kernel/linux/linux-6.6/rust/kernel/ |
H A D | error.rs | 11 collections::TryReserveError,
|
/kernel/linux/linux-5.10/drivers/irqchip/ |
H A D | irq-gic-v3-its.c | 87 * top-level MSI domain, the command queue, the collections, and the 104 struct its_collection *collections; member 235 return its->collections + its_dev->event_map.col_map[event]; in dev_event_to_col() 324 if (valid_col(its->collections + vpe->col_idx)) in valid_vpe() 1293 desc.its_vmapp_cmd.col = &its->collections[vpe->col_idx]; in its_send_vmapp() 1309 desc.its_vmovp_cmd.col = &its->collections[col_id]; in its_send_vmovp() 1335 desc.its_vmovp_cmd.col = &its->collections[col_id]; in its_send_vmovp() 1684 target_col = &its_dev->its->collections[cpu]; in its_set_affinity() 2943 its->collections = kcalloc(nr_cpu_ids, sizeof(*its->collections), in its_alloc_collections() [all...] |
/kernel/linux/linux-6.6/drivers/irqchip/ |
H A D | irq-gic-v3-its.c | 89 * top-level MSI domain, the command queue, the collections, and the 106 struct its_collection *collections; member 242 return its->collections + its_dev->event_map.col_map[event]; in dev_event_to_col() 331 if (valid_col(its->collections + vpe->col_idx)) in valid_vpe() 1305 desc.its_vmapp_cmd.col = &its->collections[vpe->col_idx]; in its_send_vmapp() 1321 desc.its_vmovp_cmd.col = &its->collections[col_id]; in its_send_vmovp() 1347 desc.its_vmovp_cmd.col = &its->collections[col_id]; in its_send_vmovp() 1698 target_col = &its_dev->its->collections[cpu]; in its_set_affinity() 2968 its->collections = kcalloc(nr_cpu_ids, sizeof(*its->collections), in its_alloc_collections() [all...] |