Searched refs:cache_present (Results 1 – 3 of 3) sorted by relevance
/linux-4.19.296/drivers/base/regmap/ |
D | regcache-rbtree.c | 29 long *cache_present; member 62 set_bit(idx, rbnode->cache_present); in regcache_rbtree_set_register() 244 kfree(rbtree_node->cache_present); in regcache_rbtree_exit() 265 if (!test_bit(reg_tmp, rbnode->cache_present)) in regcache_rbtree_read() 301 present = krealloc(rbnode->cache_present, in regcache_rbtree_insert_to_block() 311 present = rbnode->cache_present; in regcache_rbtree_insert_to_block() 324 rbnode->cache_present = present; in regcache_rbtree_insert_to_block() 367 rbnode->cache_present = kcalloc(BITS_TO_LONGS(rbnode->blklen), in regcache_rbtree_node_alloc() 368 sizeof(*rbnode->cache_present), in regcache_rbtree_node_alloc() 370 if (!rbnode->cache_present) in regcache_rbtree_node_alloc() [all …]
|
D | regcache.c | 670 static bool regcache_reg_present(unsigned long *cache_present, unsigned int idx) in regcache_reg_present() argument 672 if (!cache_present) in regcache_reg_present() 675 return test_bit(idx, cache_present); in regcache_reg_present() 679 unsigned long *cache_present, in regcache_sync_block_single() argument 689 if (!regcache_reg_present(cache_present, i) || in regcache_sync_block_single() 743 unsigned long *cache_present, in regcache_sync_block_raw() argument 756 if (!regcache_reg_present(cache_present, i) || in regcache_sync_block_raw() 785 unsigned long *cache_present, in regcache_sync_block() argument 790 return regcache_sync_block_raw(map, block, cache_present, in regcache_sync_block() 793 return regcache_sync_block_single(map, block, cache_present, in regcache_sync_block()
|
D | internal.h | 244 unsigned long *cache_present,
|