Searched refs:ip (Results 101 - 125 of 602) sorted by relevance

1234567891011>>

/external/clang/test/PCH/
H A Dchain-conversion-lookup.cpp20 int *ip = x.operator int*(); local
H A Dvariables.c12 extern int *ip, x;
34 float *fp = &ip; // expected-warning{{incompatible pointer types}}
/external/clang/test/SemaCXX/
H A Dnew-delete-0x.cpp17 void bad_news(int *ip) argument
H A Dcomplex-overload.cpp17 int *ip = foo(fc); local
26 int *ip = foo(fc); local
/external/iproute2/ip/
H A DAndroid.mk4 LOCAL_SRC_FILES := ip.c ipaddress.c ipaddrlabel.c iproute.c iprule.c \
10 LOCAL_MODULE := ip
/external/kernel-headers/original/linux/
H A Dirqflags.h17 extern void trace_softirqs_on(unsigned long ip);
18 extern void trace_softirqs_off(unsigned long ip);
31 # define trace_softirqs_on(ip) do { } while (0)
32 # define trace_softirqs_off(ip) do { } while (0)
/external/libvpx/vp8/encoder/arm/neon/
H A Dfastfdct8x4_neon.asm39 ;transpose d2, d4, d6, d8. Then, d2=ip[0], d4=ip[1], d6=ip[2], d8=ip[3]
40 ;transpose d3, d5, d7, d9. Then, d3=ip[0], d5=ip[1], d7=ip[2], d9=ip[3]
50 vadd.s16 d10, d2, d8 ;ip[0]+ip[
[all...]
/external/grub/netboot/
H A Dmain.c110 static unsigned short ipchksum (unsigned short *ip, int len);
147 ifconfig (char *ip, char *sm, char *gw, char *svr) argument
159 if (ip)
161 if (! inet_aton (ip, &arptable[ARP_CLIENT].ipaddr))
180 if (ip || sm)
201 struct iphdr *ip; local
207 ip = (struct iphdr *) buf;
209 ip->verhdrlen = 0x45;
210 ip->service = 0;
211 ip
538 struct bootpip_t ip; local
742 struct iphdr *ip; local
1117 ipchksum(unsigned short *ip, int len) argument
[all...]
/external/tcpdump/
H A Dprint-sunrpc.c47 #include "ip.h"
74 register const struct ip *ip; local
93 switch (IP_V((struct ip *)bp2)) {
95 ip = (struct ip *)bp2;
97 ipaddr_string(&ip->ip_src), srcid,
98 ipaddr_string(&ip->ip_dst), dstid, length);
/external/iproute2/examples/diffserv/
H A DEdge113 IP=$IPROUTE/ip/ip
50 $TC filter add $EGDEV parent 1:0 protocol ip prio 4 handle 1 fw classid 1:1
51 $TC filter add $EGDEV parent 1:0 protocol ip prio 4 handle 2 fw classid 1:2
52 $TC filter add $EGDEV parent 1:0 protocol ip prio 4 handle 3 fw classid 1:3
/external/libvpx/vp8/common/ppc/
H A Didctllm_altivec.asm36 lvx v0, 0, r3 ;# input ip[0], ip[ 4]
37 lvx v1, r10, r3 ;# input ip[8], ip[12]
42 vaddsws v6, v2, v3 ;# a1 = ip[0]+ip[8]
43 vsubsws v7, v2, v3 ;# b1 = ip[0]-ip[8]
48 vaddsws v4, v4, v0 ;# ip[ 4] * sin(pi/8) * sqrt(2)
52 vsraw v5, v5, v12 ;# ip[1
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dsocketaddress.cc32 #include <netinet/ip.h>
69 SocketAddress::SocketAddress(uint32 ip, int port) { argument
70 SetIP(ip);
99 void SocketAddress::SetIP(uint32 ip) { argument
101 ip_ = ip;
109 void SocketAddress::SetResolvedIP(uint32 ip) { argument
110 ip_ = ip;
118 uint32 SocketAddress::ip() const { function in class:talk_base::SocketAddress
304 std::string SocketAddress::IPToString(uint32 ip) { argument
306 ost << ((ip >> 2
316 StringToIP(const std::string& hostname, uint32* ip) argument
325 uint32 ip = 0; local
347 uint32 ip = local
[all...]
/external/dhcpcd/
H A Dnet.c43 #include <netinet/ip.h>
673 struct ip ip; member in struct:udp_dhcp_packet
707 struct ip *ip; local
711 ip = &udpp->ip;
716 * ip structure and an invalid ip_len (basically udp length).
719 * Finally we complete the ip structure and ip checksu
[all...]
/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/iptables/extensions/
H A Dlibipt_SAME.c24 " Don't use destination-ip in\n"
42 const struct in_addr *ip; local
53 ip = xtables_numeric_to_ipaddr(arg);
54 if (!ip)
57 range->min_ip = ip->s_addr;
60 ip = xtables_numeric_to_ipaddr(dash+1);
61 if (!ip)
65 range->max_ip = ip->s_addr;
103 static void SAME_print(const void *ip, const struct xt_entry_target *target, argument
134 static void SAME_save(const void *ip, cons argument
[all...]
H A Dlibipt_DNAT.c71 const struct in_addr *ip; local
133 ip = xtables_numeric_to_ipaddr(arg);
134 if (!ip)
137 range.min_ip = ip->s_addr;
139 ip = xtables_numeric_to_ipaddr(dash+1);
140 if (!ip)
143 range.max_ip = ip->s_addr;
157 if (entry->ip.proto == IPPROTO_TCP
158 || entry->ip.proto == IPPROTO_UDP
159 || entry->ip
212 DNAT_print(const void *ip, const struct xt_entry_target *target, int numeric) argument
228 DNAT_save(const void *ip, const struct xt_entry_target *target) argument
[all...]
H A Dlibipt_SNAT.c71 const struct in_addr *ip; local
133 ip = xtables_numeric_to_ipaddr(arg);
134 if (!ip)
137 range.min_ip = ip->s_addr;
139 ip = xtables_numeric_to_ipaddr(dash+1);
140 if (!ip)
143 range.max_ip = ip->s_addr;
157 if (entry->ip.proto == IPPROTO_TCP
158 || entry->ip.proto == IPPROTO_UDP
159 || entry->ip
212 SNAT_print(const void *ip, const struct xt_entry_target *target, int numeric) argument
228 SNAT_save(const void *ip, const struct xt_entry_target *target) argument
[all...]
H A Dlibipt_NETMAP.c61 range->min_ip = cb->val.haddr.ip & cb->val.hmask.ip;
62 range->max_ip = range->min_ip | ~cb->val.hmask.ip;
65 static void NETMAP_print(const void *ip, const struct xt_entry_target *target, argument
83 static void NETMAP_save(const void *ip, const struct xt_entry_target *target) argument
86 NETMAP_print(ip, target, 0);
/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 Dmember-access-expr.cpp70 void destruct_intptr(int *ip) { argument
71 ip->~T();
72 ip->T::~T();
75 void test_destruct(X2 *x2p, int *ip) { argument
77 destruct(ip);
78 destruct_intptr<int>(ip);
/external/iptables/iptables/
H A Diptables.c528 const struct ipt_ip *ip,
536 match->print(ip, m, numeric);
567 flags = fw->ip.flags;
580 fputc(fw->ip.invflags & IPT_INV_PROTO ? '!' : ' ', stdout);
582 const char *pname = proto_to_name(fw->ip.proto, format&FMT_NUMERIC);
586 printf(FMT("%-5hu", "%hu "), fw->ip.proto);
592 fputc(fw->ip.invflags & IPT_INV_FRAG ? '!' : '-', stdout);
600 if (fw->ip.invflags & IPT_INV_VIA_IN) {
606 if (fw->ip.iniface[0] != '\0') {
607 strcat(iface, fw->ip
527 print_match(const struct ipt_entry_match *m, const struct ipt_ip *ip, int numeric) argument
1047 print_match_save(const struct ipt_entry_match *e, const struct ipt_ip *ip) argument
1071 print_ip(const char *prefix, uint32_t ip, uint32_t mask, int invert) argument
[all...]
/external/clang/test/Analysis/
H A Dnullptr.cpp26 int *ip = &(((struct foo *)np)->f); local
27 *ip = 0; // expected-warning{{Dereference of null pointer}}
/external/clang/test/CXX/temp/temp.decls/temp.mem/
H A Dp5.cpp12 int *ip; local
13 ip = a.operator int*();
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/
H A Dp11.cpp7 int *ip = f<int>(1); // calls #1 local
21 int* ip = f2<int>(1); local
/external/clang/test/Misc/
H A Dmacro-backtrace.c17 void f(int *ip, float *fp) { argument
18 if (M12(ip, fp)) { }
22 // CHECK-LIMIT: if (M12(ip, fp)) { }

Completed in 479 milliseconds

1234567891011>>