Home
last modified time | relevance | path

Searched refs:fatlength (Results 1 – 3 of 3) sorted by relevance

/openbmc/u-boot/fs/fat/
H A Dfat.c199 __u32 fatlength = mydata->fatlength; in get_fatent() local
203 if (startblock + getsize > fatlength) in get_fatent()
204 getsize = fatlength - startblock; in get_fatent()
558 mydata->fatlength = bs.fat32_length; in get_fs_info()
561 mydata->fatlength = bs.fat_length; in get_fs_info()
572 mydata->rootdir_sect = mydata->fat_sect + mydata->fatlength * bs.fats; in get_fs_info()
618 mydata->fatsize, mydata->fat_sect, mydata->fatlength); in get_fs_info()
H A Dfat_write.c108 __u32 fatlength = mydata->fatlength; in flush_dirty_fat_buffer() local
119 if (startblock + getsize > fatlength) in flush_dirty_fat_buffer()
120 getsize = fatlength - startblock; in flush_dirty_fat_buffer()
132 startblock += mydata->fatlength; in flush_dirty_fat_buffer()
291 __u32 fatlength = mydata->fatlength; in set_fatent_value() local
295 if (startblock + getsize > fatlength) in set_fatent_value()
296 getsize = fatlength - startblock; in set_fatent_value()
/openbmc/u-boot/include/
H A Dfat.h166 __u32 fatlength; /* Length of FAT in sectors */ member