Home
last modified time | relevance | path

Searched refs:byte3 (Results 1 – 16 of 16) sorted by relevance

/netbsd/src/sys/netinet/
Dsctp_crc32.c155 u_int8_t byte0, byte1, byte2, byte3; in sctp_csum_finalize() local
168 byte3 = (result >> 24) & 0x000000ff; in sctp_csum_finalize()
169 result = ((byte0 << 24) | (byte1 << 16) | (byte2 << 8) | byte3); in sctp_csum_finalize()
/netbsd/src/sys/dev/ata/
Data_raid_via.c122 uint8_t checksum, checksum_alt, byte3, *ptr; in ata_raid_read_config_via() local
168 for (byte3 = 0, checksum = 0, ptr = (uint8_t *)info, count = 0; in ata_raid_read_config_via()
171 byte3 = *ptr++; in ata_raid_read_config_via()
174 checksum_alt = checksum + (byte3 & ~VIA_T_BOOTABLE); in ata_raid_read_config_via()
175 checksum += byte3; in ata_raid_read_config_via()
/netbsd/src/sys/dev/scsipi/
Dscsi_spc.h200 uint8_t byte3; member
264 uint8_t byte3; member
309 uint8_t byte3; member
327 uint8_t byte3; /* see SCSI PROTOCOL SPECIFIC LUN PAGE */ member
Dscsi_ctron_ether.h35 u_int8_t byte3; member
Dscsipi_cd.h89 u_int8_t byte3; member
Dif_se.c847 set_media_cmd.byte3 = type; in se_set_media()
Dif_dse.c159 uint8_t byte3; member
Dcd.c1754 cmd.byte3 = SRS_SUBQ; in cd_read_subchannel()
/netbsd/src/external/gpl3/binutils/dist/binutils/
Dunwind-ia64.c665 unsigned char byte1, byte2, byte3, qp, abreg, x, ytreg; in unw_decode_x4() local
676 byte3 = *dp++; in unw_decode_x4()
682 ytreg = byte3; in unw_decode_x4()
684 if ((byte2 & 0x80) == 0 && byte3 == 0) in unw_decode_x4()
828 unw_word grmask, frmask, byte1, byte2, byte3; in unw_decode_p2_p5() local
837 byte3 = *dp++; in unw_decode_p2_p5()
839 frmask = ((byte1 & 0xf) << 16) | (byte2 << 8) | byte3; in unw_decode_p2_p5()
/netbsd/src/external/gpl3/gcc/dist/libgcc/config/ia64/
Dunwind-ia64.c1127 unsigned char byte1, byte2, byte3, qp, abreg, x, ytreg; in unw_decode_x4() local
1130 byte1 = *dp++; byte2 = *dp++; byte3 = *dp++; in unw_decode_x4()
1136 ytreg = byte3; in unw_decode_x4()
1138 if ((byte2 & 0x80) == 0 && byte3 == 0) in unw_decode_x4()
1227 unw_word grmask, frmask, byte1, byte2, byte3; in unw_decode_p2_p5() local
1229 byte1 = *dp++; byte2 = *dp++; byte3 = *dp++; in unw_decode_p2_p5()
1231 frmask = ((byte1 & 0xf) << 16) | (byte2 << 8) | byte3; in unw_decode_p2_p5()
/netbsd/src/sbin/atactl/
Datactl.c104 uint8_t byte3; member
121 uint8_t byte3; member
668 c.cmd16.byte3 = b3; in satl_command()
686 c.cmd12.byte3 = b3; in satl_command()
/netbsd/src/sys/dev/pci/
Darcmsrvar.h156 uint8_t byte3; member
/netbsd/src/external/bsd/ntp/dist/sntp/libevent/
Devutil.c2058 unsigned byte1,byte2,byte3,byte4; in evutil_inet_pton()
2067 &byte1,&byte2,&byte3,&byte4,&more) != 4) in evutil_inet_pton()
2072 byte3 > 255 || in evutil_inet_pton()
2077 words[7] = (byte3<<8) | byte4; in evutil_inet_pton()
/netbsd/src/external/bsd/libevent/dist/
Devutil.c2060 unsigned byte1,byte2,byte3,byte4; in evutil_inet_pton()
2069 &byte1,&byte2,&byte3,&byte4,&more) != 4) in evutil_inet_pton()
2074 byte3 > 255 || in evutil_inet_pton()
2079 words[7] = (byte3<<8) | byte4; in evutil_inet_pton()
/netbsd/src/sys/dev/ic/
Dadvlib.h367 ASC_SCSI_INQ3 byte3; member
Dadvlib.c3024 if (inq->byte3.rsp_data_fmt >= 2 || inq->byte2.ansi_apr_ver >= 2) { in AscInquiryHandling()