Searched defs:hp (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A De_remainder.c52 int hx,hp; local
58 hp = __HI(p); /* high word of p */
61 hp &= 0x7fffffff;
65 if((hp|lp)==0) return (x*p)/(x*p); /* p = 0 */
67 ((hp>=0x7ff00000)&& /* p is NaN */
68 (((hp-0x7ff00000)|lp)!=0)))
72 if (hp<=0x7fdfffff) x = __ieee754_fmod(x,p+p); /* now x < 2p */
73 if (((hx-hp)|(lx-lp))==0) return zero*x;
76 if (hp<0x00200000) {
/openjdk7/jdk/src/windows/native/java/net/
H A DInet4AddressImpl.c138 struct hostent *hp; local
214 if ((hp = gethostbyname((char*)hostname)) != NULL) {
215 struct in_addr **addrp = (struct in_addr **) hp->h_addr_list;
230 addrp = (struct in_addr **) hp->h_addr_list;
261 struct hostent *hp; local
271 hp = gethostbyaddr((char *)&addr, sizeof(addr), AF_INET);
272 if (hp == NULL) {
276 if (hp->h_name == NULL) { /* Deal with bug in Windows XP */
280 return JNU_NewStringPlatform(env, hp->h_name);
H A DTwoStacksPlainDatagramSocketImpl.c226 struct hostent *hp; local
233 hp = (struct hostent *)gethostbyname(hostname);
234 if (hp != NULL) {
235 struct in_addr **addrp = (struct in_addr **) hp->h_addr_list;
/openjdk7/jdk/src/solaris/native/java/net/
H A DInet4AddressImpl.c348 struct hostent res, res2, *hp; local
359 gethostbyname_r(hostname, &res, (char*)buf, sizeof(buf), &hp, &h_error);
361 hp = gethostbyname_r(hostname, &res, (char*)buf, sizeof(buf), &h_error);
363 if (hp) {
365 gethostbyaddr_r(hp->h_addr, hp->h_length, AF_INET,
366 &res2, (char*)buf2, sizeof(buf2), &hp, &h_error);
368 hp = gethostbyaddr_r(hp->h_addr, hp
409 struct hostent res, *hp = 0; local
522 struct hostent hent, *hp = 0; local
[all...]
/openjdk7/jdk/src/share/transport/socket/
H A DsocketTransport.c227 struct hostent *hp = dbgsysGetHostByName(hostname); local
228 if (hp == NULL) {
236 memcpy(&(sa->sin_addr), hp->h_addr_list[0], hp->h_length);

Completed in 41 milliseconds