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

<<11121314151617181920>>

  /external/clang/test/SemaTemplate/
nested-template.cpp 14 S::A<int>::Nested::type *ip = &i; variable
  /external/iproute2/include/linux/
netfilter.h 63 __be32 ip; member in union:nf_inet_addr
  /external/iptables/extensions/
libip6t_DNAT.c 50 const struct in6_addr *ip; local
113 /* Starts with colon or [] colon? No IP info...*/
129 ip = xtables_numeric_to_ip6addr(start);
130 if (!ip)
131 xtables_error(PARAMETER_PROBLEM, "Bad IP address \"%s\"\n",
133 range->min_addr.in6 = *ip;
135 ip = xtables_numeric_to_ip6addr(dash + 1);
136 if (!ip)
137 xtables_error(PARAMETER_PROBLEM, "Bad IP address \"%s\"\n",
139 range->max_addr.in6 = *ip;
    [all...]
libip6t_SNAT.c 50 const struct in6_addr *ip; local
113 /* Starts with colon or [] colon? No IP info...*/
129 ip = xtables_numeric_to_ip6addr(start);
130 if (!ip)
131 xtables_error(PARAMETER_PROBLEM, "Bad IP address \"%s\"\n",
133 range->min_addr.in6 = *ip;
135 ip = xtables_numeric_to_ip6addr(dash + 1);
136 if (!ip)
137 xtables_error(PARAMETER_PROBLEM, "Bad IP address \"%s\"\n",
139 range->max_addr.in6 = *ip;
    [all...]
libipt_DNAT.c 71 const struct in_addr *ip; local
117 /* Starts with a colon? No IP info...*/
133 ip = xtables_numeric_to_ipaddr(arg);
134 if (!ip)
135 xtables_error(PARAMETER_PROBLEM, "Bad IP address \"%s\"\n",
137 range.min_ip = ip->s_addr;
139 ip = xtables_numeric_to_ipaddr(dash+1);
140 if (!ip)
141 xtables_error(PARAMETER_PROBLEM, "Bad IP address \"%s\"\n",
143 range.max_ip = ip->s_addr
    [all...]
libipt_SNAT.c 71 const struct in_addr *ip; local
117 /* Starts with a colon? No IP info...*/
133 ip = xtables_numeric_to_ipaddr(arg);
134 if (!ip)
135 xtables_error(PARAMETER_PROBLEM, "Bad IP address \"%s\"\n",
137 range.min_ip = ip->s_addr;
139 ip = xtables_numeric_to_ipaddr(dash+1);
140 if (!ip)
141 xtables_error(PARAMETER_PROBLEM, "Bad IP address \"%s\"\n",
143 range.max_ip = ip->s_addr
    [all...]
  /external/iptables/include/linux/
netfilter.h 63 __be32 ip; member in union:nf_inet_addr
  /external/kernel-headers/original/uapi/linux/
netfilter.h 67 __be32 ip; member in union:nf_inet_addr
  /external/libunwind/include/tdep-ia64/
script.h 48 unw_word_t ip; /* ip this script is for */ member in struct:ia64_script
  /external/libunwind/src/x86/
Gos-freebsd.c 42 unw_word_t w0, w1, w2, w3, w4, w5, ip; local
75 ip = c->dwarf.ip;
78 if ((*a->access_mem) (as, ip, &w0, 0, arg) < 0 ||
79 (*a->access_mem) (as, ip + 4, &w1, 0, arg) < 0 ||
80 (*a->access_mem) (as, ip + 8, &w2, 0, arg) < 0 ||
81 (*a->access_mem) (as, ip + 12, &w3, 0, arg) < 0)
87 if ((*a->access_mem) (as, ip + 16, &w4, 0, arg) < 0 ||
88 (*a->access_mem) (as, ip + 20, &w5, 0, arg) < 0)
347 Debug (8, "resuming at ip=%x via setcontext()\n", c->dwarf.ip)
    [all...]
  /external/libunwind/tests/
test-ptrace.c 78 unw_word_t ip, sp, start_ip = 0, off; local
91 if ((ret = unw_get_reg (&c, UNW_REG_IP, &ip)) < 0
96 start_ip = ip;
111 printf ("%016lx %-32s (sp=%016lx)\n", (long) ip, buf, (long) sp);
115 panic ("unw_get_proc_info(ip=0x%lx) failed: ret=%d\n", (long) ip, ret);
137 unw_get_reg (&c, UNW_REG_IP, &ip);
138 panic ("FAILURE: unw_step() returned %d for ip=%lx (start ip=%lx)\n",
139 ret, (long) ip, (long) start_ip)
    [all...]
  /external/libvpx/libvpx/vp8/common/mips/dspr2/
idctllm_dspr2.c 49 short *ip = input; local
59 prefetch_load_short(ip + 8);
62 a1 = ip[0] + ip[8];
63 b1 = ip[0] - ip[8];
65 temp1 = (ip[4] * sinpi8sqrt2) >> 16;
66 temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16);
69 temp1 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16)
287 short *ip = input; local
    [all...]
  /external/ltrace/sysdeps/linux-gnu/ia64/
trace.c 81 unsigned long ip = local
91 /* On fault, the IP has moved forward to the next
94 * IP.
97 ip = ip - 16;
98 bundle.code[0] = ptrace(PTRACE_PEEKTEXT, proc->pid, ip, 0);
99 bundle.code[1] = ptrace(PTRACE_PEEKTEXT, proc->pid, ip + 8, 0);
  /external/mdnsresponder/mDNSPosix/
ProxyResponder.c 48 mDNSv4Addr ip; member in struct:__anon10534
79 // Note: This is reverse order compared to a normal dotted-decimal IP address, so we can't use our customary "%.4a" format code
80 mDNS_snprintf(buffer, sizeof(buffer), "%d.%d.%d.%d.in-addr.arpa.", p->ip.b[3], p->ip.b[2], p->ip.b[1], p->ip.b[0]);
84 p->RR_A. resrec.rdata->u.ipv4 = p->ip;
255 proxyhost.ip.NotAnInteger = inet_addr(argv[1]);
256 if (proxyhost.ip.NotAnInteger == INADDR_NONE) // INADDR_NONE is 0xFFFFFFFF
259 if (h) proxyhost.ip.NotAnInteger = *(long*)h->h_addr
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r300_fragprog_emit.c 153 int ip; local
162 ip = code->alu.length++;
164 code->alu.inst[ip].rgb_inst = translate_rgb_opcode(c, inst->RGB.Opcode);
165 code->alu.inst[ip].alpha_inst = translate_alpha_opcode(c, inst->Alpha.Opcode);
172 code->alu.inst[ip].r400_ext_addr |= R400_ADDR_EXT_RGB_MSB_BIT(j);
174 code->alu.inst[ip].rgb_addr |= src << (6*j);
179 code->alu.inst[ip].r400_ext_addr |= R400_ADDR_EXT_A_MSB_BIT(j);
181 code->alu.inst[ip].alpha_addr |= src << (6*j);
186 code->alu.inst[ip].rgb_inst |= arg << (7*j);
191 code->alu.inst[ip].alpha_inst |= arg << (7*j)
    [all...]
  /external/openssl/crypto/bio/
bss_acpt.c 343 int *ip; local
398 ip=(int *)ptr;
399 if (ip != NULL)
400 *ip=data->accept_sock;
bss_conn.c 87 unsigned char ip[4]; member in struct:bio_connect_st
183 if (BIO_get_host_ip(c->param_hostname,&(c->ip[0])) <= 0)
205 ((unsigned long)c->ip[0]<<24L)|
206 ((unsigned long)c->ip[1]<<16L)|
207 ((unsigned long)c->ip[2]<< 8L)|
208 ((unsigned long)c->ip[3]);
332 ret->ip[0]=0;
333 ret->ip[1]=0;
334 ret->ip[2]=0;
335 ret->ip[3]=0
455 int *ip; local
    [all...]
  /external/regex-re2/re2/
bitstate.cc 93 // Should the search visit the pair ip, p?
156 // the loop simply updates ip, p, and arg
167 // Visit ip, p.
168 // VLOG(0) << "Job: " << ip->id() << " "
170 Prog::Inst* ip = prog_->inst(id); local
171 switch (ip->opcode()) {
174 LOG(DFATAL) << "Unexpected opcode: " << ip->opcode() << " arg " << arg;
179 // Push(ip->out1(), p, 0);
180 // Push(ip->out(), p, 0);
181 // If, during the processing of ip->out(), we encounte
    [all...]
prog.cc 139 Prog::Inst* ip = prog->inst(id); local
140 StringAppendF(&s, "%d. %s\n", id, ip->Dump().c_str());
141 AddToQueue(q, ip->out());
142 if (ip->opcode() == kInstAlt || ip->opcode() == kInstAltMatch)
143 AddToQueue(q, ip->out1());
184 Inst* ip = inst(id); local
185 int j = ip->out();
190 ip->set_out(j);
191 AddToQueue(&q, ip->out())
214 Inst* ip = inst(id); local
    [all...]
  /external/tcpdump/
print-dccp.c 29 #include "ip.h"
73 static int dccp_cksum(const struct ip *ip,
76 return nextproto4_cksum(ip, (const u_int8_t *)(void *)dh,
166 * @len - lenght of ip packet
171 const struct ip *ip; local
182 ip = (struct ip *)data2;
184 if (IP_V(ip) == 6
    [all...]
print-sctp.c 57 #include "ip.h"
87 u_int sctpPacketLength) /* ip packet */
90 const struct ip *ip; local
108 ip = (struct ip *)bp2;
110 if (IP_V(ip) == 6)
141 ipaddr_string(&ip->ip_src),
143 ipaddr_string(&ip->ip_dst),
  /external/valgrind/main/memcheck/tests/ppc32/
power_ISA2_05.c 52 int_pair_t *ip; local
57 ip = (int_pair_t *) & FRT1;
58 printf("lfiwax (%f) => FRT=(%x, %x)\n", foo, ip->hi, ip->lo);
  /external/valgrind/main/memcheck/tests/ppc64/
power_ISA2_05.c 50 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/wpa_supplicant_8/src/common/
wpa_helpers.c 213 char ip[30]; local
221 if (get_wpa_status(ifname, "ip_address", ip, sizeof(ip)) == 0
222 && strlen(ip) > 0) {
223 printf("IP address found: '%s'\n", ip);
232 printf("%s: Could not get IP address for ifname='%s'", __func__,
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
az_lsp.cpp 385 Word16 i, j, nf, ip;
434 ip = 0; // indicator for f1 or f2
509 if (ip == 0)
511 ip = 1;
516 ip = 0;
570 register Word16 ip; local
628 ip = 0; /* indicator for f1 or f2 */
704 if (ip == 0)
706 ip = 1;
711 ip = 0
    [all...]

Completed in 1250 milliseconds

<<11121314151617181920>>