Lines Matching refs:start
223 u16 count, start; in hfs_add_extent() local
230 start = be16_to_cpu(extent->block); in hfs_add_extent()
231 if (alloc_block != start + count) { in hfs_add_extent()
251 u16 count, start; in hfs_free_extents() local
267 start = be16_to_cpu(extent->block); in hfs_free_extents()
269 hfs_clear_vbm_bits(sb, start, count); in hfs_free_extents()
275 hfs_clear_vbm_bits(sb, start + count, block_nr); in hfs_free_extents()
290 u32 total_blocks, blocks, start; in hfs_free_fork() local
323 start = be16_to_cpu(fd.key->ext.FABN); in hfs_free_fork()
324 hfs_free_extents(sb, extent, total_blocks - start, total_blocks); in hfs_free_fork()
326 total_blocks = start; in hfs_free_fork()
394 u32 start, len, goal; in hfs_extend_file() local
408 start = hfs_vbm_search_free(sb, goal, &len); in hfs_extend_file()
414 hfs_dbg(EXTENT, "extend %lu: %u,%u\n", inode->i_ino, start, len); in hfs_extend_file()
419 HFS_I(inode)->first_extents[0].block = cpu_to_be16(start); in hfs_extend_file()
426 start, len); in hfs_extend_file()
438 start, len); in hfs_extend_file()
465 HFS_I(inode)->cached_extents[0].block = cpu_to_be16(start); in hfs_extend_file()
480 u16 blk_cnt, alloc_cnt, start; in hfs_file_truncate() local
529 start = HFS_I(inode)->cached_start; in hfs_file_truncate()
531 alloc_cnt - start, alloc_cnt - blk_cnt); in hfs_file_truncate()
533 if (blk_cnt > start) { in hfs_file_truncate()
537 alloc_cnt = start; in hfs_file_truncate()