Lines Matching refs:bytes_left
2133 s64 bytes_left = ((s64)size) - 1; in btrfs_ref_to_path() local
2138 if (bytes_left >= 0) in btrfs_ref_to_path()
2139 dest[bytes_left] = '\0'; in btrfs_ref_to_path()
2142 bytes_left -= name_len; in btrfs_ref_to_path()
2143 if (bytes_left >= 0) in btrfs_ref_to_path()
2144 read_extent_buffer(eb, dest + bytes_left, in btrfs_ref_to_path()
2178 --bytes_left; in btrfs_ref_to_path()
2179 if (bytes_left >= 0) in btrfs_ref_to_path()
2180 dest[bytes_left] = '/'; in btrfs_ref_to_path()
2188 return dest + bytes_left; in btrfs_ref_to_path()
2535 if (inodes->bytes_left >= c) { in build_ino_list()
2536 inodes->bytes_left -= c; in build_ino_list()
2542 inodes->bytes_missing += c - inodes->bytes_left; in build_ino_list()
2543 inodes->bytes_left = 0; in build_ino_list()
2715 u32 bytes_left; in inode_to_path() local
2717 bytes_left = ipath->fspath->bytes_left > s_ptr ? in inode_to_path()
2718 ipath->fspath->bytes_left - s_ptr : 0; in inode_to_path()
2722 name_off, eb, inum, fspath_min, bytes_left); in inode_to_path()
2729 ipath->fspath->bytes_left = fspath - fspath_min; in inode_to_path()
2733 ipath->fspath->bytes_left = 0; in inode_to_path()
2778 data->bytes_left = total_bytes - sizeof(*data); in init_data_container()