HomeSort by relevance Sort by last modified time
    Searched defs:hp (Results 1 - 25 of 51) sorted by null

1 2 3

  /bionic/libm/upstream-freebsd/lib/msun/src/
e_remainderf.c 28 int32_t hx,hp; local
33 GET_FLOAT_WORD(hp,p);
35 hp &= 0x7fffffff;
39 if(hp==0) return (x*p)/(x*p); /* p = 0 */
41 ((hp>0x7f800000))) /* p is NaN */
45 if (hp<=0x7effffff) x = __ieee754_fmodf(x,p+p); /* now x < 2p */
46 if ((hx-hp)==0) return zero*x;
49 if (hp<0x01000000) {
e_remainder.c 37 int32_t hx,hp; local
42 EXTRACT_WORDS(hp,lp,p);
44 hp &= 0x7fffffff;
48 if((hp|lp)==0) return (x*p)/(x*p); /* p = 0 */
50 ((hp>=0x7ff00000)&& /* p is NaN */
51 (((hp-0x7ff00000)|lp)!=0)))
55 if (hp<=0x7fdfffff) x = __ieee754_fmod(x,p+p); /* now x < 2p */
56 if (((hx-hp)|(lx-lp))==0) return zero*x;
59 if (hp<0x00200000) {
  /external/fdlibm/
e_remainder.c 39 int hx,hp; local
45 hp = __HI(p); /* high word of p */
48 hp &= 0x7fffffff;
52 if((hp|lp)==0) return (x*p)/(x*p); /* p = 0 */
54 ((hp>=0x7ff00000)&& /* p is NaN */
55 (((hp-0x7ff00000)|lp)!=0)))
59 if (hp<=0x7fdfffff) x = __ieee754_fmod(x,p+p); /* now x < 2p */
60 if (((hx-hp)|(lx-lp))==0) return zero*x;
63 if (hp<0x00200000) {
  /bionic/libc/dns/resolv/
res_mkquery.c 127 register HEADER *hp; local
145 hp = (HEADER *)(void *)buf;
146 hp->id = htons(res_randomid());
147 hp->opcode = op;
148 hp->rd = (statp->options & RES_RECURSE) != 0U;
149 hp->rcode = NOERROR;
172 hp->qdcount = htons(1);
193 hp->arcount = htons(1);
215 hp->ancount = htons(1);
237 register HEADER *hp; local
    [all...]
res_query.c 135 HEADER *hp = (HEADER *)(void *)answer; local
142 hp->rcode = NOERROR; /* default */
184 if (hp->rcode != NOERROR || ntohs(hp->ancount) == 0) {
188 p_rcode(hp->rcode),
189 ntohs(hp->ancount),
190 ntohs(hp->nscount),
191 ntohs(hp->arcount));
193 switch (hp->rcode) {
229 HEADER *hp = (HEADER *)(void *)answer local
    [all...]
res_send.c 740 const HEADER *hp = (const HEADER *)(const void *)buf; local
927 if (hp->id != anhp->id) {
1051 const HEADER *hp = (const HEADER *)(const void *)buf; local
1178 if (hp->id != anhp->id) {
    [all...]
  /external/libedit/src/
hist.c 100 const Char *hp; local
121 hp = HIST_FIRST(el);
123 if (hp == NULL)
127 if ((hp = HIST_NEXT(el)) == NULL) {
131 (void) Strncpy(el->el_line.buffer, hp,
common.c 708 const Char *hp; local
732 hp = HIST_FIRST(el);
733 if (hp == NULL)
739 hp = HIST_NEXT(el);
741 while (hp != NULL) {
743 (void) fprintf(el->el_errfile, "Comparing with \"%s\"\n", hp);
745 if ((Strncmp(hp, el->el_line.buffer, (size_t)
747 hp[el->el_line.lastchar - el->el_line.buffer]) &&
748 c_hmatch(el, hp)) {
753 hp = HIST_NEXT(el)
776 const Char *hp; local
    [all...]
  /external/chromium_org/mojo/public/c/system/tests/
core_unittest.cc 153 MojoHandle hp, hc; local
160 hp = MOJO_HANDLE_INVALID;
162 EXPECT_EQ(MOJO_RESULT_OK, MojoCreateDataPipe(NULL, &hp, &hc));
163 EXPECT_NE(hp, MOJO_HANDLE_INVALID);
170 // The producer |hp| should be writable.
171 EXPECT_EQ(MOJO_RESULT_OK, MojoWait(hp, MOJO_HANDLE_SIGNAL_WRITABLE, 0));
184 // Write to |hp|.
190 MojoWriteData(hp, kHello, &buffer_size, MOJO_WRITE_MESSAGE_FLAG_NONE));
197 // Do a two-phase write to |hp|.
200 hp, &write_pointer, &buffer_size, MOJO_WRITE_DATA_FLAG_NONE))
    [all...]
  /external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
HttpTransportSE.java 182 HeaderProperty hp = (HeaderProperty) headers.get(i); local
183 connection.setRequestProperty(hp.getKey(), hp.getValue());
213 HeaderProperty hp = (HeaderProperty) retHeaders.get(i); local
215 if (null == hp.getKey()) {
220 if (hp.getKey().equalsIgnoreCase("Content-Encoding")
221 && hp.getValue().equalsIgnoreCase("gzip")) {
  /external/ipsec-tools/src/racoon/
isakmp_frag.c 169 int *hp; local
171 hp = (int *)(gen + 1);
173 return ntohl(hp[MD5_DIGEST_LENGTH / sizeof(*hp)]);
getcertsbyname.c 210 HEADER *hp; local
252 hp = (HEADER *)answer;
253 qdcount = ntohs(hp->qdcount);
254 ancount = ntohs(hp->ancount);
264 cp = (unsigned char *)(hp + 1);
  /external/libnl/lib/route/sch/
prio.c 91 int i, hp; local
105 hp = (((TC_PRIO_MAX/2) + 1) & ~1);
107 for (i = 0; i < hp; i++) {
112 if (hp+i <= TC_PRIO_MAX) {
114 rtnl_prio2str(hp+i, a, sizeof(a)),
115 prio->qp_priomap[hp+i]);
116 if (i < (hp - 1)) {
  /bionic/libc/dns/net/
getnameinfo.c 172 struct hostent *hp; local
306 hp = android_gethostbyaddrfornet_proxy(addr, afd->a_addrlen, afd->a_af, netid);
307 if (hp) {
315 p = strchr(hp->h_name, '.');
317 TODO: Before uncommenting rewrite to avoid modifying hp.
321 if (strlen(hp->h_name) + 1 > (size_t)hostlen) {
324 strlcpy(host, hp->h_name, hostlen);
  /external/nist-sip/java/gov/nist/core/
HostNameParser.java 266 HostPort hp = new HostPort(); local
267 hp.setHost(host);
279 hp.setPort(Integer.parseInt(port));
312 return hp;
334 HostPort hp = hnp.hostPort(true); local
335 System.out.println("["+hp.encode()+"]");
  /external/nist-sip/java/gov/nist/javax/sip/parser/
URLParser.java 318 HostPort hp = hnp.hostPort( false ); local
319 retval.append(hp.toString());
644 HostPort hp = hnp.hostPort( false ); local
645 retval.setHostPort(hp);
StringMsgParser.java 575 HeaderParser hp = ParserFactory.createParser(buffer.toString()); local
576 if (hp == null)
578 return hp.parse();
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_entropymv.h 90 vp9_prob hp; member in struct:__anon17738
118 unsigned int hp[2]; member in struct:__anon17740
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_encodemv.c 40 const int hp = offset & 1; // high precision mv data local
69 vp9_write(w, hp,
70 mv_class == MV_CLASS_0 ? mvcomp->class0_hp : mvcomp->hp);
99 hp_cost[0] = vp9_cost_zero(mvcomp->hp);
100 hp_cost[1] = vp9_cost_one(mvcomp->hp);
197 update_mv(w, counts->comps[i].hp, &mvc->comps[i].hp, MV_UPDATE_PROB);
  /external/libpcap/
nametoaddr.c 105 struct hostent *hp; local
107 if ((hp = gethostbyname(name)) != NULL) {
109 hlist[0] = (bpf_u_int32 *)hp->h_addr;
110 NTOHL(hp->h_addr);
113 for (p = (bpf_u_int32 **)hp->h_addr_list; *p; ++p)
115 return (bpf_u_int32 **)hp->h_addr_list;
  /external/libvpx/libvpx/vp9/common/
vp9_entropymv.h 90 vp9_prob hp; member in struct:__anon4457
118 unsigned int hp[2]; member in struct:__anon4459
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemv.c 40 const int hp = offset & 1; // high precision mv data local
69 vp9_write(w, hp,
70 mv_class == MV_CLASS_0 ? mvcomp->class0_hp : mvcomp->hp);
99 hp_cost[0] = vp9_cost_zero(mvcomp->hp);
100 hp_cost[1] = vp9_cost_one(mvcomp->hp);
197 update_mv(w, counts->comps[i].hp, &mvc->comps[i].hp, MV_UPDATE_PROB);
  /external/iputils/
clockdiff.c 554 struct hostent * hp; local
602 hp = gethostbyname(hostname);
603 if (hp == NULL) {
607 myname = strdup(hp->h_name);
609 hp = gethostbyname(argv[1]);
610 if (hp == NULL) {
614 hisname = strdup(hp->h_name);
617 server.sin_family = hp->h_addrtype;
618 memcpy(&(server.sin_addr.s_addr), hp->h_addr, 4);
rarpd.c 299 struct hostent *hp; local
309 (hp = gethostbyname(ename)) == NULL) {
314 if (hp->h_addrtype != AF_INET) {
318 ifa = select_ipaddr(ifindex, &emap.ipaddr, (__u32 **)hp->h_addr_list);
  /bionic/libc/dns/
gethnamaddr.c 185 const HEADER *hp; local
218 hp = &answer->hdr;
219 ancount = ntohs(hp->ancount);
220 qdcount = ntohs(hp->qdcount);
476 gethostbyname_r(const char *name, struct hostent *hp, char *buf, size_t buflen,
487 memcpy(hp, res, sizeof *hp);
488 *result = hp;
495 struct hostent *hp; local
505 hp = gethostbyname_internal(name, AF_INET6, res, NETID_UNSET, MARK_UNSET)
525 struct hostent *hp; local
631 struct hostent *hp; local
827 struct hostent *hp; local
1000 struct hostent *hp; local
1231 char *hp; local
1262 struct hostent *hp; local
1323 struct hostent *hp; local
    [all...]

Completed in 183 milliseconds

1 2 3