Home
last modified time | relevance | path

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

/reactos/drivers/filesystems/fastfat/
H A Dallocsup.c1810 ULONG StartingCluster; in _Requires_lock_held_() local
2035 StartingCluster = FatFindFreeClusterRun( IrpContext, in _Requires_lock_held_()
2048 if ((StartingCluster != 1) && in _Requires_lock_held_()
2049 ((0 == AbsoluteClusterHint) || (StartingCluster == WindowRelativeHint)) in _Requires_lock_held_()
2060 FatReserveClusters(IrpContext, Vcb, StartingCluster, ClusterCount); in _Requires_lock_held_()
2064 StartingCluster += Window->FirstCluster; in _Requires_lock_held_()
2065 StartingCluster -= 2; in _Requires_lock_held_()
2078 FatGetLboFromIndex( Vcb, StartingCluster ), in _Requires_lock_held_()
2087 StartingCluster, in _Requires_lock_held_()
2113 StartingCluster - Window->FirstCluster + 2, in _Requires_lock_held_()
H A Dfsctrl.c5038 ULONG StartingCluster; local
5136 StartingCluster = StartingLcn.LowPart & ~7;
5146 DesiredClusters = TotalClusters - StartingCluster;
5177 OutputBuffer->StartingLcn.QuadPart = StartingCluster;
5189 (PUCHAR)Vcb->FreeClusterBitMap.Buffer + StartingCluster/8,
5205 EndingCluster = StartingCluster + (BytesToCopy * 8);
5218 StartingCluster + 2,
/reactos/drivers/filesystems/udfs/
H A Dfscntrl.cpp2088 ULONG StartingCluster; in UDFGetVolumeBitmap() local
2140 StartingCluster = StartingLcn.LowPart & ~7; in UDFGetVolumeBitmap()
2144 DesiredClusters = TotalClusters - StartingCluster; in UDFGetVolumeBitmap()
2162 OutputBuffer->StartingLcn.QuadPart = StartingCluster; in UDFGetVolumeBitmap()
2171 for(i=StartingCluster & ~7; i<lim; i++) { in UDFGetVolumeBitmap()