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

1 2 3

  /system/core/libcutils/
socket_network_client.c 41 struct hostent *hp; local
46 hp = gethostbyname(host);
47 if(hp == 0) return -1;
50 addr.sin_family = hp->h_addrtype;
52 memcpy(&addr.sin_addr, hp->h_addr, hp->h_length);
54 s = socket(hp->h_addrtype, type, 0);
  /bionic/libm/src/
e_remainderf.c 29 int32_t hx,hp; local
34 GET_FLOAT_WORD(hp,p);
36 hp &= 0x7fffffff;
40 if(hp==0) return (x*p)/(x*p); /* p = 0 */
42 ((hp>0x7f800000))) /* p is NaN */
46 if (hp<=0x7effffff) x = __ieee754_fmodf(x,p+p); /* now x < 2p */
47 if ((hx-hp)==0) return zero*x;
50 if (hp<0x01000000) {