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

1 2 3 4 5 6 7 8 91011>>

  /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;
  /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...]
  /device/google/dragon/audio/hal/dsp/
crossover2.c 27 * \-- hp --> data1
31 static void lr42_split(struct lr42 *lp, struct lr42 *hp, int count,
35 float32x4_t x1 = {lp->x1L, hp->x1L, lp->x1R, hp->x1R};
36 float32x4_t x2 = {lp->x2L, hp->x2L, lp->x2R, hp->x2R};
37 float32x4_t y1 = {lp->y1L, hp->y1L, lp->y1R, hp->y1R};
38 float32x4_t y2 = {lp->y2L, hp->y2L, lp->y2R, hp->y2R}
    [all...]
crossover.c 31 * \-- hp --> data1
33 static void lr4_split(struct lr4 *lp, struct lr4 *hp, int count, float *data0,
48 float hx1 = hp->x1;
49 float hx2 = hp->x2;
50 float hy1 = hp->y1;
51 float hy2 = hp->y2;
52 float hz1 = hp->z1;
53 float hz2 = hp->z2;
54 float hb0 = hp->b0;
55 float hb1 = hp->b1
    [all...]
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
  /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...]
gethnamaddr.c 204 const HEADER *hp; local
243 hp = &answer->hdr;
244 ancount = ntohs(hp->ancount);
245 qdcount = ntohs(hp->qdcount);
511 gethostbyname_r(const char *name, struct hostent *hp, char *buf, size_t buflen,
525 *result = gethostbyname_internal(name, AF_INET6, res, hp, buf, buflen, errorp, NETID_UNSET,
532 *result = gethostbyname_internal(name, AF_INET, res, hp, buf, buflen, errorp, NETID_UNSET,
544 gethostbyname2_r(const char *name, int af, struct hostent *hp, char *buf,
554 *result = gethostbyname_internal(name, af, res, hp, buf, buflen, errorp, NETID_UNSET,
593 android_read_hostent(FILE* proxy, struct hostent* hp, char* hbuf, size_t hbuflen, int *he
1150 char *hp; local
1172 struct hostent *hp; local
1235 struct hostent *hp; local
1354 struct hostent *hp = info->hp; local
1471 struct hostent *hp = NULL; local
1523 struct hostent *hp; local
1592 struct hostent *hp; local
    [all...]
  /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;
  /bionic/libm/upstream-freebsd/lib/msun/src/
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) {
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) {
  /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/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);
  /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...]
  /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...]
  /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/crcalc/src/com/hp/creals/
StringFloatRep.java 33 package com.hp.creals;
  /system/netd/server/
DnsProxyListener.cpp 125 static bool sendhostent(SocketClient *c, struct hostent *hp) {
128 if (hp->h_name != NULL) {
129 success &= sendLenAndData(c, strlen(hp->h_name)+1, hp->h_name);
134 for (i=0; hp->h_aliases[i] != NULL; i++) {
135 success &= sendLenAndData(c, strlen(hp->h_aliases[i])+1, hp->h_aliases[i]);
139 uint32_t buf = htonl(hp->h_addrtype);
142 buf = htonl(hp->h_length);
145 for (i=0; hp->h_addr_list[i] != NULL; i++)
381 struct hostent* hp = android_gethostbynamefornet(mName, mAf, mNetId, mMark); local
501 struct hostent* hp; local
    [all...]
  /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);
  /frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/hp/
PrinterHashMap.java 17 package com.android.printservice.recommendation.plugin.hp;
  /frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/mopria/
MopriaRecommendationPlugin.java 25 import com.android.printservice.recommendation.plugin.hp.MDnsUtils;
26 import com.android.printservice.recommendation.plugin.hp.ServiceRecommendationPlugin;
27 import com.android.printservice.recommendation.plugin.hp.VendorInfo;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xos_r.h 399 # define _XGethostbyname(h,hp) gethostbyname((h))
400 # define _XGethostbyaddr(a,al,t,hp) gethostbyaddr((a),(al),(t))
424 # define _Xg_copyHostent(hp) \
425 (memcpy(&(hp).hent, (hp).hptr, sizeof(struct hostent)), \
426 strcpy((hp).h_name, (hp).hptr->h_name), \
427 ((hp).hent.h_name = (hp).h_name), \
428 ((hp).hptr = &(hp).hent),
    [all...]

Completed in 367 milliseconds

1 2 3 4 5 6 7 8 91011>>