Home
last modified time | relevance | path

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

/fatfs-2.7.6/
Dff.c1702 dp->dir = fs->win + (ofs % SS(fs)); /* Pointer to the entry in the win[] */ in dir_sdi()
1762 dp->dir = fs->win + ofs % SS(fs); /* Pointer to the entry in the win[] */ in dir_next()
1792 …((fs->fs_type == FS_EXFAT) ? (int)((dp->dir[XDIR_Type] & 0x80) == 0) : (int)(dp->dir[DIR_Name] == …
1794 if (dp->dir[DIR_Name] == DDEM || dp->dir[DIR_Name] == 0) { /* Is the entry free? */
1819 const BYTE* dir /* Pointer to the key entry */ argument
1824 cl = ld_word(dir + DIR_FstClusLO);
1826 cl |= (DWORD)ld_word(dir + DIR_FstClusHI) << 16;
1836 BYTE* dir, /* Pointer to the key entry */ argument
1840 st_word(dir + DIR_FstClusLO, (WORD)cl);
1842 st_word(dir + DIR_FstClusHI, (WORD)(cl >> 16));
[all …]
/fatfs-2.7.6/include/
Dff.h234 BYTE* dir; /* Pointer to the directory item in the win[] */ member