Home
last modified time | relevance | path

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

/drivers/staging/exfat/
Dexfat_cache.c228 _content = GET16(fat_entry); in __FAT_read()
360 content |= GET16(fat_entry) & 0x000F; in __FAT_write()
378 content |= GET16(fat_entry) & 0xF000; in __FAT_write()
Dexfat_core.c731 uni = GET16(((u8 *)tmp_bh->b_data) + i); in __load_upcase_table()
802 uni = GET16(uni_upcase + i); in __load_default_upcase_table()
2687 *uniname = GET16(ep->unicode_0_4 + i); in extract_uni_name_from_ext_entry()
3020 num_root_sectors = GET16(p_bpb->num_root_entries) << DENTRY_SIZE_BITS; in fat16_mount()
3030 p_fs->num_FAT_sectors = GET16(p_bpb->num_fat_sectors); in fat16_mount()
3032 p_fs->FAT1_start_sector = p_fs->PBR_sector + GET16(p_bpb->num_reserved); in fat16_mount()
3043 p_fs->num_sectors = GET16(p_bpb->num_sectors); in fat16_mount()
3059 p_fs->dentries_in_root = GET16(p_bpb->num_root_entries); in fat16_mount()
3090 p_fs->FAT1_start_sector = p_fs->PBR_sector + GET16(p_bpb->num_reserved); in fat32_mount()
3191 p_fs->vol_flag = (u32)GET16(p_bpb->vol_flags); in exfat_mount()
Dexfat.h101 #define GET16(p_src) \ macro
144 #define GET16_A(p_src) GET16(p_src)
Dexfat_super.c402 if (GET16(p_pbr->bpb + 11)) /* num_fat_sectors */ in ffsMountVol()