Home
last modified time | relevance | path

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

/fs/reiserfs/
Ddir.c73 loff_t next_pos; in reiserfs_readdir_inode() local
88 next_pos = cpu_key_k_offset(&pos_key); in reiserfs_readdir_inode()
224 next_pos = cur_pos + 1; in reiserfs_readdir_inode()
228 next_pos); in reiserfs_readdir_inode()
248 set_cpu_key_k_offset(&pos_key, next_pos); in reiserfs_readdir_inode()
264 ctx->pos = next_pos; in reiserfs_readdir_inode()
/fs/hpfs/
Ddir.c67 loff_t next_pos; in hpfs_readdir() local
148 next_pos = ctx->pos; in hpfs_readdir()
149 if (!(de = map_pos_dirent(inode, &next_pos, &qbh))) { in hpfs_readdir()
150 ctx->pos = next_pos; in hpfs_readdir()
163 ctx->pos = next_pos; in hpfs_readdir()
172 ctx->pos = next_pos; in hpfs_readdir()
/fs/f2fs/
Dsegment.h665 int cur_pos = 0, next_pos; in check_block_count() local
670 next_pos = find_next_zero_bit_le(&raw_sit->valid_map, in check_block_count()
673 valid_blocks += next_pos - cur_pos; in check_block_count()
675 next_pos = find_next_bit_le(&raw_sit->valid_map, in check_block_count()
678 cur_pos = next_pos; in check_block_count()
Dsegment.c1743 unsigned int cur_pos = 0, next_pos, len, total_len = 0; in clear_prefree_segments() local
1748 next_pos = find_next_zero_bit_le(entry->discard_map, in clear_prefree_segments()
1750 len = next_pos - cur_pos; in clear_prefree_segments()
1760 next_pos = find_next_bit_le(entry->discard_map, in clear_prefree_segments()
1764 cur_pos = next_pos; in clear_prefree_segments()
/fs/ocfs2/
Dfile.c956 u64 next_pos; in ocfs2_zero_extend_range() local
966 next_pos = (zero_pos & PAGE_CACHE_MASK) + PAGE_CACHE_SIZE; in ocfs2_zero_extend_range()
967 if (next_pos > range_end) in ocfs2_zero_extend_range()
968 next_pos = range_end; in ocfs2_zero_extend_range()
969 rc = ocfs2_write_zero_page(inode, zero_pos, next_pos, di_bh); in ocfs2_zero_extend_range()
974 zero_pos = next_pos; in ocfs2_zero_extend_range()