Searched refs:size_key (Results 1 – 9 of 9) sorted by relevance
/external/iproute2/examples/bpf/ |
D | bpf_tailcall.c | 32 .size_key = sizeof(uint32_t), 41 .size_key = sizeof(uint32_t), 49 .size_key = sizeof(uint32_t),
|
D | bpf_map_in_map.c | 7 .size_key = sizeof(uint32_t), 17 .size_key = sizeof(uint32_t),
|
D | bpf_graft.c | 38 .size_key = sizeof(uint32_t),
|
D | bpf_cyclic.c | 12 .size_key = sizeof(uint32_t),
|
D | bpf_shared.c | 23 .size_key = sizeof(uint32_t),
|
/external/iproute2/include/ |
D | bpf_elf.h | 33 __u32 size_key; member
|
/external/iproute2/lib/ |
D | bpf.c | 363 if (obj->size_key != pin->size_key) in bpf_map_pin_report() 365 obj->size_key, pin->size_key); in bpf_map_pin_report() 408 map->size_key = val; in bpf_derive_elf_map_from_fdinfo() 977 .size_key = sizeof(int), in bpf_graft_map() 1178 static int bpf_map_create(enum bpf_map_type type, uint32_t size_key, in bpf_map_create() argument 1185 attr.key_size = size_key; in bpf_map_create() 1511 fprintf(stderr, " - Size key: %u\n", map->size_key); in bpf_map_report() 1602 fd = bpf_map_create(map->type, map->size_key, map->size_value, in bpf_map_attach() 1763 __u32 size_key; member
|
/external/linux-kselftest/tools/testing/selftests/bpf/ |
D | test_verifier.c | 377 static int __create_map(uint32_t type, uint32_t size_key, in __create_map() argument 383 fd = bpf_create_map(type, size_key, size_value, max_elem, in __create_map() 395 static int create_map(uint32_t type, uint32_t size_key, in create_map() argument 398 return __create_map(type, size_key, size_value, max_elem, 0); in create_map()
|
/external/angle/src/compiler/translator/ |
D | gen_builtin_symbols.py | 1078 size_key = (self.data['secondarySize'] - 1) * 4 + self.data['primarySize'] - 1 1079 if size_key < 10: 1080 mangled_name += chr(ord('0') + size_key) 1082 mangled_name += chr(ord('A') + size_key - 10)
|