Home
last modified time | relevance | path

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

/fatfs-latest/
Dff.c1751 dp->dir = fs->win + (ofs % SS(fs)); /* Pointer to the entry in the win[] */ in dir_sdi()
1811 dp->dir = fs->win + ofs % SS(fs); /* Pointer to the entry in the win[] */ in dir_next()
1841 …((fs->fs_type == FS_EXFAT) ? (int)((dp->dir[XDIR_Type] & 0x80) == 0) : (int)(dp->dir[DIR_Name] == …
1843 if (dp->dir[DIR_Name] == DDEM || dp->dir[DIR_Name] == 0) { /* Is the entry free? */
1868 const BYTE* dir /* Pointer to the key entry */ argument
1873 cl = ld_word(dir + DIR_FstClusLO);
1875 cl |= (DWORD)ld_word(dir + DIR_FstClusHI) << 16;
1885 BYTE* dir, /* Pointer to the key entry */ argument
1889 st_word(dir + DIR_FstClusLO, (WORD)cl);
1891 st_word(dir + DIR_FstClusHI, (WORD)(cl >> 16));
[all …]
/fatfs-latest/include/
Dff.h232 BYTE* dir; /* Pointer to the directory item in the win[] */ member