HomeSort by relevance Sort by last modified time
    Searched refs:ip (Results 26 - 50 of 1284) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/qemu/slirp-android/
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...]
  /dalvik/vm/mterp/armv6t2/
OP_IGET_WIDE_QUICK.S 5 FETCH(ip, 1) @ ip<- field byte offset
10 ldrd r0, [r3, ip] @ r0<- obj.field (64 bits, aligned)
13 GET_INST_OPCODE(ip) @ extract opcode from rINST
15 GOTO_OPCODE(ip) @ jump to next instruction
  /external/liblzf/
lzf_c.c 109 const u8 *ip = (const u8 *)in_data; local
111 const u8 *in_end = ip + in_len;
139 hval = FRST (ip);
140 while (ip < in_end - 2)
144 hval = NEXT (hval, ip);
146 ref = *hslot + LZF_HSLOT_BIAS; *hslot = ip - LZF_HSLOT_BIAS;
150 && ref < ip /* the next test will actually take care of this, but this is faster */
152 && (off = ip - ref - 1) < MAX_OFF
154 && ref[2] == ip[2]
156 && ((ref[1] << 8) | ref[0]) == ((ip[1] << 8) | ip[0]
    [all...]
  /dalvik/vm/mterp/armv5te/
OP_NOP.S 3 GET_INST_OPCODE(ip) @ ip<- opcode from rINST
4 GOTO_OPCODE(ip) @ execute it
  /external/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/
p2.cpp 9 void use_delete(int* ip, int N) {
11 delete ip;
13 delete [] ip;
  /external/compiler-rt/BlocksRuntime/tests/
cast.c 25 int *ip; local
29 ip = (int *)aBlock;
32 aBlock = (void (^)(void))ip;
  /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/oprofile/libpp/
populate.cpp 59 populate_for_image(profile_container & samples, inverted_profile const & ip,
62 if (is_spu_profile(ip)) {
63 populate_for_spu_image(samples, ip, symbol_filter,
68 bool ok = ip.error == image_ok;
69 op_bfd abfd(ip.image, symbol_filter,
71 if (!ok && ip.error == image_ok)
72 ip.error = image_format_failure;
74 if (ip.error == image_format_failure)
75 report_image_error(ip, false, samples.extra_found_images);
80 for (size_t i = 0; i < ip.groups.size(); ++i)
    [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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
bfs_fs.h 68 #define BFS_NZFILESIZE(ip) \
69 ((le32_to_cpu((ip)->i_eoffset) + 1) - le32_to_cpu((ip)->i_sblock) * BFS_BSIZE)
71 #define BFS_FILESIZE(ip) \
72 ((ip)->i_sblock == 0 ? 0 : BFS_NZFILESIZE(ip))
74 #define BFS_FILEBLOCKS(ip) \
75 ((ip)->i_sblock == 0 ? 0 : (le32_to_cpu((ip)->i_eblock) + 1) - le32_to_cpu((ip)->i_sblock)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
bfs_fs.h 68 #define BFS_NZFILESIZE(ip) \
69 ((le32_to_cpu((ip)->i_eoffset) + 1) - le32_to_cpu((ip)->i_sblock) * BFS_BSIZE)
71 #define BFS_FILESIZE(ip) \
72 ((ip)->i_sblock == 0 ? 0 : BFS_NZFILESIZE(ip))
74 #define BFS_FILEBLOCKS(ip) \
75 ((ip)->i_sblock == 0 ? 0 : (le32_to_cpu((ip)->i_eblock) + 1) - le32_to_cpu((ip)->i_sblock)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
bfs_fs.h 68 #define BFS_NZFILESIZE(ip) \
69 ((le32_to_cpu((ip)->i_eoffset) + 1) - le32_to_cpu((ip)->i_sblock) * BFS_BSIZE)
71 #define BFS_FILESIZE(ip) \
72 ((ip)->i_sblock == 0 ? 0 : BFS_NZFILESIZE(ip))
74 #define BFS_FILEBLOCKS(ip) \
75 ((ip)->i_sblock == 0 ? 0 : (le32_to_cpu((ip)->i_eblock) + 1) - le32_to_cpu((ip)->i_sblock)
    [all...]
  /external/qemu/slirp/
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...]
  /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/clang/test/SemaCXX/
scope-check.cpp 33 int f(void **ip) {
37 goto *ip;
48 int f(void **ip) {
51 goto *ip;
65 int f(void **ip) {
70 goto *ip; // expected-error {{indirect goto might cross protected scopes}}
83 int f(void **ip) {
87 goto *ip;
91 if (ip[1]) {
93 ip += 2
    [all...]
  /external/libvpx/libvpx/test/
fdct4x4_test.cc 35 const int16_t *ip = input; local
39 const int a1 = ip[0] + ip[8];
40 const int b1 = ip[0] - ip[8];
41 const int temp1 = (ip[4] * sinpi8sqrt2) >> 16;
42 const int temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16);
44 const int temp3 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16)
    [all...]
  /external/valgrind/main/drd/tests/
annotate_barrier_xml.stderr.exp 41 <ip>0x........</ip>
49 <ip>0x........</ip>
57 <ip>0x........</ip>
74 <ip>0x........</ip>
82 <ip>0x........</ip>
    [all...]
  /bionic/libc/arch-arm/bionic/
memcmp16.S 69 ldrh ip, [r1], #2
70 subs r0, r0, ip
86 ldrh ip, [r1], #2
88 subs r0, r0, ip
109 ldr ip, [r1]
118 eors r0, r0, ip
120 ldreq ip, [r1, #4]!
124 eoreqs r0, r0, ip
126 ldreq ip, [r1, #4]!
130 eoreqs r0, r0, ip
    [all...]
  /external/valgrind/main/memcheck/tests/
xml1.stderr.exp 38 <ip>0x........</ip>
46 <ip>0x........</ip>
54 <ip>0x........</ip>
62 <ip>0x........</ip>
73 <ip>0x........</ip>
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
p5.cpp 5 void f0(int *ip = &global_f); // expected-error{{cannot initialize}} \
6 // expected-note{{passing argument to parameter 'ip' here}}
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p1-0x.cpp 35 void test_simple_deduction(int *ip, float *fp, double *dp) {
36 int *ip1 = first_arg(ip);
37 int *ip2 = first_arg(ip, fp);
38 int *ip3 = first_arg(ip, fp, dp);
48 void test_simple_ref_deduction(int *ip, float *fp, double *dp) {
49 int *ip1 = first_arg_ref(ip);
50 int *ip2 = first_arg_ref(ip, fp);
51 int *ip3 = first_arg_ref(ip, fp, dp);
63 void test_pair_deduction(int *ip, float *fp, double *dp) {
64 int *ip1 = first_arg_pair(make_pair(ip, 17))
    [all...]
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/
p2.cpp 17 // int *ip = cta;
18 // ip = cta;
35 int *ip = ctcv; local

Completed in 2579 milliseconds

12 3 4 5 6 7 8 91011>>