Searched refs:sgCount (Results 1 - 6 of 6) sorted by relevance

/haiku/src/add-ons/kernel/bus_managers/ata/
H A DATAHelper.cpp30 int sgCount = ccb->sg_count; local
33 while (sgCount > 0 && offset >= sgList->size) {
36 --sgCount;
39 if (sgCount == 0)
46 for (; size > 0 && requestSize > 0 && sgCount > 0; ++sgList, --sgCount) {
/haiku/src/add-ons/kernel/busses/scsi/virtio/
H A DVirtioSCSIHelper.cpp31 int sgCount = ccb->sg_count; local
34 while (sgCount > 0 && offset >= sgList->size) {
37 --sgCount;
40 if (sgCount == 0)
47 for (; size > 0 && requestSize > 0 && sgCount > 0; ++sgList, --sgCount) {
/haiku/src/add-ons/kernel/busses/scsi/ahci/
H A Dutil.h19 status_t sg_memcpy(const physical_entry *sgTable, int sgCount, const void *data, size_t dataSize);
H A Dutil.cpp93 sg_memcpy(const physical_entry *sgTable, int sgCount, const void *data, argument
102 for (i = 0; i < sgCount && dataSize > 0; i++) {
H A Dahci_port.h69 status_t FillPrdTable(volatile prd *prdTable, int *prdCount, int prdMax, const physical_entry *sgTable, int sgCount, size_t dataSize);
H A Dahci_port.cpp497 const physical_entry* sgTable, int sgCount, size_t dataSize)
500 while (sgCount > 0 && dataSize > 0) {
530 sgCount--;
496 FillPrdTable(volatile prd* prdTable, int* prdCount, int prdMax, const physical_entry* sgTable, int sgCount, size_t dataSize) argument

Completed in 75 milliseconds