Lines Matching refs:__uint
11 __uint(type, BPF_MAP_TYPE_PERCPU_ARRAY);
12 __uint(key_size, sizeof(__u32));
13 __uint(value_size, sizeof(struct bpf_perf_event_value));
14 __uint(max_entries, 1);
18 __uint(type, BPF_MAP_TYPE_PERCPU_ARRAY);
19 __uint(key_size, sizeof(__u32));
20 __uint(value_size, sizeof(struct bpf_perf_event_value));
21 __uint(max_entries, 1);
25 __uint(type, BPF_MAP_TYPE_HASH);
26 __uint(key_size, sizeof(__u32));
27 __uint(value_size, sizeof(struct bperf_filter_value));
28 __uint(max_entries, MAX_ENTRIES);
29 __uint(map_flags, BPF_F_NO_PREALLOC);