Searched refs:allocationLength (Results 1 - 8 of 8) sorted by relevance

/haiku/src/add-ons/kernel/bus_managers/ata/
H A DATAHelper.cpp26 copy_sg_data(scsi_ccb *ccb, uint offset, uint allocationLength, argument
43 int requestSize = MIN(allocationLength, ccb->data_length) - offset;
H A DATADevice.cpp159 uint32 allocationLength = command->allocation_length; local
160 copy_sg_data(ccb, 0, allocationLength, &data, sizeof(data), false);
162 allocationLength), ccb->data_length);
211 uint32 allocationLength = B_BENDIAN_TO_HOST_INT32(command->alloc_length); local
223 size_t copySize = min_c(allocationLength, sizeof(data));
H A DATAPrivate.h58 bool copy_sg_data(scsi_ccb *ccb, uint offset, uint allocationLength,
/haiku/src/add-ons/kernel/busses/scsi/virtio/
H A DVirtioSCSIHelper.cpp27 copy_sg_data(scsi_ccb *ccb, uint offset, uint allocationLength, argument
44 int requestSize = MIN(allocationLength, ccb->data_length) - offset;
H A DVirtioSCSIPrivate.h30 bool copy_sg_data(scsi_ccb *ccb, uint offset, uint allocationLength,
/haiku/src/add-ons/kernel/file_systems/udf/
H A DUdfString.cpp274 int32 allocationLength = maxLength*2+1; // Need at most 2 utf8 chars per uint8 char local
275 fUtf8String = new(nothrow) char[allocationLength];
285 allocationLength));
296 int32 allocationLength = maxLength*3+1; // Need at most 3 utf8 chars per uint16 char local
297 fUtf8String = new(nothrow) char[allocationLength];
307 allocationLength));
/haiku/src/add-ons/kernel/bus_managers/scsi/
H A Demulation.cpp182 size_t allocationLength = cmd->allocation_length local
184 cdb->allocation_length = B_HOST_TO_BENDIAN_INT16(allocationLength);
186 SHOW_FLOW(3, "allocation_length=%" B_PRIuSIZE, allocationLength);
196 request->data_length = allocationLength;
/haiku/src/add-ons/kernel/busses/scsi/ahci/
H A Dahci_port.cpp624 uint8 allocationLength = cmd->allocation_length; local
625 vpdDataLength = min_c(allocationLength, bufferLength);
648 uint8 allocationLength = cmd->allocation_length; local
649 vpdDataLength = min_c(allocationLength, sizeof(vpdPageData));
666 uint8 allocationLength = cmd->allocation_length; local
667 vpdDataLength = min_c(allocationLength, sizeof(vpdPageData));
941 uint32 allocationLength = B_BENDIAN_TO_HOST_INT32(cmd->alloc_length); local
942 size_t copySize = min_c(allocationLength, sizeof(scsiData));

Completed in 85 milliseconds