Searched refs:prev_key (Results 1 – 7 of 7) sorted by relevance
/linux/fs/btrfs/ |
A D | tree-checker.c | 169 struct btrfs_key *prev_key) in check_prev_ino() argument 189 if (key->objectid == prev_key->objectid) in check_prev_ino() 195 prev_key->objectid, key->objectid); in check_prev_ino() 200 struct btrfs_key *prev_key) in check_extent_data_item() argument 369 prev_csum_end += prev_key->offset; in check_csum_item() 1554 struct btrfs_key *prev_key) in check_leaf_item() argument 1610 struct btrfs_key prev_key = {0, 0, 0}; in check_leaf() local 1678 prev_key.objectid, prev_key.type, in check_leaf() 1737 prev_key.objectid = key.objectid; in check_leaf() 1738 prev_key.type = key.type; in check_leaf() [all …]
|
/linux/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()
|
/linux/kernel/ |
A D | static_call.c | 214 struct static_call_key *key, *prev_key = NULL; in __static_call_init() local 230 if (key != prev_key) { in __static_call_init() 231 prev_key = key; in __static_call_init() 397 struct static_call_key *key, *prev_key = NULL; in static_call_del_module() local 403 if (key == prev_key) in static_call_del_module() 406 prev_key = key; in static_call_del_module()
|
/linux/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/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 | 1435 void *buf, *buf_prevkey, *prev_key, *key, *value; in generic_map_lookup_batch() local 1466 prev_key = NULL; in generic_map_lookup_batch() 1472 prev_key = buf_prevkey; in generic_map_lookup_batch() 1476 err = map->ops->map_get_next_key(map, prev_key, key); in generic_map_lookup_batch() 1505 if (!prev_key) in generic_map_lookup_batch() 1506 prev_key = buf_prevkey; in generic_map_lookup_batch() 1508 swap(prev_key, key); in generic_map_lookup_batch() 1517 (cp && copy_to_user(uobatch, prev_key, map->key_size)))) in generic_map_lookup_batch()
|
/linux/tools/bpf/bpftool/ |
A D | map.c | 848 void *key, *value, *prev_key; in map_dump() local 861 prev_key = NULL; in map_dump() 885 err = bpf_map_get_next_key(fd, prev_key, key); in map_dump() 893 prev_key = key; in map_dump()
|
Completed in 27 milliseconds