Searched defs:ip (Results 126 - 150 of 370) sorted by relevance

1234567891011>>

/external/oprofile/libpp/
H A Dpopulate_for_spu.cpp42 * so the filename to do the check_mtime on is the containing file, ip.image;
50 inverted_profile const & ip,
55 bool ok = ip.error == image_ok;
69 ip.image,
73 fname_to_check = ip.image;
75 abfd = new op_bfd(ip.image,
82 if (!ok && ip.error == image_ok)
83 ip.error = image_format_failure;
85 if (ip.error == image_format_failure)
86 report_image_error(ip, fals
47 populate_spu_profile_from_files(list<profile_sample_files> const & files, string const app_image, profile_container & samples, inverted_profile const & ip, string_filter const & symbol_filter, size_t ip_grp_num, bool * has_debug_info) argument
106 populate_for_spu_image(profile_container & samples, inverted_profile const & ip, string_filter const & symbol_filter, bool * has_debug_info) argument
125 is_spu_profile(inverted_profile const & ip) argument
[all...]
/external/qemu/slirp/
H A Dip_icmp.c74 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
208 register struct ip *ip; local
322 register struct ip *ip = mtod(m, struct ip *); local
[all...]
/external/qemu/slirp-android/
H A Dhelper.h44 /* 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
85 ip_write( ipaddr_t ip, void* buf ) argument
98 ip_write32h( uint32_t ip, void* buf ) argument
[all...]
/external/srec/srec/clib/
H A Dmatrix_i.c178 int ii, ix = -1, ip, jj; local
184 ip = index[ii];
185 sum = b[ip];
186 b[ip] = b[ii];
/external/tcpdump/
H A Dprint-sctp.c57 #include "ip.h"
64 u_int sctpPacketLength) /* ip packet */
67 const struct ip *ip; local
83 ip = (struct ip *)bp2;
85 if (IP_V(ip) == 6)
116 ipaddr_string(&ip->ip_src),
118 ipaddr_string(&ip->ip_dst),
H A Dprint-sl.c40 #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, lengt
91 register const struct ip *ip; local
113 sliplink_print(register const u_char *p, register const struct ip *ip, register u_int length) argument
191 compressed_sl_print(const u_char *chdr, const struct ip *ip, u_int length, int dir) argument
[all...]
/external/valgrind/main/none/tests/
H A Dtls.c54 int *ip = (*test->func)(); local
59 int a = (*ip)++;
62 printf("tls_ptr: case \"%s\" has mismatch: *ip=%d here=%d\n",
/external/android-clat/
H A Ddump.c24 #include <netinet/ip.h>
39 /* print ip header */
148 void dump_udp(const struct udphdr *udp, const struct iphdr *ip, const char *payload, size_t payload_size) { argument
150 temp_checksum = ipv4_pseudo_header_checksum(0, ip, sizeof(*udp) + payload_size);
203 void dump_tcp(const struct tcphdr *tcp, const struct iphdr *ip, const char *payload, size_t payload_size, const char *options, size_t options_size) { argument
206 temp_checksum = ipv4_pseudo_header_checksum(0, ip, sizeof(*tcp) + options_size + payload_size);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DGeneralName.java264 private byte[] toGeneralNameEncoding(String ip) argument
266 if (IPAddress.isValidIPv6WithNetmask(ip) || IPAddress.isValidIPv6(ip))
268 int slashIndex = ip.indexOf('/');
273 int[] parsedIp = parseIPv6(ip);
281 int[] parsedIp = parseIPv6(ip.substring(0, slashIndex));
283 String mask = ip.substring(slashIndex + 1);
297 else if (IPAddress.isValidIPv4WithNetmask(ip) || IPAddress.isValidIPv4(ip))
299 int slashIndex = ip
342 parseIPv4(String ip, byte[] addr, int offset) argument
374 parseIPv6(String ip) argument
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dnetwork.h84 uint32 ip, uint32 gateway_ip);
95 uint32 ip() const { return ip_; } function in class:talk_base::Network
96 void set_ip(uint32 ip) { ip_ = ip; } argument
100 void set_gateway_ip(uint32 ip) { gateway_ip_ = ip; } argument
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dudpport.cc41 uint32 ip, int min_port, int max_port)
42 : Port(thread, LOCAL_PORT_TYPE, factory, network, ip, min_port, max_port),
38 UDPPort(talk_base::Thread* thread, talk_base::PacketSocketFactory* factory, talk_base::Network* network, uint32 ip, int min_port, int max_port) argument
/external/clang/test/FixIt/
H A Dfixit-cxx0x.cpp91 int *ip; char *kp; member in namespace:TestMisplacedEllipsisRecovery
97 int e = me.e(&ip, &kp);
106 template<int *ip> struct IP { }; // expected-note{{declared here}}
/external/clang/test/Index/
H A Dload-stmts.cpp116 void casts(int *ip) { argument
117 (void)reinterpret_cast<float *>(ip);
229 // CHECK: load-stmts.cpp:117:35: UnexposedExpr=ip:116:17 Extent=[117:35 - 117:37]
230 // CHECK: load-stmts.cpp:117:35: DeclRefExpr=ip:116:17 Extent=[117:35 - 117:37]
/external/clang/test/Sema/
H A Dconditional-expr.c11 int *ip; local
16 ip = dp; // expected-warning {{incompatible pointer types assigning to 'int *' from 'double *'}}
17 dp = ip; // expected-warning {{incompatible pointer types assigning to 'double *' from 'int *'}}
20 ip = 0 ? (double *)0 : (void *)0; // expected-warning {{incompatible pointer types assigning to 'int *' from 'double *'}}
H A Dformat-strings-scanf.c84 void test_scanlist(int *ip, char *sp, wchar_t *ls) { argument
85 scanf("%[abc]", ip); // expected-warning{{format specifies type 'char *' but the argument has type 'int *'}}
H A Dfunction-redecl.c87 int* ip = outer6(x); // expected-warning{{use of out-of-scope declaration of 'outer6'}} local
H A Dtransparent-union.c3 int *ip; member in union:__anon4792
11 void g(int *ip, float *fp, char *cp) { argument
12 f(ip);
17 TU tu_ip = ip; // expected-error{{incompatible type}}
19 tu.ip = ip;
/external/clang/test/SemaCXX/
H A Dnullptr.cpp67 int *ip = *pn; local
/external/clang/test/SemaTemplate/
H A Dinstantiate-init.cpp13 void test_f0(int *ip, float *fp, double *dp) { argument
14 f0(ip, fp);
15 f0(ip, dp); // expected-note{{instantiation}}
24 void test_f1(X0 *x0, int *ip, float *fp, double *dp) { argument
25 f1(x0, ip, fp);
26 f1(x0, ip, dp); // expected-note{{instantiation}}
H A Dnested-name-spec-template.cpp19 Promote<short>::type *ret_intptr(int* ip) { return ip; } argument
20 Promote<int>::type *ret_intptr2(int* ip) { return ip; } argument
23 M::Promote<int>::type *ret_intptr3(int* ip) { return ip; } argument
24 M::template Promote<int>::type *ret_intptr4(int* ip) { return ip; } // expected-warning{{'template' keyword outside of a template}} argument
28 N::M::Promote<int>::type *ret_intptr5(int* ip) { return ip; } argument
29 ret_intptr6(int* ip) argument
[all...]
H A Dnested-template.cpp14 S::A<int>::Nested::type *ip = &i; variable
/external/dnsmasq/src/
H A Dbpf.c164 struct ip ip; local
193 ip.ip_dst.s_addr = INADDR_BROADCAST;
198 ip.ip_dst.s_addr = mess->yiaddr.s_addr;
201 ip.ip_p = IPPROTO_UDP;
202 ip.ip_src.s_addr = iface_addr.s_addr;
203 ip.ip_len = htons(sizeof(struct ip) +
206 ip.ip_hl = sizeof(struct ip) /
[all...]
/external/eigen/bench/btl/libs/blitz/
H A Dblitz_LU_solve_interface.hh161 int ip = pivot( i ) ; local
162 theSum = X( ip ) ;
163 // theSum = B( ip ) ;
164 X( ip ) = X( i ) ;
165 // B( ip ) = B( i ) ;
/external/eigen/bench/btl/libs/gmm/
H A Dgmm_LU_solve_interface.hh161 int ip = pivot( i ) ; local
162 theSum = X( ip ) ;
163 // theSum = B( ip ) ;
164 X( ip ) = X( i ) ;
165 // B( ip ) = B( i ) ;
/external/eigen/bench/btl/libs/mtl4/
H A Dmtl4_LU_solve_interface.hh161 int ip = pivot( i ) ; local
162 theSum = X( ip ) ;
163 // theSum = B( ip ) ;
164 X( ip ) = X( i ) ;
165 // B( ip ) = B( i ) ;

Completed in 992 milliseconds

1234567891011>>