Searched refs:temp32 (Results 1 – 10 of 10) sorted by relevance
/freebsd/sbin/ipf/ipsend/ |
H A D | ipsend.c | 143 u_32_t temp32; in udpcksum() local 151 temp32 = 0; in udpcksum() 153 temp32 += opts[0] + opts[1] + opts[2] + opts[3] + opts[4] + opts[5]; in udpcksum() 154 temp32 = (temp32 >> 16) + (temp32 & 65535); in udpcksum() 155 temp32 += (temp32 >> 16); in udpcksum() 156 udp->uh_sum = temp32 & 65535; in udpcksum()
|
/freebsd/contrib/ntp/ntpd/ |
H A D | ntp_crypto.c | 442 u_int32 temp32; in crypto_recv() 562 temp32 = crypto_flags & CRYPTO_FLAG_MASK; in crypto_recv() 586 if ((temp32 && !(fstamp & in crypto_recv() 588 (!temp32 && (fstamp & in crypto_recv() 599 temp32 = (fstamp >> 16) & 0xffff; in crypto_recv() 601 (const EVP_MD *)EVP_get_digestbynid(temp32); in crypto_recv() 632 OBJ_nid2ln(temp32)); in crypto_recv() 685 temp32 = xinfo->nid; in crypto_recv() 689 OBJ_nid2ln(temp32), temp32, in crypto_recv() 450 u_int32 temp32; crypto_recv() local 1588 u_int32 temp32; crypto_encrypt() local [all...] |
H A D | ntp_proto.c | 4458 u_int32 temp32; in peer_xmit() local 4460 temp32 = CRYPTO_RESP; in peer_xmit() 4461 peer->cmmd->opcode |= htonl(temp32); in peer_xmit() 4601 u_int32 temp32; in fast_xmit() local 4825 temp32 = CRYPTO_RESP; in fast_xmit() 4826 rpkt->exten[0] |= htonl(temp32); in fast_xmit()
|
/freebsd/sys/dev/bnxt/bnxt_re/ |
H A D | qplib_fp.c | 1374 u32 temp32[4]; in bnxt_qplib_modify_qp() local 1410 memcpy(temp32, qp->ah.dgid.data, sizeof(struct bnxt_qplib_gid)); in bnxt_qplib_modify_qp() 1411 req.dgid[0] = cpu_to_le32(temp32[0]); in bnxt_qplib_modify_qp() 1412 req.dgid[1] = cpu_to_le32(temp32[1]); in bnxt_qplib_modify_qp() 1413 req.dgid[2] = cpu_to_le32(temp32[2]); in bnxt_qplib_modify_qp() 1414 req.dgid[3] = cpu_to_le32(temp32[3]); in bnxt_qplib_modify_qp() 1507 u32 temp32[4]; in bnxt_qplib_query_qp() local 1538 temp32[0] = le32_to_cpu(sb->dgid[0]); in bnxt_qplib_query_qp() 1539 temp32[1] = le32_to_cpu(sb->dgid[1]); in bnxt_qplib_query_qp() 1540 temp32[2] = le32_to_cpu(sb->dgid[2]); in bnxt_qplib_query_qp() [all …]
|
H A D | qplib_sp.c | 466 u32 temp32[4]; in bnxt_qplib_create_ah() local 473 memcpy(temp32, ah->dgid.data, sizeof(struct bnxt_qplib_gid)); in bnxt_qplib_create_ah() 474 req.dgid[0] = cpu_to_le32(temp32[0]); in bnxt_qplib_create_ah() 475 req.dgid[1] = cpu_to_le32(temp32[1]); in bnxt_qplib_create_ah() 476 req.dgid[2] = cpu_to_le32(temp32[2]); in bnxt_qplib_create_ah() 477 req.dgid[3] = cpu_to_le32(temp32[3]); in bnxt_qplib_create_ah()
|
/freebsd/sys/dev/gem/ |
H A D | if_gem.c | 470 uint32_t temp32; in gem_rxcksum() local 516 temp32 = cksum - *opts; in gem_rxcksum() 517 temp32 = (temp32 >> 16) + (temp32 & 65535); in gem_rxcksum() 518 cksum = temp32 & 65535; in gem_rxcksum()
|
/freebsd/sys/dev/ath/ath_hal/ar5211/ |
H A D | ar5211_reset.c | 1391 uint32_t temp32; in ar5211SetPowerTable() local 1480 temp32 = 0xffff & ((pcdacTable[2 * i + 1] << 8) | 0xff); in ar5211SetPowerTable() 1481 temp32 = (temp32 << 16) | (0xffff & ((pcdacTable[2 * i] << 8) | 0xff)); in ar5211SetPowerTable() 1482 OS_REG_WRITE(ah, addr, temp32); in ar5211SetPowerTable()
|
/freebsd/sys/dev/fxp/ |
H A D | if_fxp.c | 1780 int32_t hlen, len, pktlen, temp32; in fxp_rxcsum() local 1842 temp32 = csum - *opts; in fxp_rxcsum() 1843 temp32 = (temp32 >> 16) + (temp32 & 65535); in fxp_rxcsum() 1844 csum = temp32 & 65535; in fxp_rxcsum()
|
/freebsd/sys/dev/cas/ |
H A D | if_cas.c | 544 uint32_t temp32; in cas_rxcksum() local 589 temp32 = cksum - *opts; in cas_rxcksum() 590 temp32 = (temp32 >> 16) + (temp32 & 65535); in cas_rxcksum() 591 cksum = temp32 & 65535; in cas_rxcksum()
|
/freebsd/sys/dev/msk/ |
H A D | if_msk.c | 3064 int32_t hlen, len, pktlen, temp32; in msk_rxcsum() local 3139 temp32 = csum - *opts; in msk_rxcsum() 3140 temp32 = (temp32 >> 16) + (temp32 & 65535); in msk_rxcsum() 3141 csum = temp32 & 65535; in msk_rxcsum()
|