Searched refs:ip (Results 26 - 50 of 1028) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/cddl/boot/zfs/
H A Dfletcher.c30 const uint64_t *ip = buf; local
31 const uint64_t *ipend = ip + (size / sizeof (uint64_t));
34 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) {
35 a0 += ip[0];
36 a1 += ip[1];
48 const uint64_t *ip = buf; local
49 const uint64_t *ipend = ip + (size / sizeof (uint64_t));
52 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip
66 const uint32_t *ip = buf; local
84 const uint32_t *ip = buf; local
[all...]
/freebsd-11-stable/sys/i386/include/
H A Din_cksum.h59 in_cksum_hdr(const struct ip *ip) argument
71 : "g" (((const u_int32_t *)ip)[0]),
72 "g" (((const u_int32_t *)ip)[1]),
73 "g" (((const u_int32_t *)ip)[2]),
74 "g" (((const u_int32_t *)ip)[3]),
75 "g" (((const u_int32_t *)ip)[4])
86 in_cksum_update(struct ip *ip) argument
89 __tmpsum = (int)ntohs(ip
[all...]
/freebsd-11-stable/contrib/ipfilter/ipsend/
H A Dipsend.c23 #include <netinet/ip.h>
74 static void do_icmp(ip, args)
75 ip_t *ip;
81 ip->ip_p = IPPROTO_ICMP;
82 ip->ip_len += sizeof(*ic);
83 ic = (struct icmp *)(ip + 1);
125 int send_packets(dev, mtu, ip, gwip)
128 ip_t *ip;
136 return send_packet(wfd, mtu, ip, gwip);
140 udpcksum(ip_t *ip, struc argument
179 ip_t *ip; local
[all...]
H A Dip.c1 /* $FreeBSD: stable/11/contrib/ipfilter/ipsend/ip.c 344833 2019-03-06 02:37:25Z cy $ */
4 * ip.c (C) 1995-1998 Darren Reed
18 #include <netinet/ip.h>
84 int send_ip(nfd, mtu, ip, gwip, frag)
86 ip_t *ip;
123 bcopy((char *)ip, (char *)&ipsv, sizeof(*ip));
125 iplen = ip->ip_len;
126 ip->ip_len = htons(iplen);
128 if (!IP_V(ip))
[all...]
H A Dresend.c21 #include <netinet/ip.h>
36 void dumppacket(ip)
37 ip_t *ip;
42 t = (tcphdr_t *)((char *)ip + (IP_HL(ip) << 2));
43 if (ip->ip_tos)
44 printf("tos %#x ", ip->ip_tos);
45 if (ip->ip_off & 0x3fff)
46 printf("frag @%#x ", (ip->ip_off & 0x1fff) << 3);
47 printf("len %d id %d ", ip
75 ip_t *ip; local
[all...]
/freebsd-11-stable/contrib/libxo/tests/core/
H A Dtest_08.c34 struct item *ip; local
73 for (ip = list; ip->i_title; ip++) {
77 ip->i_title, ip->i_count);
93 for (ip = list; ip->i_title; ip++) {
97 ip
[all...]
H A Dtest_09.c34 struct item *ip; local
72 for (ip = list; ip->i_title; ip++) {
73 xo_emit("Name: {l:name/%-10s/%s}\n", ip->i_title);
83 for (ip = list; ip->i_title; ip++) {
84 xo_emit("Name: {l:item/%-10s/%s}\n", ip->i_title);
95 for (ip
[all...]
/freebsd-11-stable/contrib/ipfilter/lib/
H A Dprintpacket.c25 ip_t *ip; local
27 ip = MTOD(m, ip_t *);
29 if (IP_V(ip) == 6) {
31 len = ntohs(((ip6_t *)ip)->ip6_plen);
33 len = ntohs(((u_short *)ip)[2]);
37 len = ntohs(ip->ip_len);
61 if (IP_V(ip) == 6) {
73 off = ntohs(ip->ip_off);
74 tcp = (struct tcphdr *)((char *)ip + (IP_HL(ip) <<
[all...]
/freebsd-11-stable/sbin/natd/
H A Dicmp.c31 #include <netinet/ip.h>
39 int SendNeedFragIcmp (int sock, struct ip* failedDgram, int mtu)
42 struct ip* ip; local
64 ip = (struct ip*) icmpBuf;
65 icmp = (struct icmp*) (icmpBuf + sizeof (struct ip));
94 memcpy (ip, failedDgram, sizeof (struct ip));
96 ip
[all...]
/freebsd-11-stable/sbin/dhclient/
H A Ddhclient.c581 struct interface_info *ip = ipp; local
584 if (!ip->client->active || ip->client->active->is_bootp) {
585 state_init(ip);
590 ip->client->state = S_REBOOTING;
595 ip->client->xid = arc4random();
599 make_request(ip, ip->client->active);
600 ip->client->destination = iaddr_broadcast;
601 ip
618 struct interface_info *ip = ipp; local
643 struct interface_info *ip = ipp; local
732 struct interface_info *ip = packet->interface; local
822 bind_lease(struct interface_info *ip) argument
891 struct interface_info *ip = ipp; local
982 struct interface_info *ip = packet->interface; local
1186 struct interface_info *ip = packet->interface; local
1226 struct interface_info *ip = ipp; local
1326 struct interface_info *ip = ipp; local
1419 struct interface_info *ip = ipp; local
1546 struct interface_info *ip = ipp; local
1557 make_discover(struct interface_info *ip, struct client_lease *lease) argument
1670 make_request(struct interface_info *ip, struct client_lease * lease) argument
1803 make_decline(struct interface_info *ip, struct client_lease *lease) argument
1930 write_client_lease(struct interface_info *ip, struct client_lease *lease, int rewrite) argument
2033 struct interface_info *ip = ifi; local
2061 struct interface_info *ip = ifi; local
2289 struct interface_info *ip = ifi; local
[all...]
/freebsd-11-stable/sys/ufs/ufs/
H A Dinode.h143 #define ITOUMP(ip) ((ip)->i_ump)
144 #define ITODEV(ip) (ITOUMP(ip)->um_dev)
145 #define ITODEVVP(ip) (ITOUMP(ip)->um_devvp)
146 #define ITOFS(ip) (ITOUMP(ip)->um_fs)
147 #define ITOVFS(ip) ((ip)
150 I_IS_UFS1(const struct inode *ip) argument
157 I_IS_UFS2(const struct inode *ip) argument
[all...]
/freebsd-11-stable/sys/dev/cxgbe/cudbg/
H A Dfastlz.c186 const unsigned char *ip = (const unsigned char *) input; local
187 const unsigned char *ip_bound = ip + length - 2;
188 const unsigned char *ip_limit = ip + length - 12;
204 while (ip <= ip_bound)
205 *op++ = *ip++;
213 *hslot = ip;
218 *op++ = *ip++;
219 *op++ = *ip++;
222 while (FASTLZ_EXPECT_CONDITIONAL(ip < ip_limit)) {
230 const unsigned char *anchor = ip;
434 const unsigned char *ip = (const unsigned char *) input; local
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/arm/
H A Dumodsi3.S47 // At the time of JMP, ip := .Ldiv0block - 8 * I.
56 clz ip, r0
58 // r0 >= r1 implies clz(r0) <= clz(r1), so ip <= r3.
59 sub r3, r3, ip
61 adr ip, LOCAL_LABEL(div0block) + 1
62 sub ip, ip, r3, lsl #1
64 adr ip, LOCAL_LABEL(div0block)
66 sub ip, ip, r
[all...]
/freebsd-11-stable/stand/libsa/
H A Dip.c41 __FBSDID("$FreeBSD: stable/11/stand/libsa/ip.c 346477 2019-04-21 03:43:27Z kevans $");
54 #include <netinet/ip.h>
65 struct ip *ipq_hdr;
81 struct ip *ip_hdr;
87 /* Caller must leave room for ethernet and ip headers in front!! */
92 struct ip *ip; local
107 ip = (struct ip *)pkt - 1;
108 len += sizeof(*ip);
150 ip_reasm_add(struct ip_reasm *ipr, void *pkt, struct ip *ip) argument
187 struct ip *ip; local
[all...]
/freebsd-11-stable/sys/arm/arm/
H A Dcpufunc_asm_arm9.S73 ldr ip, .Larm9_line_size
76 ldr ip, [ip]
77 sub r3, ip, #1
84 add r0, r0, ip
85 subs r1, r1, ip
99 ldr ip, .Larm9_cache_data
100 ldmia ip, {s_max, i_max, s_inc, i_inc}
102 orr ip, s_max, i_max
104 mcr p15, 0, ip, c
[all...]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dlz4.c336 #define INITBASE(base) const BYTE* const base = ip
476 const BYTE *ip = (BYTE *) source; local
478 const BYTE *anchor = ip;
479 const BYTE *const iend = ip + isize;
496 HashTable[LZ4_HASH_VALUE(ip)] = ip - base;
497 ip++;
498 forwardH = LZ4_HASH_VALUE(ip);
503 const BYTE *forwardIp = ip;
511 ip
671 const BYTE *ip = (BYTE *) source; local
887 const BYTE *restrict ip = (const BYTE *) source; local
[all...]
/freebsd-11-stable/lib/libc/arm/aeabi/
H A Daeabi_asm_float.S47 push {r4, r5, ip, lr}
57 mov ip, #(0)
69 mov ip, #(PCR_Z | PCR_C)
74 mov ip, #(PCR_C)
77 msr cpsr_c, ip
78 pop {r4, r5, ip, pc}
83 mov ip, r0
85 mov r1, ip
107 mov ip, #(PCR_C)
108 msr cpsr_c, ip
[all...]
H A Daeabi_asm_double.S47 push {r4, r5, r6, r7, ip, lr}
59 mov ip, #(0)
73 mov ip, #(PCR_Z | PCR_C)
78 mov ip, #(PCR_C)
81 msr cpsr_c, ip
82 pop {r4, r5, r6, r7, ip, pc}
87 mov ip, r0
89 mov r2, ip
92 mov ip, r1
94 mov r3, ip
[all...]
/freebsd-11-stable/lib/libc/arm/string/
H A Dstrncmp.S42 /* ip == last src address to compare */
43 adds ip, r0, r2
46 movcs ip, #0
47 sub ip, ip, #1
51 cmp ip, r0
/freebsd-11-stable/sys/contrib/cloudabi/
H A Dcloudabi_vdso_armv6.S39 mov ip, #0
49 mov ip, #1
59 mov ip, #2
65 mov ip, #3
72 mov ip, #4
83 mov ip, #5
94 mov ip, #6
101 mov ip, #7
110 mov ip, #8
119 mov ip, #
[all...]
/freebsd-11-stable/usr.bin/kdump/
H A Dkdump.c858 register_t *ip, *first; local
863 ip = first = &ktr->ktr_args[0];
896 print_integer_arg_valid(sysdecode_atfd, *ip);
898 ip++;
904 print_number(ip, narg, c);
906 ioctlname(*ip);
908 ip++;
914 print_integer_arg(sysdecode_ptrace_request, *ip);
916 ip++;
922 print_number(ip, nar
[all...]
/freebsd-11-stable/sys/compat/linuxkpi/common/include/net/
H A Dtcp.h38 #include <net/ip.h>
/freebsd-11-stable/contrib/sendmail/libsm/
H A Dutil.c145 char *ip, *op; local
153 for (ip = ibp, olen = 1; *ip != '\0'; ip++, olen++)
155 if (SM_MM_QUOTE(*ip))
195 for (ip = ibp, op = obp, bufused = 0; *ip != '\0'; ip++)
197 if (SM_MM_QUOTE(*ip))
203 op[bufused++] = *ip;
228 char *ip, *op; local
[all...]
/freebsd-11-stable/sbin/natd/samples/
H A Dnatd.test10 ipfw add divert 32000 ip from any to any via $1
11 ipfw add pass ip from any to any
/freebsd-11-stable/crypto/openssl/crypto/x509/
H A Dvpm_int.h68 unsigned char *ip; /* If not NULL IP address to match */ member in struct:X509_VERIFY_PARAM_ID_st

Completed in 282 milliseconds

1234567891011>>