Searched defs:cSectorsMax (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/Storage/
H A DDevATA.cpp2023 uint32_t cSectorsMax; /**< Maximum amount of sectors to read without exceeding the I/O buffer. */ local
2026 cSectorsMax = cbTransfer / s->cbATAPISector;
2027 Assert(cSectorsMax * s->cbATAPISector <= s->cbIOBuffer);
2062 cSectorsMax = RT_MIN(cSectorsMax, cSectors);
2065 for (uint32_t i = cSectorsMax; i > 0; i -= cReqSectors)
2110 ataH2BE_U16(s->aATAPICmd + 7, cSectors - cSectorsMax);
2115 ataH2BE_U32(s->aATAPICmd + 6, cSectors - cSectorsMax);
2119 ataH2BE_U24(s->aATAPICmd + 6, cSectors - cSectorsMax);
2123 ataLBA2MSF(s->aATAPICmd + 6, iATAPILBA + cSectors - cSectorsMax);
[all...]

Completed in 58 milliseconds