Home
last modified time | relevance | path

Searched refs:ip2 (Results 1 – 17 of 17) sorted by relevance

/freebsd/crypto/openssl/test/
H A Dv3ext.c123 const char *ip2; member
197 ip2 = a2i_IPADDRESS(ranges[i].ip2); in test_addr_ranges()
198 if (!TEST_ptr(ip2)) in test_addr_ranges()
217 ASN1_OCTET_STRING_free(ip2); in test_addr_ranges()
218 ip1 = ip2 = NULL; in test_addr_ranges()
225 ASN1_OCTET_STRING_free(ip2); in test_addr_ranges()
246 ip2 = a2i_IPADDRESS(ranges[0].ip2); in test_addr_fam_len()
247 if (!TEST_ptr(ip2)) in test_addr_fam_len()
311 ASN1_OCTET_STRING_free(ip2); in test_addr_fam_len()
427 || !TEST_ptr(ip2[i] = a2i_IPADDRESS(ranges[i].ip2)) in test_addr_subset()
[all …]
/freebsd/sbin/ipf/ipsend/
H A Dip.c241 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/usr.bin/mail/
H A Dcmd2.c54 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/decompress/
H A Dhuf_decompress_amd64.S56 #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)
488 cmpq %ip1, %ip2
[all …]
/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstd_fast.c114 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()
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()
239 ip1 = ip2; in ZSTD_compressBlock_fast_noDict_generic()
240 ip2 = ip0 + step; in ZSTD_compressBlock_fast_noDict_generic()
[all …]
/freebsd/contrib/netbsd-tests/ipf/
H A Dt_pools.sh37 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 Dip22 { "file://input/ip2.data"; };
/freebsd/sys/netinet6/
H A Din6_jail.c73 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 Din_jail.c73 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 Dzstd_fast.c92 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 Dv3_ncons.c213 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 Dip_fil_freebsd.c502 ip_t *ip, *ip2; in ipf_send_icmp_err() local
610 ip2 = (ip_t *)&icmp->icmp_ip; in ipf_send_icmp_err()
629 bcopy((char *)fin->fin_ip, (char *)ip2, ohlen); in ipf_send_icmp_err()
H A Dip_nat6.c1498 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 Dosm_torus.c2036 int im1, ip1, ip2; in safe_x_ring() local
2064 t->sw[ip2][j][k], in safe_x_ring()
2083 t->sw[ip2][j][k]) in safe_x_ring()
2469 t->sw[ip2][j][k]))) { in handle_case_0x305()
2478 t->sw[ip2][jp1][k]))) { in handle_case_0x305()
2496 t->sw[ip2][j][k]))) { in handle_case_0x511()
2505 t->sw[ip2][j][kp1]))) { in handle_case_0x511()
3245 t->sw[ip2][jp1][kp1]))) { in handle_case_0x757()
3284 t->sw[ip2][j][kp1]))) { in handle_case_0x75d()
3362 t->sw[ip2][jp1][k]))) { in handle_case_0x775()
[all …]
/freebsd/sys/kern/
H A Dkern_resource.c1099 long *ip, *ip2; in rucollect() local
1105 ip2 = &ru2->ru_first; in rucollect()
1107 *ip++ += *ip2++; in rucollect()
/freebsd/crypto/openssl/crypto/des/asm/
H A Ddes_enc.m4632 define({ip2},{local2})
667 ld [out2+260], ip2
673 and local0, ip2, local0
700 and temp1, ip2, temp1
/freebsd/sys/dev/irdma/
H A Dirdma_cm.c3999 bool check_vlan, u32 *ip2, in irdma_ip_vlan_match() argument
4003 !memcmp(ip1, ip2, ipv4 ? 4 : 16); in irdma_ip_vlan_match()