Searched refs:prev_key (Results 1 – 10 of 10) sorted by relevance
/linux-6.3-rc2/fs/btrfs/ |
A D | tree-checker.c | 173 struct btrfs_key *prev_key) in check_prev_ino() argument 199 prev_key->objectid, key->objectid); in check_prev_ino() 204 struct btrfs_key *prev_key) in check_extent_data_item() argument 373 prev_csum_end += prev_key->offset; in check_csum_item() 1241 struct btrfs_key *prev_key) in check_extent_item() argument 1469 prev_end += prev_key->offset; in check_extent_item() 1474 prev_key->objectid, prev_key->type, in check_extent_item() 1611 struct btrfs_key *prev_key) in check_leaf_item() argument 1748 prev_key.objectid, prev_key.type, in check_leaf() 1807 prev_key.type = key.type; in check_leaf() [all …]
|
/linux-6.3-rc2/tools/perf/util/ |
A D | bpf_map.c | 31 void *prev_key = NULL, *key, *value; in bpf_map__fprintf() local 50 while ((err = bpf_map_get_next_key(fd, prev_key, key) == 0)) { in bpf_map__fprintf() 61 prev_key = key; in bpf_map__fprintf()
|
A D | bpf_lock_contention.c | 234 struct contention_key *prev_key, key; in lock_contention_read() local 260 prev_key = NULL; in lock_contention_read() 261 while (!bpf_map_get_next_key(fd, prev_key, &key)) { in lock_contention_read() 324 prev_key = &key; in lock_contention_read()
|
/linux-6.3-rc2/tools/testing/selftests/bpf/prog_tests/ |
A D | stacktrace_build_id.c | 11 __u32 key, prev_key, val, duration = 0; in test_stacktrace_build_id() local 82 prev_key = key; in test_stacktrace_build_id() 83 } while (bpf_map__get_next_key(skel->maps.stackmap, &prev_key, &key, sizeof(key)) == 0); in test_stacktrace_build_id()
|
A D | stacktrace_build_id_nmi.c | 30 __u32 key, prev_key, val, duration = 0; in test_stacktrace_build_id_nmi() local 125 prev_key = key; in test_stacktrace_build_id_nmi() 126 } while (bpf_map__get_next_key(skel->maps.stackmap, &prev_key, &key, sizeof(key)) == 0); in test_stacktrace_build_id_nmi()
|
/linux-6.3-rc2/kernel/ |
A D | static_call_inline.c | 225 struct static_call_key *key, *prev_key = NULL; in __static_call_init() local 241 if (key != prev_key) { in __static_call_init() 242 prev_key = key; in __static_call_init() 408 struct static_call_key *key, *prev_key = NULL; in static_call_del_module() local 414 if (key == prev_key) in static_call_del_module() 417 prev_key = key; in static_call_del_module()
|
/linux-6.3-rc2/kernel/bpf/ |
A D | inode.c | 220 void *prev_key; in map_seq_next() local 227 prev_key = NULL; in map_seq_next() 229 prev_key = key; in map_seq_next() 232 if (map->ops->map_get_next_key(map, prev_key, key)) { in map_seq_next()
|
A D | syscall.c | 1713 void *buf, *buf_prevkey, *prev_key, *key, *value; in generic_map_lookup_batch() local 1744 prev_key = NULL; in generic_map_lookup_batch() 1750 prev_key = buf_prevkey; in generic_map_lookup_batch() 1754 err = map->ops->map_get_next_key(map, prev_key, key); in generic_map_lookup_batch() 1783 if (!prev_key) in generic_map_lookup_batch() 1784 prev_key = buf_prevkey; in generic_map_lookup_batch() 1786 swap(prev_key, key); in generic_map_lookup_batch() 1796 (cp && copy_to_user(uobatch, prev_key, map->key_size)))) in generic_map_lookup_batch()
|
/linux-6.3-rc2/lib/ |
A D | rbtree_test.c | 195 u32 prev_key = 0; in check() local 199 WARN_ON_ONCE(node->key < prev_key); in check() 207 prev_key = node->key; in check()
|
/linux-6.3-rc2/tools/bpf/bpftool/ |
A D | map.c | 818 void *key, *value, *prev_key; in map_dump() local 831 prev_key = NULL; in map_dump() 858 err = bpf_map_get_next_key(fd, prev_key, key); in map_dump() 866 prev_key = key; in map_dump()
|
Completed in 23 milliseconds