Home
last modified time | relevance | path

Searched refs:clust_byte_shift (Results 1 – 4 of 4) sorted by relevance

/external/syslinux/core/fs/ntfs/
Dntfs.c114 const uint32_t clust_byte_shift = NTFS_SB(fs)->clust_byte_shift; in ntfs_read() local
131 offset = (*lcn << clust_byte_shift) % blk_size; in ntfs_read()
190 const uint32_t clust_byte_shift = NTFS_SB(fs)->clust_byte_shift; in ntfs_mft_record_lookup_any() local
207 uint64_t vcn = (file << mft_record_shift >> clust_byte_shift); in ntfs_mft_record_lookup_any()
246 blk = (lcn << clust_byte_shift >> BLOCK_SHIFT(fs)); in ntfs_mft_record_lookup_any()
466 blk = (lcn + vcn) << NTFS_SB(fs)->clust_byte_shift >> in ntfs_attr_list_lookup()
491 vcn += (blk_size / (1 << NTFS_SB(fs)->clust_byte_shift)); in ntfs_attr_list_lookup()
862 vcn += (blk_size / (1 << NTFS_SB(fs)->clust_byte_shift)); in ntfs_index_lookup()
939 ((ret->run.len << sbi->clust_byte_shift) >> sec_shift); in ntfs_next_extent()
943 ((ret->run.len << sbi->clust_byte_shift) + sec_size - 1) >> in ntfs_next_extent()
[all …]
Dntfs.h69 unsigned clust_byte_shift; /* Based on bytes */ member
/external/syslinux/core/fs/fat/
Dfat_fs.h96 int clust_byte_shift; /* based on bytes */ member
Dfat.c96 const uint32_t cluster_bytes = UINT32_C(1) << sbi->clust_byte_shift; in fat_next_extent()
100 tcluster = (inode->size + cluster_bytes - 1) >> sbi->clust_byte_shift; in fat_next_extent()
755 sbi->clust_byte_shift = sbi->clust_shift + fs->sector_shift; in vfat_fs_init()