| /fs/btrfs/ |
| A D | extent-io.c | 118 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 D | extent-io.h | 75 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 D | ctree.c | 567 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 D | conv-funcs.h | 142 DEFINE_CONV(btrfs_dir_log_item, end)
|
| A D | ctree.h | 644 BTRFS_SETGET_FUNCS(dir_log_end, struct btrfs_dir_log_item, end, 64);
|
| /fs/erofs/ |
| A D | data.c | 277 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 D | namei.c | 146 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 D | erofs_fs.h | 433 #define Z_EROFS_FULL_INDEX_ALIGN(end) \ argument 434 (round_up(end, 8) + sizeof(struct z_erofs_map_header) + 8)
|
| A D | zmap.c | 569 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 D | cluster.c | 114 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 D | lookup.c | 111 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 D | tnc_misc.c | 132 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 D | ubifs.h | 2349 int ubifs_fsync(struct file *file, loff_t start, loff_t end, int datasync);
|
| /fs/jffs2/ |
| A D | compr_rubin.c | 49 char *end = (char *)(page_out + destlen); in rubin_do_decompress() local 70 while (curr < end) { in rubin_do_decompress()
|
| /fs/squashfs/ |
| A D | sqfs.c | 90 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 D | ext4_journal.c | 440 goto end; in ext4fs_check_journal_state() 444 goto end; in ext4fs_check_journal_state() 529 end: in ext4fs_check_journal_state()
|
| A D | ext4_common.c | 802 goto end; in ext4fs_get_parent_inode_num() 826 end: in ext4fs_get_parent_inode_num()
|
| /fs/btrfs/kernel-shared/ |
| A D | btrfs_tree.h | 658 __le64 end; member
|