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

1 2 3 4 5 6

  /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) {
  /bionic/libc/dns/include/
hostent.h 51 struct hostent *hp; member in struct:getnamaddr
  /external/crcalc/src/com/hp/creals/
StringFloatRep.java 33 package com.hp.creals;
  /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) {
  /external/snakeyaml/src/test/java/examples/
Hero.java 21 private Integer hp; field in class:Hero
23 public Hero(String name, Integer hp, Integer sp) {
27 this.hp = hp;
39 return hp;
  /frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/hp/
PrinterHashMap.java 17 package com.android.printservice.recommendation.plugin.hp;
VendorInfo.java 17 package com.android.printservice.recommendation.plugin.hp;
HPRecommendationPlugin.java 2 (c) Copyright 2016 HP Inc.
17 package com.android.printservice.recommendation.plugin.hp;
29 private static final String PDL__PCL = "application/vnd.hp-PCL";
45 "HP DESIGNJET T120",
46 "HP DESIGNJET T520",
47 "HP DESIGNJET T930",
48 "HP DESIGNJET T1530",
49 "HP DESIGNJET T2530",
50 "HP DESIGNJET T730",
51 "HP DESIGNJET T830"
    [all...]
  /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...]
  /device/google/dragon/audio/hal/dsp/
crossover.h 40 * Each lp or hp is an LR4 filter, which consists of two second-order
44 struct lr4 lp[3], hp[3]; member in struct:crossover
crossover2.h 43 * Each lp or hp is an LR4 filter, which consists of two second-order
47 struct lr42 lp[3], hp[3]; member in struct:crossover2
  /external/curl/tests/unit/
unit1305.c 43 static struct curl_hash hp; variable in typeref:struct:curl_hash
54 rc = Curl_mk_dnscache(&hp);
70 Curl_hash_destroy(&hp);
133 nodep = Curl_hash_add(&hp, data_key, key_len+1, data_node);
  /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,
  /external/ppp/pppd/plugins/radius/
ip_util.c 31 struct hostent *hp; local
37 else if ((hp = gethostbyname (host)) == (struct hostent *) NULL)
42 return ntohl((*(UINT4 *) hp->h_addr));
105 struct hostent *hp; local
108 if ((hp = gethostbyaddr ((char *) &n_ipaddr, sizeof (struct in_addr),
113 return ((hp==NULL)?"unknown":hp->h_name);
  /external/valgrind/drd/tests/
custom_alloc.c 28 static void* hp = 0; // current heap pointer local
33 if (hp + size2 > hp_lim) {
34 hp = get_superblock();
35 hp_lim = hp + SUPERBLOCK_SIZE - 1;
38 p = hp + RZ;
39 hp += size2;
  /external/valgrind/massif/tests/
custom_alloc.c 28 static void* hp = 0; // current heap pointer local
33 if (hp + size2 > hp_lim) {
34 hp = get_superblock();
35 hp_lim = hp + SUPERBLOCK_SIZE - 1;
38 p = hp + RZ;
39 hp += size2;
  /external/tcpdump/
print-hsrp.c 97 struct hsrp *hp = (struct hsrp *) bp; local
99 ND_TCHECK(hp->hsrp_version);
100 ND_PRINT((ndo, "HSRPv%d", hp->hsrp_version));
101 if (hp->hsrp_version != 0)
103 ND_TCHECK(hp->hsrp_op_code);
105 ND_PRINT((ndo, "%s ", tok2strary(op_code_str, "unknown (%d)", hp->hsrp_op_code)));
107 ND_TCHECK(hp->hsrp_state);
108 ND_PRINT((ndo, "state=%s ", tok2str(states, "Unknown (%d)", hp->hsrp_state)));
109 ND_TCHECK(hp->hsrp_group);
110 ND_PRINT((ndo, "group=%d ", hp->hsrp_group))
    [all...]
  /external/valgrind/memcheck/tests/
custom_alloc.c 34 static void* hp = 0; // current heap pointer local
39 if (hp + size2 > hp_lim) {
40 hp = get_superblock();
41 hp_lim = hp + SUPERBLOCK_SIZE - 1;
44 p = hp + RZ;
45 hp += size2;
  /external/guava/guava-tests/test/com/google/common/net/
HostAndPortTest.java 101 HostAndPort hp; local
103 hp = HostAndPort.fromString(hpString);
115 hp2 = hp.withDefaultPort(defaultPort);
123 assertTrue(hp.hasPort());
124 assertEquals(expectPort, hp.getPort());
126 assertFalse(hp.hasPort());
128 hp.getPort();
133 assertEquals(expectHost, hp.getHostText());
150 HostAndPort hp = HostAndPort.fromParts("gmail.com", 81); local
151 assertEquals("gmail.com", hp.getHostText())
169 HostAndPort hp = HostAndPort.fromHost("gmail.com"); local
    [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")) {
  /bionic/libc/dns/net/
sethostent.c 91 struct hostent *hp; local
108 hp = _hf_gethtbyname2(name, AF_INET6, info);
110 hp = NULL;
111 if (hp == NULL)
112 hp = _hf_gethtbyname2(name, AF_INET, info);
116 hp = _hf_gethtbyname2(name, af, info);
118 if (hp == NULL) {
130 struct hostent *hp, hent; local
159 info->hp->h_addrtype = af;
160 info->hp->h_length = 0
244 struct hostent *hp; local
    [all...]
  /bionic/tests/
netdb_test.cpp 186 hostent* hp = gethostbyname("localhost"); local
187 VerifyLocalhost(hp);
191 hostent* hp = gethostbyname2("localhost", AF_INET); local
192 VerifyLocalhost(hp);
197 hostent *hp; local
200 int result = gethostbyname_r("localhost", &hent, buf, sizeof(buf), &hp, &err);
202 VerifyLocalhost(hp);
204 // Change hp->h_addr to test reentrancy.
205 hp->h_addr[0] = 0;
214 ASSERT_EQ(0, hp->h_addr[0])
219 hostent *hp; local
241 hostent *hp = gethostbyaddr(&addr, sizeof(addr), AF_INET); local
248 hostent *hp; local
270 hostent *hp; local
280 hostent *hp; local
291 hostent *hp; local
    [all...]
  /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)]);
  /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)) {

Completed in 1282 milliseconds

1 2 3 4 5 6