OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:clust_byte_shift
(Results
1 - 4
of
4
) sorted by null
/external/syslinux/core/fs/fat/
fat_fs.h
96
int
clust_byte_shift
; /* based on bytes */
member in struct:fat_sb_info
fat.c
96
const uint32_t cluster_bytes = UINT32_C(1) << sbi->
clust_byte_shift
;
100
tcluster = (inode->size + cluster_bytes - 1) >> sbi->
clust_byte_shift
;
755
sbi->
clust_byte_shift
= sbi->clust_shift + fs->sector_shift;
/external/syslinux/core/fs/ntfs/
ntfs.c
114
const uint32_t
clust_byte_shift
= NTFS_SB(fs)->
clust_byte_shift
;
local
131
offset = (*lcn <<
clust_byte_shift
) % blk_size;
190
const uint32_t
clust_byte_shift
= NTFS_SB(fs)->
clust_byte_shift
;
local
207
uint64_t vcn = (file << mft_record_shift >>
clust_byte_shift
);
246
blk = (lcn <<
clust_byte_shift
>> BLOCK_SHIFT(fs));
466
blk = (lcn + vcn) << NTFS_SB(fs)->
clust_byte_shift
>>
491
vcn += (blk_size / (1 << NTFS_SB(fs)->
clust_byte_shift
));
862
vcn += (blk_size / (1 << NTFS_SB(fs)->
clust_byte_shift
));
[
all
...]
ntfs.h
69
unsigned
clust_byte_shift
; /* Based on bytes */
member in struct:ntfs_sb_info
Completed in 74 milliseconds