Home
last modified time | relevance | path

Searched refs:blklen (Results 1 – 5 of 5) sorted by relevance

/linux/drivers/base/regmap/
H A Dregcache-rbtree.c29 unsigned int blklen; member
45 *top = rbnode->base_reg + ((rbnode->blklen - 1) * map->reg_stride); in regcache_rbtree_get_base_top_reg()
152 mem_size += (n->blklen * map->cache_word_size); in rbtree_show()
153 mem_size += BITS_TO_LONGS(n->blklen) * sizeof(long); in rbtree_show()
271 unsigned int blklen; in regcache_rbtree_insert_to_block() local
276 blklen = (top_reg - base_reg) / map->reg_stride + 1; in regcache_rbtree_insert_to_block()
280 blk = krealloc_array(rbnode->block, blklen, map->cache_word_size, map->alloc_flags); in regcache_rbtree_insert_to_block()
286 if (BITS_TO_LONGS(blklen) > BITS_TO_LONGS(rbnode->blklen)) { in regcache_rbtree_insert_to_block()
288 BITS_TO_LONGS(blklen), sizeof(*present), in regcache_rbtree_insert_to_block()
293 memset(present + BITS_TO_LONGS(rbnode->blklen), 0, in regcache_rbtree_insert_to_block()
[all …]
/linux/tools/perf/util/
H A Dutil.c287 int blklen = len > 16 ? 16 : len; in cpumask_to_cpulist() local
289 strncpy(blk, cpumask + len - blklen, blklen); in cpumask_to_cpulist()
290 blk[blklen] = '\0'; in cpumask_to_cpulist()
292 cpumask[len - blklen] = '\0'; in cpumask_to_cpulist()
/linux/include/trace/events/
H A Df2fs.h1628 TP_PROTO(struct block_device *dev, block_t blkstart, block_t blklen),
1630 TP_ARGS(dev, blkstart, blklen),
1635 __field(block_t, blklen)
1641 __entry->blklen = blklen;
1644 TP_printk("dev = (%d,%d), blkstart = 0x%llx, blklen = 0x%llx",
1647 (unsigned long long)__entry->blklen)
1652 TP_PROTO(struct block_device *dev, block_t blkstart, block_t blklen),
1654 TP_ARGS(dev, blkstart, blklen)
1659 TP_PROTO(struct block_device *dev, block_t blkstart, block_t blklen),
[all...]
/linux/fs/ext4/
H A Dfile.c223 int err, blklen; in ext4_overwrite_io() local
230 blklen = map.m_len; in ext4_overwrite_io()
233 if (err != blklen) in ext4_overwrite_io()
/linux/fs/ocfs2/
H A Ddir.c120 unsigned long blklen) in ocfs2_skip_dir_trailer() argument
122 unsigned long toff = blklen - sizeof(struct ocfs2_dir_block_trailer); in ocfs2_skip_dir_trailer()