Searched refs:cReqSectors (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Devices/Storage/
H A DDevAHCI.cpp3960 uint32_t iATAPILBA, cSectors, cReqSectors, cbCurrTX; local
3993 cReqSectors = 0;
3994 for (uint32_t i = cSectors; i > 0; i -= cReqSectors)
3997 cReqSectors = SCSI_MAX_BUFFER_SIZE / pAhciReq->cbATAPISector;
3999 cReqSectors = i;
4000 cbCurrTX = pAhciReq->cbATAPISector * cReqSectors;
4007 ataH2BE_U16(aATAPICmd + 7, cReqSectors);
4012 ataH2BE_U32(aATAPICmd + 6, cReqSectors);
4016 ataH2BE_U24(aATAPICmd + 6, cReqSectors);
4020 ataLBA2MSF(aATAPICmd + 6, iATAPILBA + cReqSectors);
[all...]
H A DDevATA.cpp2021 uint32_t iATAPILBA, cSectors, cReqSectors, cbCurrTX; local
2064 cReqSectors = 0;
2065 for (uint32_t i = cSectorsMax; i > 0; i -= cReqSectors)
2068 cReqSectors = SCSI_MAX_BUFFER_SIZE / s->cbATAPISector;
2070 cReqSectors = i;
2071 cbCurrTX = s->cbATAPISector * cReqSectors;
2078 ataH2BE_U16(aATAPICmd + 7, cReqSectors);
2083 ataH2BE_U32(aATAPICmd + 6, cReqSectors);
2087 ataH2BE_U24(aATAPICmd + 6, cReqSectors);
2091 ataLBA2MSF(aATAPICmd + 6, iATAPILBA + cReqSectors);
[all...]

Completed in 70 milliseconds