Home | History | Annotate | Download | only in IdeBusPei

Lines Matching defs:SectorCount

578     AtapiBlkIoDev->IdeIoPortReg[Index1].SectorCount  = (UINT16) (CommandBlockBaseAddr + 0x2);

709 SectorCountRegister = AtapiBlkIoDev->IdeIoPortReg[Channel].SectorCount;
717 // refresh the SectorCount register
773 // Write SectorCount 0x55 but return valid state value. Maybe no device
1259 SectorCountReg = AtapiBlkIoDev->IdeIoPortReg[Channel].SectorCount;
2219 UINT16 SectorCount;
2244 SectorCount = (UINT16) BlocksRemaining;
2246 SectorCount = MaxBlock;
2266 Read10Packet->TranLen1 = (UINT8) (SectorCount & 0xff);
2267 Read10Packet->TranLen0 = (UINT8) (SectorCount >> 8);
2269 ByteCount = (UINT32) (SectorCount * BlockSize);
2283 Lba32 += SectorCount;
2284 PtrBuffer = (UINT8 *) PtrBuffer + SectorCount * BlockSize;
2285 BlocksRemaining -= SectorCount;