Searched defs:ip (Results 176 - 200 of 370) sorted by relevance

1234567891011>>

/external/libppp/src/
H A Dslcompress.c46 #include <netinet/ip.h>
158 struct ip * ip,
164 register u_int hlen = ip->ip_hl;
177 if ((ip->ip_off & htons(0x3fff)) || m->m_len < 40) {
179 ip->ip_off, (unsigned long)m->m_len);
183 th = (struct tcphdr *) & ((int *) ip)[hlen];
198 if (ip->ip_src.s_addr != cs->cs_ip.ip_src.s_addr ||
199 ip->ip_dst.s_addr != cs->cs_ip.ip_dst.s_addr ||
219 if (ip
157 sl_compress_tcp(struct mbuf * m, struct ip * ip, struct slcompress *comp, struct slstat *slstat, int compress_cid) argument
437 register struct ip *ip; local
[all...]
/external/libvpx/libvpx/vp8/common/
H A Didctllm.c36 short *ip = input; local
43 a1 = ip[0] + ip[8];
44 b1 = ip[0] - ip[8];
46 temp1 = (ip[4] * sinpi8sqrt2) >> 16;
47 temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16);
50 temp1 = ip[4] + ((ip[
146 short *ip = input; local
[all...]
/external/linux-tools-perf/util/
H A Dsort.h64 u64 ip; member in struct:hist_entry
/external/openssl/crypto/bio/
H A Dbf_buff.c276 int r,i,*ip; local
334 ip=(int *)ptr;
335 if (*ip == 0)
340 else /* if (*ip == 1) */
H A Dbss_fd.c179 int *ip; local
201 ip=(int *)ptr;
202 if (ip != NULL) *ip=b->num;
H A Dbss_sock.c171 int *ip; local
184 ip=(int *)ptr;
185 if (ip != NULL) *ip=b->num;
/external/qemu/slirp-android/
H A Dip_icmp.c75 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
210 register struct ip *ip; local
324 register struct ip *ip = mtod(m, struct ip *); local
[all...]
/external/quake/quake/src/QW/client/
H A Dnet.h26 byte ip[4]; member in struct:__anon12240
/external/regex-re2/re2/testing/
H A Dbacktrack.cc58 // Explores from instruction ip at string position p looking for a match.
146 // Explores from instruction ip at string position p looking for a match.
165 Prog::Inst* ip = prog_->inst(id); local
166 switch (ip->opcode()) {
168 LOG(FATAL) << "Unexpected opcode: " << (int)ip->opcode();
174 if (Visit(ip->out(), p)) {
176 Visit(ip->out1(), p);
179 return Visit(ip->out1(), p);
182 if (ip->Matches(c))
183 return Visit(ip
[all...]
/external/valgrind/main/memcheck/tests/ppc32/
H A Dpower_ISA2_05.c50 int_pair_t *ip; local
55 ip = (int_pair_t *) & FRT1;
56 printf("lfiwax (%f) => FRT=(%x, %x)\n", foo, ip->hi, ip->lo);
/external/valgrind/main/memcheck/tests/ppc64/
H A Dpower_ISA2_05.c49 int_pair_t *ip; local
54 ip = (int_pair_t *) & FRT1;
55 printf("lfiwax (%f) => FRT=(%x, %x)\n", foo, ip->hi, ip->lo);
/external/android-clat/
H A Dtranslate.c21 #include <netinet/ip.h>
131 void fill_ip_header(struct iphdr *ip, uint16_t payload_len, uint8_t protocol, argument
134 memset(ip, 0, sizeof(struct iphdr));
136 ip->ihl = 5;
137 ip->version = 4;
138 ip->tos = 0;
139 ip->tot_len = htons(sizeof(struct iphdr) + payload_len);
140 ip->id = 0;
141 ip->frag_off = htons(IP_DF);
142 ip
[all...]
/external/chromium/chrome/browser/debugger/
H A Ddevtools_remote_listen_socket.cc87 DevToolsRemoteListenSocket::Listen(const std::string& ip, argument
90 SOCKET s = ListenSocket::Listen(ip, port);
/external/chromium/net/base/
H A Dlisten_socket.cc47 ListenSocket* ListenSocket::Listen(std::string ip, int port, argument
49 SOCKET s = Listen(ip, port);
107 SOCKET ListenSocket::Listen(std::string ip, int port) { argument
118 addr.sin_addr.s_addr = inet_addr(ip.c_str());
/external/chromium/net/tools/fetch/
H A Dhttp_listen_socket.cc45 const std::string& ip,
48 SOCKET s = ListenSocket::Listen(ip, port);
44 Listen( const std::string& ip, int port, HttpListenSocket::Delegate* delegate) argument
/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/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dstunport.cc69 talk_base::SocketAddress addr(addr_attr->ip(), addr_attr->port());
130 uint32 ip, int min_port, int max_port,
132 : Port(thread, STUN_PORT_TYPE, factory, network, ip, min_port, max_port),
127 StunPort(talk_base::Thread* thread, talk_base::PacketSocketFactory* factory, talk_base::Network* network, uint32 ip, int min_port, int max_port, const talk_base::SocketAddress& server_addr) argument
H A Dtcpport.cc38 talk_base::Network* network, uint32 ip,
40 : Port(thread, LOCAL_PORT_TYPE, factory, network, ip, min_port, max_port),
189 talk_base::SocketAddress(port_->network()->ip(), 0),
204 ASSERT(socket_->GetLocalAddress(NULL).ip() == port->ip_);
36 TCPPort(talk_base::Thread* thread, talk_base::PacketSocketFactory* factory, talk_base::Network* network, uint32 ip, int min_port, int max_port, bool allow_listen) argument
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
H A Dp3.cpp70 void test_f3(int ***ip, volatile int ***vip) { argument
71 A<int> a0 = f3(ip);
/external/clang/test/CodeGenCXX/
H A Dmangle-exprs.cpp162 int *ip; local
164 a(x, &X::member, ip);
/external/clang/test/SemaCXX/
H A Daddress-space-conversion.cpp25 void test_const_cast(int_ptr ip, int_ptr_1 ip1, int_ptr_2 ip2, argument
33 (void)const_cast<int_ptr_1>(ip); // expected-error{{is not allowed}}
35 (void)const_cast<int_ptr_2>(ip); // expected-error{{is not allowed}}
H A Dconversion.cpp93 int *ip = NULL; local
H A Dreinterpret-cast.cpp66 int *ip = reinterpret_cast<int*>(icpcpp); local
68 (void)reinterpret_cast<int const*>(ip);
H A Dscope-check.cpp33 int f(void **ip) { argument
37 goto *ip;
48 int f(void **ip) { argument
51 goto *ip;
65 int f(void **ip) { argument
70 goto *ip; // expected-error {{indirect goto might cross protected scopes}}
83 int f(void **ip) { argument
87 goto *ip;
91 if (ip[1]) {
93 ip
103 f(unsigned s0, unsigned s1, void **ip) argument
212 f(void **ip) argument
225 f(void **ip) argument
241 f(void **ip) argument
255 f(void **ip) argument
[all...]
/external/clang/test/SemaTemplate/
H A Dinstantiate-expr-1.cpp144 int *ip = I; // expected-error{{cannot initialize a variable of type 'int *' with an rvalue of type 'int'}} local
159 int *ip = I; // expected-error{{cannot initialize a variable of type 'int *' with an rvalue of type 'int'}} local
160 return ip;

Completed in 790 milliseconds

1234567891011>>