HomeSort by relevance Sort by last modified time
    Searched refs:ip (Results 1 - 25 of 540) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/vm/mterp/armv5te/
OP_INVOKE_DIRECT_EMPTY.S 6 GET_INST_OPCODE(ip) @ ip<- opcode from rINST
7 GOTO_OPCODE(ip) @ execute it
OP_NOP.S 3 GET_INST_OPCODE(ip) @ ip<- opcode from rINST
4 GOTO_OPCODE(ip) @ execute it
OP_EXECUTE_INLINE_RANGE.S 26 GET_INST_OPCODE(ip) @ extract opcode from rINST
27 GOTO_OPCODE(ip) @ jump to next instruction
41 4: add ip, r9, #3 @ base+3
42 GET_VREG(r3, ip) @ r3<- vBase[3]
43 3: add ip, r9, #2 @ base+2
44 GET_VREG(r2, ip) @ r2<- vBase[2]
45 2: add ip, r9, #1 @ base+1
46 GET_VREG(r1, ip) @ r1<- vBase[1]
47 1: add ip, r9, #0 @ (nop)
48 GET_VREG(r0, ip) @ r0<- vBase[0
    [all...]
  /external/iproute2/ip/
routef 4 exec ip -4 ro flush scope global type unicast
  /frameworks/base/core/java/android/os/
PatternMatcher.java 124 int ip = 0, im = 0; local
126 while ((ip<NP) && (im<NM)) {
128 ip++;
129 nextChar = ip < NP ? pattern.charAt(ip) : 0;
133 ip++;
134 nextChar = ip < NP ? pattern.charAt(ip) : 0;
138 if (ip >= (NP-1)) {
143 ip++
    [all...]
  /external/qemu/slirp-android/
helper.h 44 /* return ip address in network order */
46 ip_getn( ipaddr_t ip )
48 return ip.addr;
51 /* return ip address in host order */
53 ip_geth( ipaddr_t ip )
55 return ntohl(ip.addr);
58 /* set ip address in network order */
62 ipaddr_t ip; local
63 ip.addr = val;
64 return ip;
71 ipaddr_t ip; local
79 ipaddr_t ip; local
    [all...]
ip_output.c 50 * IP output. The packet in mbuf chain m contains a skeletal IP
58 register struct ip *ip; local
60 register int hlen = sizeof(struct ip );
73 ip = mtod(m, struct ip *);
75 * Fill in IP header.
77 ip->ip_v = IPVERSION;
78 ip->ip_off &= IP_DF
    [all...]
ip_input.c 51 static struct ip *ip_reass(register struct ip *ip,
59 * IP initialization: fill in IP protocol switch table.
60 * All protocols not implemented in kernel go to raw IP protocol handler.
72 * Ip input routine. Checksum and byte swap header. If fragmented
78 register struct ip *ip; local
87 if (m->m_len < sizeof (struct ip)) {
503 register struct ip *ip = mtod(m, struct ip *); local
    [all...]
ip_icmp.c 75 register struct ip *ip=mtod(m, struct ip *); local
76 int icmplen=ip->ip_len;
113 ip->ip_len += hlen; /* since ip_input subtracts this */
114 if (ip_geth(ip->ip_dst) == alias_addr_ip) {
131 so->so_faddr_ip = ip_geth(ip->ip_dst);
133 so->so_laddr_ip = ip_geth(ip->ip_src);
135 so->so_iptos = ip->ip_tos;
161 } /* if ip->ip_dst.s_addr == alias_addr.s_addr *
210 register struct ip *ip; local
324 register struct ip *ip = mtod(m, struct ip *); local
    [all...]
tftp.h 17 struct ip ip; member in struct:tftp_t
  /dalvik/vm/mterp/armv4t/
platform.S 11 * May modify IP. Does not modify LR.
14 ldr ip, \source
15 bx ip
22 * May modify IP and LR.
25 ldr ip, \source
27 bx ip
33 * May modify IP and LR.
  /external/qemu/slirp/
ip_output.c 50 * IP output. The packet in mbuf chain m contains a skeletal IP
58 register struct ip *ip; local
60 register int hlen = sizeof(struct ip );
73 ip = mtod(m, struct ip *);
75 * Fill in IP header.
77 ip->ip_v = IPVERSION;
78 ip->ip_off &= IP_DF
    [all...]
ip_input.c 51 static struct ip *ip_reass(register struct ip *ip,
59 * IP initialization: fill in IP protocol switch table.
60 * All protocols not implemented in kernel go to raw IP protocol handler.
72 * Ip input routine. Checksum and byte swap header. If fragmented
78 register struct ip *ip; local
87 if (m->m_len < sizeof (struct ip)) {
503 register struct ip *ip = mtod(m, struct ip *); local
    [all...]
ip_icmp.c 74 register struct ip *ip=mtod(m, struct ip *); local
75 int icmplen=ip->ip_len;
112 ip->ip_len += hlen; /* since ip_input subtracts this */
113 if (ip->ip_dst.s_addr == alias_addr.s_addr) {
127 so->so_faddr = ip->ip_dst;
129 so->so_laddr = ip->ip_src;
131 so->so_iptos = ip->ip_tos;
159 } /* if ip->ip_dst.s_addr == alias_addr.s_addr *
208 register struct ip *ip; local
322 register struct ip *ip = mtod(m, struct ip *); local
    [all...]
tftp.h 17 struct ip ip; member in struct:tftp_t
  /system/core/libnetutils/
packet.c 22 #include <netinet/ip.h>
92 struct iphdr ip; local
100 ip.version = IPVERSION;
101 ip.ihl = sizeof(ip) >> 2;
102 ip.tos = 0;
103 ip.tot_len = htons(sizeof(ip) + sizeof(udp) + size);
104 ip.id = 0;
105 ip.frag_off = 0
161 struct iphdr ip; member in struct:dhcp_packet
    [all...]
  /external/tcpdump/
print-sl.c 40 #include "ip.h"
48 static void sliplink_print(const u_char *, const struct ip *, u_int);
49 static void compressed_sl_print(const u_char *, const struct ip *, u_int, int);
56 register const struct ip *ip; local
65 ip = (struct ip *)(p + SLIP_HDRLEN);
68 sliplink_print(p, ip, length);
70 switch (IP_V(ip)) {
72 ip_print(gndo, (u_char *)ip, length)
91 register const struct ip *ip; local
    [all...]
print-ip.c 24 "@(#) $Header: /tcpdump/master/tcpdump/print-ip.c,v 1.149.2.9 2007/09/14 01:30:02 guy Exp $ (LBL)";
41 #include "ip.h"
58 * print the recorded route in an IP RR, LSRR or SSRR option.
85 * Otherwise, return IP destination.
91 ip_finddst(const struct ip *ip)
98 cp = (const u_char *)(ip + 1);
99 length = (IP_HL(ip) << 2) - sizeof(struct ip);
128 memcpy(&retval, &ip->ip_dst.s_addr, sizeof(u_int32_t))
367 const struct ip *ip; member in struct:ip_print_demux_state
710 struct ip *ip, hdr; local
    [all...]
  /bionic/libc/arch-arm/bionic/
memcmp.S 86 ldrb ip, [r1], #1
87 subs r0, r0, ip
108 ldr ip, [r1]
116 eors r0, r0, ip
118 ldreq ip, [r1, #4]!
122 eoreqs r0, r0, ip
124 ldreq ip, [r1, #4]!
128 eoreqs r0, r0, ip
130 ldreq ip, [r1, #4]!
134 eoreqs r0, r0, ip
    [all...]
memcmp16.S 75 ldrh ip, [r1], #2
76 subs r0, r0, ip
92 ldrh ip, [r1], #2
94 subs r0, r0, ip
117 ldr ip, [r1]
126 eors r0, r0, ip
128 ldreq ip, [r1, #4]!
132 eoreqs r0, r0, ip
134 ldreq ip, [r1, #4]!
138 eoreqs r0, r0, ip
    [all...]
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_MUL_LONG.S 22 mul ip, r2, r1 @ ip<- ZxW
24 mla r2, r0, r3, ip @ r2<- YxX + (ZxW)
  /external/iproute2/examples/diffserv/
Edge32-ca-u32 16 IP=$IPROUTE/ip/ip
57 $TC filter add dev $INDEV parent ffff: protocol ip prio 1 u32 \
58 match ip tos 0x88 0xfc \
61 $TC filter add dev $INDEV parent ffff: protocol ip prio 2 u32 \
62 match ip tos 0x88 0xfc \
70 $TC filter add dev $INDEV parent ffff: protocol ip prio 3 u32 \
71 match ip tos 0x88 0xfc \
74 $TC filter add dev $INDEV parent ffff: protocol ip prio 4 u32
    [all...]
Edge31-ca-u32 16 IP=$IPROUTE/ip/ip
33 $TC filter add dev $INDEV parent ffff: protocol ip prio 4 handle 1: u32 \
53 $TC filter add dev $INDEV parent ffff: protocol ip prio 4 u32 \
54 match ip tos 0x88 0xfc \
62 $TC filter add dev $INDEV parent ffff: protocol ip prio 5 u32 \
63 match ip tos 0x88 0xfc \
70 $TC filter add dev $INDEV parent ffff: protocol ip prio 6 u32 \
71 match ip tos 0x88 0xfc
    [all...]
  /external/ppp/android/
Android.mk 20 LOCAL_SRC_FILES := ip-up-vpn.c
22 LOCAL_MODULE := ip-up-vpn
  /external/kernel-headers/original/linux/netfilter_ipv4/
ip_conntrack_tuple.h 42 u_int32_t ip; member in struct:ip_conntrack_manip
53 u_int32_t ip; member in struct:ip_conntrack_tuple::__anon3076
97 NIPQUAD((tp)->src.ip), ntohs((tp)->src.u.all), \
98 NIPQUAD((tp)->dst.ip), ntohs((tp)->dst.u.all))
116 return t1->src.ip == t2->src.ip
123 return t1->dst.ip == t2->dst.ip
138 return !(((t->src.ip ^ tuple->src.ip) & mask->src.ip
    [all...]

Completed in 572 milliseconds

1 2 3 4 5 6 7 8 91011>>