HomeSort by relevance Sort by last modified time
    Searched defs:ip (Results 251 - 275 of 571) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/libjingle/source/talk/base/
network.h 173 // Returns the Network's current idea of the 'best' IP it has.
176 // Returns an unset IP if this network has no active addresses.
177 IPAddress ip() const { function in class:talk_base::Network
183 // Adds an active IP address to this network. Does not check for duplicates.
184 void AddIP(const IPAddress& ip) { ips_.push_back(ip); }
186 // Sets the network's IP address list. Returns true if new IP addresses were
189 // Get the list of IP Addresses associated with this network.
200 // the IP is 0, or the interface is one we know is invalid
    [all...]
socketaddress.cc 37 #include <netinet/ip.h>
70 SocketAddress::SocketAddress(const IPAddress& ip, int port) {
71 SetIP(ip);
111 void SocketAddress::SetIP(const IPAddress& ip) {
114 ip_ = ip;
132 void SocketAddress::SetResolvedIP(const IPAddress& ip) {
133 ip_ = ip;
142 uint32 SocketAddress::ip() const { function in class:talk_base::SocketAddress
155 // If the hostname was a literal IP string, it may need to have square
167 // If the hostname was a literal IP string, it may need to have squar
364 uint32 ip = 0; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/client/
connectivitychecker.cc 144 bool ConnectivityChecker::AddNic(const talk_base::IPAddress& ip,
146 NicMap::iterator i = nics_.find(NicId(ip, proxy_addr));
153 info.ip = ip;
156 nics_.insert(std::pair<NicId, NicInfo>(NicId(ip, proxy_addr), info));
221 NicMap::iterator i = nics_.find(NicId(networks[0]->ip(), proxy_info.address));
254 talk_base::IPAddress ip = port->Network()->ip(); local
255 NicMap::iterator i = nics_.find(NicId(ip, port->proxy().address));
288 talk_base::IPAddress ip = port->Network()->ip() local
305 talk_base::IPAddress ip = port->Network()->ip(); local
    [all...]
connectivitychecker.h 63 NicId(const talk_base::IPAddress& ip,
65 : ip(ip),
68 talk_base::IPAddress ip; member in struct:cricket::NicId
77 if (first.ip == second.ip) {
85 return first.ip < second.ip ? -1 : 1;
96 talk_base::IPAddress ip; member in struct:cricket::NicInfo
229 bool AddNic(const talk_base::IPAddress& ip,
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
r500_fragprog_emit.c 223 static void alu_nop(struct r300_fragment_program_compiler *c, int ip)
227 if ((code->inst[ip].inst0 & 0x3) != R500_INST_TYPE_TEX) {
228 code->inst[ip].inst0 |= R500_INST_NOP;
237 int ip; local
245 ip = ++code->inst_end;
250 if (ip > 0) {
251 alu_nop(c, ip - 1);
255 code->inst[ip].inst5 = translate_rgb_op(c, inst->RGB.Opcode);
256 code->inst[ip].inst4 = translate_alpha_op(c, inst->Alpha.Opcode);
259 code->inst[ip].inst0 = R500_INST_TYPE_OUT
373 int ip; local
663 int ip; local
    [all...]
radeon_dataflow_deadcode.c 155 struct instruction_state * insts = &s->Instructions[inst->IP];
219 unsigned int ip; local
312 ip = 0;
315 inst = inst->Next, ++ip) {
324 inst->U.I.DstReg.WriteMask = s.Instructions[ip].WriteMask;
325 if (s.Instructions[ip].WriteMask)
328 if (s.Instructions[ip].WriteALUResult)
341 usemask = s.Instructions[ip].WriteMask;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_sf_emit.c 169 struct brw_reg ip = brw_ip_reg(); local
187 brw_JMPI(p, ip, ip, c->pv);
191 brw_JMPI(p, ip, ip, brw_imm_d(jmpi*(nr*4+1)));
195 brw_JMPI(p, ip, ip, brw_imm_d(jmpi*nr*2));
208 struct brw_reg ip = brw_ip_reg(); local
226 brw_JMPI(p, ip, ip, c->pv)
718 struct brw_reg ip = brw_ip_reg(); local
    [all...]
brw_vec4.cpp 284 int ip = 0; local
290 loop_start = ip;
300 use[i] = ip;
310 use[reg] = ip;
326 def[reg] = MIN2(def[reg], ip);
333 ip++;
707 int ip = next_ip; local
722 if (this->virtual_grf_use[inst->src[0].reg] > ip)
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
r200_vertprog.c 64 #define OPN(operator, ip) {#operator, OPCODE_##operator, ip}
69 unsigned long ip; /* number of input operands and flags */ member in struct:__anon15218
347 return op_names[i].ip;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texparam.c 1691 GLint ip[4]; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/apps/
s_socket.c 105 static int init_client_ip(int *sock,unsigned char ip[4], int port, int type);
107 static int init_server_long(int *sock, int port,char *ip, int type);
109 static int host_ip(char *str, unsigned char ip[4]);
239 unsigned char ip[4]; local
241 memset(ip, '\0', sizeof ip);
242 if (!host_ip(host,&(ip[0])))
244 return init_client_ip(sock,ip,port,type);
247 static int init_client_ip(int *sock, unsigned char ip[4], int port, int type)
259 ((unsigned long)ip[0]<<24L)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bio/
b_sock.c 115 static int get_ip(const char *str,unsigned char *ip);
120 int BIO_get_host_ip(const char *str, unsigned char *ip)
127 i=get_ip(str,ip);
139 /* If the string actually contained an IP address, we need not do
160 ip[i]=he->h_addr_list[0][i];
587 static int get_ip(const char *str, unsigned char ip[4])
615 ip[0]=tmp[0];
616 ip[1]=tmp[1];
617 ip[2]=tmp[2];
618 ip[3]=tmp[3]
634 unsigned char ip[4]; local
    [all...]
  /external/chromium_org/third_party/re2/re2/
nfa.cc 69 const char* cap_j; // if j>=0, set capture[j] = cap_j before processing ip
223 Prog::Inst* ip = prog_->inst(id); local
224 switch (ip->opcode()) {
226 LOG(DFATAL) << "unhandled " << ip->opcode() << " in AddToThreadq";
242 stk[nstk++] = AddState(ip->out1());
243 stk[nstk++] = AddState(ip->out());
248 stk[nstk++] = AddState(ip->out());
252 if ((j=ip->cap()) < ncapture_) {
260 stk[nstk++] = AddState(ip->out());
276 if (ip->empty() & ~flag
309 Prog::Inst* ip = prog_->inst(id); local
525 Prog::Inst* ip = prog_->inst(id); local
634 Prog::Inst* ip = prog_->inst(id); local
    [all...]
onepass.cc 81 // jumps to ip->out() and ip->out1() in parallel. Each of the
93 // kInstByteRange instruction (at ip->out()) and waits for
345 // If ip is not on workq, adds ip to work queue and returns true.
346 // If ip is already on work queue, does nothing and returns false.
347 // If ip is NULL, does nothing and returns true (pretends to add it).
365 // These conditions must be true for any instruction ip:
368 // path from ip to nip.
370 // ip that matches any particular byte c
430 Prog::Inst* ip = inst(id); local
    [all...]
  /external/clang/test/Analysis/
misc-ps.c 185 int *ip = (int *)&v; local
187 clang_analyzer_eval(ip == cp); // expected-warning{{TRUE}}
190 *ip = 42;
191 clang_analyzer_eval(*ip == 42); // expected-warning{{TRUE}}
  /external/clang/test/CodeGenCXX/
mangle-exprs.cpp 162 int *ip; local
164 a(x, &X::member, ip);
  /external/clang/test/FixIt/
fixit-cxx0x.cpp 91 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}}
107 IP<0> ip0; // expected-error{{null non-type template argument must be cast to template parameter type 'int *'}}
  /external/clang/test/SemaCXX/
conversion.cpp 93 int *ip = NULL; local
reinterpret-cast.cpp 66 int *ip = reinterpret_cast<int*>(icpcpp); local
68 (void)reinterpret_cast<int const*>(ip);
  /external/clang/test/SemaTemplate/
instantiate-expr-1.cpp 144 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;
instantiate-method.cpp 13 void test(X<int> *xi, int *ip, X<int(int)> *xf) {
15 xi->g(ip);
73 int *ip = cip; local
  /external/eigen/Eigen/src/SparseCore/
SparseSelfAdjointView.h 315 Index ip = perm ? perm[i] : i; local
317 count[StorageOrderMatch ? jp : ip]++;
319 count[ip]++;
322 count[ip]++;
347 Index ip = perm ? perm[i] : i; local
351 Index k = count[StorageOrderMatch ? jp : ip]++;
352 dest.innerIndexPtr()[k] = StorageOrderMatch ? ip : jp;
357 Index k = count[ip]++;
358 dest.innerIndexPtr()[k] = ip;
364 std::swap(ip,jp)
403 Index ip = perm ? perm[i] : i; local
424 Index ip = perm? perm[i] : i; local
    [all...]
  /external/iptables/extensions/
libxt_multiport.c 200 entry->ip.proto, entry->ip.invflags);
242 entry->ip.proto, entry->ip.invflags);
317 const struct ipt_ip *ip = ip_void; local
318 __multiport_print(match, numeric, ip->proto);
324 const struct ip6t_ip6 *ip = ip_void; local
325 __multiport_print(match, numeric, ip->proto);
371 const struct ipt_ip *ip = ip_void; local
372 __multiport_print_v1(match, numeric, ip->proto)
378 const struct ip6t_ip6 *ip = ip_void; local
412 const struct ipt_ip *ip = ip_void; local
419 const struct ip6t_ip6 *ip = ip_void; local
460 const struct ipt_ip *ip = ip_void; local
467 const struct ip6t_ip6 *ip = ip_void; local
    [all...]
  /external/iptables/include/linux/netfilter/
xt_osf.h 36 #define XT_OSF_TTL_TRUE 0 /* True ip and fingerprint TTL comparison */
37 #define XT_OSF_TTL_LESS 1 /* Check if ip TTL is less than fingerprint one */
38 #define XT_OSF_TTL_NOCHECK 2 /* Do not compare ip and fingerprint TTL at all */
84 struct iphdr ip; member in struct:xt_osf_nlmsg
  /external/libppp/src/
radius.h 50 struct in_addr ip; /* FRAMED IP */ member in struct:radius
92 } ip; member in union:radacct::__anon22850

Completed in 53 milliseconds

<<11121314151617181920>>