Home
last modified time | relevance | path

Searched refs:n_keys (Results 1 – 8 of 8) sorted by relevance

/Linux-v5.15/net/ipv4/
Dtcp_fastopen.c104 int n_keys = 0, i; in tcp_fastopen_get_cipher() local
112 n_keys = tcp_fastopen_context_len(ctx); in tcp_fastopen_get_cipher()
113 for (i = 0; i < n_keys; i++) { in tcp_fastopen_get_cipher()
120 return n_keys; in tcp_fastopen_get_cipher()
Dsysctl_net_ipv4.c309 int ret, i = 0, off = 0, n_keys; in proc_tcp_fastopen_key() local
315 n_keys = tcp_fastopen_get_cipher(net, NULL, (u64 *)key); in proc_tcp_fastopen_key()
316 if (!n_keys) { in proc_tcp_fastopen_key()
318 n_keys = 1; in proc_tcp_fastopen_key()
321 for (i = 0; i < n_keys * 4; i++) in proc_tcp_fastopen_key()
324 for (i = 0; i < n_keys; i++) { in proc_tcp_fastopen_key()
335 if (i + 1 < n_keys) in proc_tcp_fastopen_key()
/Linux-v5.15/tools/testing/selftests/bpf/progs/
Dmap_ptr_kern.c146 int i, n_lookups = 0, n_keys = 0; in check_array() local
158 ++n_keys; in check_array()
162 VERIFY(n_keys == MAX_ENTRIES); in check_array()
/Linux-v5.15/kernel/trace/
Dtracing_map.h196 unsigned int n_keys; member
Dtracing_map.c281 map->key_idx[map->n_keys++] = idx; in tracing_map_add_key_field()
980 for (i = 0; i < map->n_keys; i++) in is_key()
Dtrace_events_hist.c386 unsigned int n_keys; member
2415 unsigned int n_keys) in compatible_keys() argument
2420 if (hist_data->n_fields - hist_data->n_vals != n_keys) in compatible_keys()
2426 for (n = 0; n < n_keys; n++) { in compatible_keys()
2447 unsigned int n_keys; in find_compatible_hist() local
2451 n_keys = target_hist_data->n_fields - target_hist_data->n_vals; in find_compatible_hist()
2457 if (compatible_keys(target_hist_data, hist_data, n_keys)) in find_compatible_hist()
3939 hist_data->n_keys++; in create_key_field()
3942 if (WARN_ON(hist_data->n_keys > TRACING_MAP_KEYS_MAX)) in create_key_field()
4655 bool use_compound_key = (hist_data->n_keys > 1); in event_hist_trigger()
[all …]
/Linux-v5.15/Documentation/trace/
Dhistogram-design.rst143 n_keys = n_fields - n_vals | |
304 n_keys: 2
440 n_keys = n_fields - n_vals | | |
666 | | n_keys = n_fields - n_vals | |
749 n_keys: 1
806 n_keys: 1
986 || ||| n_keys = n_fields - n_vals
1130 n_keys: 1
1194 n_keys: 1
1406 n_keys: 1
[all …]
/Linux-v5.15/drivers/input/touchscreen/
Datmel_mxt_ts.c3085 int n_keys; in mxt_parse_device_properties() local
3089 n_keys = device_property_count_u32(dev, keymap_property); in mxt_parse_device_properties()
3090 if (n_keys <= 0) { in mxt_parse_device_properties()
3091 error = n_keys < 0 ? n_keys : -EINVAL; in mxt_parse_device_properties()
3097 keymap = devm_kmalloc_array(dev, n_keys, sizeof(*keymap), in mxt_parse_device_properties()
3103 keymap, n_keys); in mxt_parse_device_properties()
3111 data->t19_num_keys = n_keys; in mxt_parse_device_properties()