Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/fatfs/src/
Dff.c1186 …if ((obj->objsize != 0 && obj->sclust != 0) || obj->stat == 0) { /* Object except root dir must ha… in get_fat()
1188 DWORD clen = (DWORD)((obj->objsize - 1) / SS(fs)) / fs->csize; /* Number of clusters - 1 */ in get_fat()
2215 obj->objsize = ld_qword(fs->dirbuf + XDIR_FileSize); /* Size */
2238 dp->obj.objsize = obj->c_size & 0xFFFFFF00;
2525 … dp->obj.objsize += (DWORD)fs->csize * SS(fs); /* Increase the directory size by cluster size */
2526 st_qword(fs->dirbuf + XDIR_FileSize, dp->obj.objsize); /* Update the allocation status */
2527 st_qword(fs->dirbuf + XDIR_ValidFileSize, dp->obj.objsize);
3056 dp->obj.objsize = ld_dword(fs->dirbuf + XDIR_FileSize);
3092 dp->obj.c_size = ((DWORD)dp->obj.objsize & 0xFFFFFF00) | dp->obj.stat;
3676 fp->obj.c_size = ((DWORD)dj.obj.objsize & 0xFFFFFF00) | dj.obj.stat;
[all …]
Dff.h179 FSIZE_t objsize; /* Object size (valid when sclust != 0) */ member
318 #define f_eof(fp) ((int)((fp)->fptr == (fp)->obj.objsize))
321 #define f_size(fp) ((fp)->obj.objsize)