/freebsd/crypto/openssl/test/ |
H A D | v3ext.c | 123 const char *ip2; member 177 ASN1_OCTET_STRING *ip1 = NULL, *ip2 = NULL; in test_addr_ranges() local 197 ip2 = a2i_IPADDRESS(ranges[i].ip2); in test_addr_ranges() 198 if (!TEST_ptr(ip2)) in test_addr_ranges() 200 if (!TEST_int_eq(ip2->length, ip1->length)) in test_addr_ranges() 202 if (!TEST_true(memcmp(ip1->data, ip2->data, ip1->length) <= 0)) in test_addr_ranges() 205 if (!TEST_true(X509v3_addr_add_range(addr, ranges[i].afi, NULL, ip1->data, ip2->data))) in test_addr_ranges() 217 ASN1_OCTET_STRING_free(ip2); in test_addr_ranges() 218 ip1 = ip2 in test_addr_ranges() 234 ASN1_OCTET_STRING *ip1 = NULL, *ip2 = NULL; test_addr_fam_len() local 420 ASN1_OCTET_STRING *ip2[3] = { NULL, NULL }; test_addr_subset() local [all...] |
/freebsd/sbin/ipf/ipsend/ |
H A D | ip.c | 241 ip_t *ip2; in send_tcp() local 246 ip2 = (struct ip *)lbuf; in send_tcp() 247 t2 = (tcphdr_t *)((char *)ip2 + hlen); in send_tcp() 251 bzero((char *)ip2, sizeof(*ip2) + sizeof(*t2)); in send_tcp() 253 ip2->ip_p = ip->ip_p; in send_tcp() 254 ip2->ip_src = ip->ip_src; in send_tcp() 255 ip2->ip_dst = ip->ip_dst; in send_tcp() 272 ip2->ip_len = htons(thlen); in send_tcp() 275 t2->th_sum = chksum((u_short *)ip2, thlen + sizeof(ip_t)); in send_tcp()
|
/freebsd/sys/contrib/zstd/lib/decompress/ |
H A D | huf_decompress_amd64.S | 56 #define ip2 r10 macro 121 movq 16(%rax), %ip2 194 cmpq %ip1, %ip2 198 cmpq %ip2, %ip3 252 movq %ip2, 8(%rsp) 275 movq 8(%rsp), %ip2 289 movq %ip2, 8(%rsp) 302 movq 8(%rsp), %ip2 324 movq %ip2, 16(%rax) 375 movq 16(%rax), %ip2 [all …]
|
/freebsd/usr.bin/mail/ |
H A D | cmd2.c | 54 int *ip, *ip2, list[2], mdot; in next() local 76 ip2 = ip; in next() 78 mp = &message[*ip2 - 1]; in next() 83 if (*ip2 != 0) in next() 84 ip2++; in next() 85 if (*ip2 == 0) in next() 86 ip2 = msgvec; in next() 87 } while (ip2 != ip); in next()
|
/freebsd/sys/contrib/zstd/lib/compress/ |
H A D | zstd_fast.c | 114 const BYTE* ip2; in ZSTD_compressBlock_fast_noDict_generic() local 156 ip2 = ip0 + step; in ZSTD_compressBlock_fast_noDict_generic() 157 ip3 = ip2 + 1; in ZSTD_compressBlock_fast_noDict_generic() 170 const U32 rval = MEM_read32(ip2 - rep_offset1); in ZSTD_compressBlock_fast_noDict_generic() 177 if ((MEM_read32(ip2) == rval) & (rep_offset1 > 0)) { in ZSTD_compressBlock_fast_noDict_generic() 178 ip0 = ip2; in ZSTD_compressBlock_fast_noDict_generic() 206 hash1 = ZSTD_hashPtr(ip2, hlog, mls); in ZSTD_compressBlock_fast_noDict_generic() 210 ip1 = ip2; in ZSTD_compressBlock_fast_noDict_generic() 211 ip2 = ip3; in ZSTD_compressBlock_fast_noDict_generic() 235 hash1 = ZSTD_hashPtr(ip2, hlog, mls); in ZSTD_compressBlock_fast_noDict_generic() [all …]
|
/freebsd/contrib/netbsd-tests/ipf/ |
H A D | t_pools.sh | 37 cp $(atf_get_srcdir)/input/ip2.data input/ 81 test_case ip2 iptest text text 101 atf_add_test_case ip2
|
/freebsd/contrib/netbsd-tests/ipf/regress/ |
H A D | ip2 | 2 { "file://input/ip2.data"; };
|
/freebsd/sys/netinet6/ |
H A D | in6_jail.c | 73 prison_qcmp_v6(const void *ip1, const void *ip2) in prison_qcmp_v6() argument 79 ia6b = (const struct in6_addr *)ip2; in prison_qcmp_v6()
|
/freebsd/sys/netinet/ |
H A D | in_jail.c | 73 prison_qcmp_v4(const void *ip1, const void *ip2) in prison_qcmp_v4() argument 83 iab = ntohl(((const struct in_addr *)ip2)->s_addr); in prison_qcmp_v4()
|
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/ |
H A D | zstd_fast.c | 92 BYTE const* ip2 = ip0 + 2; in ZSTD_compressBlock_fast_generic() local 101 BYTE const* repMatch = ip2 - offset_1; in ZSTD_compressBlock_fast_generic() 115 if ((offset_1 > 0) & (MEM_read32(repMatch) == MEM_read32(ip2))) { in ZSTD_compressBlock_fast_generic() 116 mLength = (ip2[-1] == repMatch[-1]) ? 1 : 0; in ZSTD_compressBlock_fast_generic() 117 ip0 = ip2 - mLength; in ZSTD_compressBlock_fast_generic()
|
/freebsd/crypto/openssl/crypto/x509/ |
H A D | v3_ncons.c | 213 char *ip2 = ossl_ipaddr_to_asc(ip->data + len1, len2); in print_nc_ipadd() local 214 int ret = ip1 != NULL && ip2 != NULL in print_nc_ipadd() 215 && BIO_printf(bp, "IP:%s/%s", ip1, ip2) > 0; in print_nc_ipadd() 218 OPENSSL_free(ip2); in print_nc_ipadd()
|
/freebsd/sys/netpfil/ipfilter/netinet/ |
H A D | ip_fil_freebsd.c | 475 ip_t *ip, *ip2; in ipf_send_icmp_err() local 583 ip2 = (ip_t *)&icmp->icmp_ip; in ipf_send_icmp_err() 602 bcopy((char *)fin->fin_ip, (char *)ip2, ohlen); in ipf_send_icmp_err()
|
H A D | ip_nat6.c | 1498 ipf_nat6_ip6subtract(i6addr_t *ip1, i6addr_t *ip2) in ipf_nat6_ip6subtract() argument 1507 l2 = *ip2; in ipf_nat6_ip6subtract()
|
/freebsd/contrib/ofed/opensm/opensm/ |
H A D | osm_torus.c | 2036 int im1, ip1, ip2; in safe_x_ring() local 2055 ip2 = canonicalize(i + 2, t->x_sz); in safe_x_ring() 2058 !!t->sw[ip1][j][k] + !!t->sw[ip2][j][k] < 2) { in safe_x_ring() 2062 if (t->sw[ip2][j][k] && t->sw[im1][j][k]) in safe_x_ring() 2064 t->sw[ip2][j][k], in safe_x_ring() 2080 if (t->sw[ip1][j][k] && t->sw[ip2][j][k]) in safe_x_ring() 2083 t->sw[ip2][j][k]) in safe_x_ring() 2462 int ip2 = canonicalize(i + 2, t->x_sz); in handle_case_0x305() local 2469 t->sw[ip2][j][k]))) { in handle_case_0x305() 2478 t->sw[ip2][jp1][k]))) { in handle_case_0x305() [all …]
|
/freebsd/sys/kern/ |
H A D | kern_resource.c | 1214 long *ip, *ip2; in rucollect() local 1220 ip2 = &ru2->ru_first; in rucollect() 1222 *ip++ += *ip2++; in rucollect()
|
/freebsd/crypto/openssl/crypto/des/asm/ |
H A D | des_enc.m4 | 632 define({ip2},{local2}) 667 ld [out2+260], ip2 673 and local0, ip2, local0 700 and temp1, ip2, temp1
|
/freebsd/sys/dev/irdma/ |
H A D | irdma_cm.c | 3999 bool check_vlan, u32 *ip2, in irdma_ip_vlan_match() 4003 !memcmp(ip1, ip2, ipv4 ? 4 : 16); 3996 irdma_ip_vlan_match(u32 * ip1,u16 vlan_id1,bool check_vlan,u32 * ip2,u16 vlan_id2,bool ipv4) irdma_ip_vlan_match() argument
|