Home
last modified time | relevance | path

Searched refs:Cdb (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/sys/dev/hptmv/
H A Dentry.c2750 UCHAR Cdb[16]; in OsSendCommand() local
2782 switch (Cdb[0]) in OsSendCommand()
2787 pCmd->uCmd.Ide.Lba = ((ULONG)Cdb[1] << 16) | ((ULONG)Cdb[2] << 8) | (ULONG)Cdb[3]; in OsSendCommand()
2794 (HPT_U64)Cdb[2] << 56 | in OsSendCommand()
2795 (HPT_U64)Cdb[3] << 48 | in OsSendCommand()
2800 (HPT_U64)Cdb[8] << 8 | in OsSendCommand()
2801 (HPT_U64)Cdb[9]; in OsSendCommand()
2802 pCmd->uCmd.Ide.nSectors = (USHORT)Cdb[12] << 8 | (USHORT)Cdb[13]; in OsSendCommand()
2806 …pCmd->uCmd.Ide.Lba = (ULONG)Cdb[5] | ((ULONG)Cdb[4] << 8) | ((ULONG)Cdb[3] << 16) | ((ULONG)Cdb[2]… in OsSendCommand()
2807 pCmd->uCmd.Ide.nSectors = (USHORT) Cdb[8] | ((USHORT)Cdb[7]<<8); in OsSendCommand()
[all …]
/freebsd-14.2/sys/dev/arcmsr/
H A Darcmsr.h1238 u_int8_t Cdb[16]; /* 10h SCSI CDB */ member
H A Darcmsr.c1003 bcopy(scsiio_cdb_ptr(pcsio), arcmsr_cdb->Cdb, pcsio->cdb_len); in arcmsr_build_srb()