Searched refs:map_bits (Results 1 - 6 of 6) sorted by relevance
/kernel/linux/linux-5.10/kernel/trace/ |
H A D | tracing_map.c | 526 idx = key_hash >> (32 - (map->map_bits + 1)); in __tracing_map_insert() 720 * @map_bits: The size of the map (2 ** map_bits) 725 * Creates and sets up a map to contain 2 ** map_bits number of 768 struct tracing_map *tracing_map_create(unsigned int map_bits, in tracing_map_create() argument 776 if (map_bits < TRACING_MAP_BITS_MIN || in tracing_map_create() 777 map_bits > TRACING_MAP_BITS_MAX) in tracing_map_create() 784 map->map_bits = map_bits; in tracing_map_create() 785 map->max_elts = (1 << map_bits); in tracing_map_create() [all...] |
H A D | tracing_map.h | 59 * user specifies (indirectly via the map_bits param, the details are 185 unsigned int map_bits; member 241 tracing_map_create(unsigned int map_bits,
|
H A D | trace_events_hist.c | 328 unsigned int map_bits; member 1161 unsigned long size, map_bits; in parse_map_size() local 1168 map_bits = ilog2(roundup_pow_of_two(size)); in parse_map_size() 1169 if (map_bits < TRACING_MAP_BITS_MIN || in parse_map_size() 1170 map_bits > TRACING_MAP_BITS_MAX) in parse_map_size() 1173 ret = map_bits; in parse_map_size() 1262 int map_bits = parse_map_size(str + len); in parse_assignment() local 1264 if (map_bits < 0) { in parse_assignment() 1265 ret = map_bits; in parse_assignment() 1268 attrs->map_bits in parse_assignment() 4415 create_hist_data(unsigned int map_bits, struct hist_trigger_attrs *attrs, struct trace_event_file *file, bool remove) create_hist_data() argument [all...] |
/kernel/linux/linux-6.6/kernel/trace/ |
H A D | tracing_map.c | 526 idx = key_hash >> (32 - (map->map_bits + 1)); in __tracing_map_insert() 720 * @map_bits: The size of the map (2 ** map_bits) 725 * Creates and sets up a map to contain 2 ** map_bits number of 768 struct tracing_map *tracing_map_create(unsigned int map_bits, in tracing_map_create() argument 776 if (map_bits < TRACING_MAP_BITS_MIN || in tracing_map_create() 777 map_bits > TRACING_MAP_BITS_MAX) in tracing_map_create() 784 map->map_bits = map_bits; in tracing_map_create() 785 map->max_elts = (1 << map_bits); in tracing_map_create() [all...] |
H A D | tracing_map.h | 59 * user specifies (indirectly via the map_bits param, the details are 185 unsigned int map_bits; member 241 tracing_map_create(unsigned int map_bits,
|
H A D | trace_events_hist.c | 528 unsigned int map_bits; member 1407 unsigned long size, map_bits; in parse_map_size() local 1414 map_bits = ilog2(roundup_pow_of_two(size)); in parse_map_size() 1415 if (map_bits < TRACING_MAP_BITS_MIN || in parse_map_size() 1416 map_bits > TRACING_MAP_BITS_MAX) in parse_map_size() 1419 ret = map_bits; in parse_map_size() 1508 int map_bits = parse_map_size(str + len); in parse_assignment() local 1510 if (map_bits < 0) { in parse_assignment() 1511 ret = map_bits; in parse_assignment() 1514 attrs->map_bits in parse_assignment() 5098 create_hist_data(unsigned int map_bits, struct hist_trigger_attrs *attrs, struct trace_event_file *file, bool remove) create_hist_data() argument [all...] |
Completed in 14 milliseconds