Home
last modified time | relevance | path

Searched refs:objsize (Results 1 – 2 of 2) sorted by relevance

/fatfs-2.7.6/
Dff.c1168 …if ((obj->objsize != 0 && obj->sclust != 0) || obj->stat == 0) { /* Object except root dir must ha… in get_fat()
1170 …DWORD clen = (DWORD)((LBA_t)((obj->objsize - 1) / SS(fs)) / fs->csize); /* Number of clusters - 1 … in get_fat()
2156 obj->objsize = ld_qword(fs->dirbuf + XDIR_FileSize); /* Size */
2179 dp->obj.objsize = obj->c_size & 0xFFFFFF00;
2466 dp->obj.objsize += (DWORD)fs->csize * SS(fs); /* Increase the directory size by cluster size */
2467 st_qword(fs->dirbuf + XDIR_FileSize, dp->obj.objsize);
2468 st_qword(fs->dirbuf + XDIR_ValidFileSize, dp->obj.objsize);
3033 dp->obj.objsize = ld_dword(fs->dirbuf + XDIR_FileSize);
3069 dp->obj.c_size = ((DWORD)dp->obj.objsize & 0xFFFFFF00) | dp->obj.stat;
3785 fp->obj.c_size = ((DWORD)dj.obj.objsize & 0xFFFFFF00) | dj.obj.stat;
[all …]
/fatfs-2.7.6/include/
Dff.h189 FSIZE_t objsize; /* Object size (valid when sclust != 0) */ member
340 #define f_eof(fp) ((int)((fp)->fptr == (fp)->obj.objsize))
343 #define f_size(fp) ((fp)->obj.objsize)