HomeSort by relevance Sort by last modified time
    Searched refs:hp (Results 1 - 25 of 397) 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
  /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...]
  /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) {
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
gethostnamadr.c 126 struct hostent *hp; local
129 hp = gethostbyname2(name, AF_INET6); /* XXX */
130 if (hp) /* XXX */
131 return (hp); /* XXX */
139 struct hostent *hp = 0; local
145 while (!hp) {
150 hp = _gethostbyhtname(name, type);
153 hp = _gethostbydnsname(name, type);
156 hp = _gethostbynisname(name, type);
161 return hp;
167 struct hostent *hp = 0; local
201 struct hostent *hp; local
    [all...]
getnetnamadr.c 121 struct netent *hp = 0; local
127 while (!hp) {
132 hp = _getnetbyhtname(name);
135 hp = _getnetbydnsname(name);
138 hp = _getnetbynisname(name);
143 return hp;
149 struct netent *hp = 0; local
155 while (!hp) {
160 hp = _getnetbyhtaddr(addr, af);
163 hp = _getnetbydnsaddr(addr, af);
    [all...]
map_v4v6.c 112 _map_v4v6_hostent(struct hostent *hp, char **bpp, int *lenp)
116 if (hp->h_addrtype != AF_INET || hp->h_length != INADDRSZ)
118 hp->h_addrtype = AF_INET6;
119 hp->h_length = IN6ADDRSZ;
120 for (ap = hp->h_addr_list; *ap; ap++) {
res_mkquery.c 115 register HEADER *hp; local
135 hp = (HEADER *) buf;
136 hp->id = htons(++_res.id);
137 hp->opcode = op;
138 hp->rd = (_res.options & RES_RECURSE) != 0;
139 hp->rcode = NOERROR;
162 hp->qdcount = htons(1);
182 hp->arcount = htons(1);
204 hp->ancount = htons(1);
  /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/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clnttcp_create/
rpc_clnttcp_create.c 56 struct hostent *hp = NULL; local
60 if ((hp = gethostbyname(argc[1])) == NULL) {
65 bcopy(hp->h_addr, (caddr_t) & server_addr.sin_addr, hp->h_length);
  /bionic/libc/dns/resolv/
res_mkquery.c 126 register HEADER *hp; local
144 hp = (HEADER *)(void *)buf;
145 hp->id = htons(res_randomid());
146 hp->opcode = op;
147 hp->rd = (statp->options & RES_RECURSE) != 0U;
148 hp->rcode = NOERROR;
171 hp->qdcount = htons(1);
192 hp->arcount = htons(1);
214 hp->ancount = htons(1);
236 register HEADER *hp; local
    [all...]
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_addrmanagmt_pmap_getmaps/
rpc_pmap_getmaps.c 51 struct hostent *hp = NULL; local
55 if ((hp = gethostbyname(argc[1])) == NULL) {
60 sin.sin_addr.s_addr = *(u_int *) hp->h_addr;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_addrmanagmt_pmap_getport/
rpc_pmap_getport.c 52 struct hostent *hp = NULL; local
56 if ((hp = gethostbyname(argc[1])) == NULL) {
61 sin.sin_addr.s_addr = *(u_int *) hp->h_addr;
  /external/openssh/openbsd-compat/
fake-rfc2553.c 51 struct hostent *hp; local
70 hp = gethostbyaddr((char *)&sin->sin_addr,
72 if (hp == NULL)
75 if (strlcpy(host, hp->h_name, hostlen) >= hostlen)
158 struct hostent *hp; local
209 hp = gethostbyname(hostname);
210 if (hp && hp->h_name && hp->h_name[0] && hp->h_addr_list[0])
    [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;

Completed in 437 milliseconds

1 2 3 4 5 6 7 8 91011>>