Searched refs:fsize (Results 1 - 8 of 8) sorted by relevance

/u-boot/tools/
H A Dmxsboot.c536 off_t fsize; local
540 fsize = lseek(infd, 0, SEEK_END);
542 size = fsize + 4 * 512;
550 ret = read(infd, (uint8_t *)buf + 4 * 512, fsize);
551 if (ret != fsize) {
H A Dzynqmpimage.c343 static uint32_t fsize(FILE *fp) function
385 zynqhdr->pfw_image_length = fsize(fpmu);
536 tparams->header_size += fsize(fpmu);
H A Difwitool.c405 off_t fsize; local
408 fsize = ftell(f);
410 return fsize;
H A Dmxsimage.c1648 FILE *fp, long fsize)
1759 if (hdr->image_blocks != fsize / SB_BLOCK_SIZE)
1647 sb_verify_image_header(struct sb_image_ctx *ictx, FILE *fp, long fsize) argument
/u-boot/scripts/
H A DMakefile.lib533 fsize=$$(stat -c "%s" $$F); \
534 dec_size=$$(expr $$dec_size + $$fsize); \
/u-boot/drivers/mtd/ubispl/
H A Dubispl.c1071 u32 fsize; local
1093 fsize = info->peb_size * info->peb_count;
1094 ubi->fsize_mb = fsize >> 20;
/u-boot/fs/yaffs2/
H A Dyaffs_guts.h968 void yaffs_oh_size_load(struct yaffs_obj_hdr *oh, loff_t fsize);
H A Dyaffs_guts.c4992 void yaffs_oh_size_load(struct yaffs_obj_hdr *oh, loff_t fsize) argument
4994 oh->file_size_low = (fsize & 0xFFFFFFFF);
4995 oh->file_size_high = ((fsize >> 32) & 0xFFFFFFFF);

Completed in 162 milliseconds