Home | History | Annotate | Download | only in IdeBusDxe

Lines Matching defs:SectorCount

1445   UINT16                SectorCount;

1472 SectorCount = (UINT16) BlocksRemaining;
1475 SectorCount = MaxBlock;
1497 Read10Packet->TranLen1 = (UINT8) (SectorCount & 0xff);
1498 Read10Packet->TranLen0 = (UINT8) (SectorCount >> 8);
1500 ByteCount = SectorCount * BlockSize;
1519 Lba32 += SectorCount;
1520 PtrBuffer = (UINT8 *) PtrBuffer + SectorCount * BlockSize;
1521 BlocksRemaining -= SectorCount;
1563 UINT16 SectorCount;
1593 SectorCount = MaxBlock;
1595 SectorCount = (UINT16) BlocksRemaining;
1616 Read10Packet->TranLen1 = (UINT8) (SectorCount & 0xff);
1617 Read10Packet->TranLen0 = (UINT8) (SectorCount >> 8);
1619 ByteCount = SectorCount * BlockSize;
1632 Lba32 += SectorCount;
1633 PtrBuffer = ((UINT8 *) PtrBuffer + SectorCount * BlockSize);
1634 BlocksRemaining -= SectorCount;