Home
last modified time | relevance | path

Searched refs:end (Results 1 – 18 of 18) sorted by relevance

/fs/btrfs/
A Dextent-io.c118 BUG_ON(end < start); in insert_state()
121 state->end = end; in insert_state()
252 last_end = state->end; in clear_extent_bits()
275 if (state->end <= end) { in clear_extent_bits()
291 if (state->start <= end && state->end > end) { in clear_extent_bits()
312 if (start > end) in clear_extent_bits()
357 if (state->start == start && state->end <= end) { in set_extent_bits()
387 if (state->end <= end) { in set_extent_bits()
409 this_end = end; in set_extent_bits()
438 if (start > end) in set_extent_bits()
[all …]
A Dextent-io.h75 u64 end; member
98 int set_extent_bits(struct extent_io_tree *tree, u64 start, u64 end, int bits);
99 int clear_extent_bits(struct extent_io_tree *tree, u64 start, u64 end, int bits);
102 int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
104 int set_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end);
105 int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end);
A Dctree.c567 int end = min(nritems, start + nr) - 1; in leaf_space_used() local
572 data_len = data_len - btrfs_item_offset_nr(l, end); in leaf_space_used()
A Dconv-funcs.h142 DEFINE_CONV(btrfs_dir_log_item, end)
A Dctree.h644 BTRFS_SETGET_FUNCS(dir_log_end, struct btrfs_dir_log_item, end, 64);
/fs/erofs/
A Ddata.c277 erofs_off_t end, length, skip; in z_erofs_read_data() local
286 end = offset + size; in z_erofs_read_data()
287 while (end > offset) { in z_erofs_read_data()
288 map.m_la = end - 1; in z_erofs_read_data()
298 if (end < map.m_la + map.m_llen) { in z_erofs_read_data()
299 length = end - map.m_la; in z_erofs_read_data()
302 DBG_BUGON(end != map.m_la + map.m_llen); in z_erofs_read_data()
309 end = offset; in z_erofs_read_data()
312 end = map.m_la; in z_erofs_read_data()
317 end = map.m_la; in z_erofs_read_data()
[all …]
A Dnamei.c146 const struct erofs_dirent *end = dentry_blk + nameoff; in find_target_dirent() local
148 while (de < end) { in find_target_dirent()
156 if (de + 1 >= end) in find_target_dirent()
A Derofs_fs.h433 #define Z_EROFS_FULL_INDEX_ALIGN(end) \ argument
434 (round_up(end, 8) + sizeof(struct z_erofs_map_header) + 8)
A Dzmap.c569 unsigned long long ofs, end; in z_erofs_do_map_blocks() local
584 end = (m.lcn + 1ULL) << lclusterbits; in z_erofs_do_map_blocks()
600 end = (m.lcn << lclusterbits) | m.clusterofs; in z_erofs_do_map_blocks()
618 map->m_llen = end - map->m_la; in z_erofs_do_map_blocks()
/fs/exfat/
A Dcluster.c114 static cluster_t find_bit_and_set(bitmap_t* bitmap, size_t start, size_t end) in find_bit_and_set() argument
117 const size_t end_index = DIV_ROUND_UP(end, sizeof(bitmap_t) * 8); in find_bit_and_set()
128 end_bitindex = MIN((i + 1) * sizeof(bitmap_t) * 8, end); in find_bit_and_set()
372 uint64_t begin, uint64_t end) in erase_range() argument
377 if (begin >= end) in erase_range()
389 if (!erase_raw(ef, MIN(cluster_boundary, end) - begin, in erase_range()
393 while (cluster_boundary < end) in erase_range()
459 const cluster_t end = le32_to_cpu(ef->sb->cluster_count); in find_used_clusters() local
462 for (*a = *b + 1; *a < end; (*a)++) in find_used_clusters()
465 if (*a >= end) in find_used_clusters()
[all …]
A Dlookup.c111 const char* end; in get_comp() local
114 end = strchr(*comp, '/'); in get_comp()
115 if (end == NULL) in get_comp()
118 return end - *comp; in get_comp()
/fs/ubifs/
A Dtnc_misc.c132 int beg = 0, end = znode->child_cnt, uninitialized_var(mid); in ubifs_search_zbranch() local
136 ubifs_assert(end > beg); in ubifs_search_zbranch()
138 while (end > beg) { in ubifs_search_zbranch()
139 mid = (beg + end) >> 1; in ubifs_search_zbranch()
144 end = mid; in ubifs_search_zbranch()
151 *n = end - 1; in ubifs_search_zbranch()
A Dubifs.h2349 int ubifs_fsync(struct file *file, loff_t start, loff_t end, int datasync);
/fs/jffs2/
A Dcompr_rubin.c49 char *end = (char *)(page_out + destlen); in rubin_do_decompress() local
70 while (curr < end) { in rubin_do_decompress()
/fs/squashfs/
A Dsqfs.c90 static int sqfs_calc_n_blks(__le64 start, __le64 end, u64 *offset) in sqfs_calc_n_blks() argument
94 table_size = le64_to_cpu(end) - le64_to_cpu(start); in sqfs_calc_n_blks()
108 u64 start, end, exp_tbl, n_blks, src_len, table_offset, start_block; in sqfs_frag_lookup() local
124 end = get_unaligned_le64(&sblk->id_table_start); in sqfs_frag_lookup()
127 if (exp_tbl > start && exp_tbl < end) in sqfs_frag_lookup()
128 end = exp_tbl; in sqfs_frag_lookup()
131 cpu_to_le64(end), &table_offset); in sqfs_frag_lookup()
280 static int sqfs_join(char **strings, char *dest, int start, int end, in sqfs_join() argument
285 for (i = start; i < end; i++) { in sqfs_join()
288 if (i < end - 1) in sqfs_join()
/fs/ext4/
A Dext4_journal.c440 goto end; in ext4fs_check_journal_state()
444 goto end; in ext4fs_check_journal_state()
529 end: in ext4fs_check_journal_state()
A Dext4_common.c802 goto end; in ext4fs_get_parent_inode_num()
826 end: in ext4fs_get_parent_inode_num()
/fs/btrfs/kernel-shared/
A Dbtrfs_tree.h658 __le64 end; member

Completed in 38 milliseconds