Home
last modified time | relevance | path

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

/reactos/drivers/filesystems/vfatfs/
H A Dfcb.c169 ULONG ShortIndex; in vfatDelFCBFromTable() local
173 ShortIndex = pFCB->ShortHash.Hash % pVCB->HashTableSize; in vfatDelFCBFromTable()
177 entry = pVCB->FcbHashTable[ShortIndex]; in vfatDelFCBFromTable()
180 pVCB->FcbHashTable[ShortIndex] = entry->next; in vfatDelFCBFromTable()
405 ULONG ShortIndex; in vfatAddFCBToTable() local
409 ShortIndex = pFCB->ShortHash.Hash % pVCB->HashTableSize; in vfatAddFCBToTable()
417 pFCB->ShortHash.next = pVCB->FcbHashTable[ShortIndex]; in vfatAddFCBToTable()
418 pVCB->FcbHashTable[ShortIndex] = &pFCB->ShortHash; in vfatAddFCBToTable()