Home
last modified time | relevance | path

Searched refs:cache_present (Results 1 – 3 of 3) sorted by relevance

/linux-4.4.14/drivers/base/regmap/
Dregcache-rbtree.c29 long *cache_present; member
62 set_bit(idx, rbnode->cache_present); in regcache_rbtree_set_register()
245 kfree(rbtree_node->cache_present); in regcache_rbtree_exit()
266 if (!test_bit(reg_tmp, rbnode->cache_present)) in regcache_rbtree_read()
300 present = krealloc(rbnode->cache_present, in regcache_rbtree_insert_to_block()
312 present = rbnode->cache_present; in regcache_rbtree_insert_to_block()
326 rbnode->cache_present = present; in regcache_rbtree_insert_to_block()
369 rbnode->cache_present = kzalloc(BITS_TO_LONGS(rbnode->blklen) * in regcache_rbtree_node_alloc()
370 sizeof(*rbnode->cache_present), GFP_KERNEL); in regcache_rbtree_node_alloc()
371 if (!rbnode->cache_present) in regcache_rbtree_node_alloc()
[all …]
Dregcache.c613 static bool regcache_reg_present(unsigned long *cache_present, unsigned int idx) in regcache_reg_present() argument
615 if (!cache_present) in regcache_reg_present()
618 return test_bit(idx, cache_present); in regcache_reg_present()
622 unsigned long *cache_present, in regcache_sync_block_single() argument
632 if (!regcache_reg_present(cache_present, i) || in regcache_sync_block_single()
686 unsigned long *cache_present, in regcache_sync_block_raw() argument
699 if (!regcache_reg_present(cache_present, i) || in regcache_sync_block_raw()
728 unsigned long *cache_present, in regcache_sync_block() argument
733 return regcache_sync_block_raw(map, block, cache_present, in regcache_sync_block()
736 return regcache_sync_block_single(map, block, cache_present, in regcache_sync_block()
Dinternal.h228 unsigned long *cache_present,