hp                 89 ext/dba/libcdb/cdb_make.c 	head->hp[head->num].h = h;
hp                 90 ext/dba/libcdb/cdb_make.c 	head->hp[head->num].p = c->pos;
hp                148 ext/dba/libcdb/cdb_make.c 	struct cdb_hp *hp;
hp                156 ext/dba/libcdb/cdb_make.c 		++c->count[255 & x->hp[i].h];
hp                189 ext/dba/libcdb/cdb_make.c 		c->split[--c->start[255 & x->hp[i].h]] = x->hp[i];
hp                202 ext/dba/libcdb/cdb_make.c 		hp = c->split + c->start[i];
hp                204 ext/dba/libcdb/cdb_make.c 			where = (hp->h >> 8) % len;
hp                208 ext/dba/libcdb/cdb_make.c 			c->hash[where] = *hp++;
hp                 37 ext/dba/libcdb/cdb_make.h 	struct cdb_hp hp[CDB_HPLIST];
hp                419 ext/sockets/sockets.c 	struct hostent		*hp;
hp                425 ext/sockets/sockets.c 	if ((hp = gethostbyname("0.0.0.0")) == NULL) {
hp                427 ext/sockets/sockets.c 	if ((hp = gethostbyname("localhost")) == NULL) {
hp                433 ext/sockets/sockets.c 	memcpy((char *) &la.sin_addr, hp->h_addr, hp->h_length);
hp                434 ext/sockets/sockets.c 	la.sin_family = hp->h_addrtype;
hp                185 ext/standard/dns.c 	struct hostent *hp;
hp                189 ext/standard/dns.c 		hp = gethostbyaddr((char *) &addr6, sizeof(addr6), AF_INET6);
hp                191 ext/standard/dns.c 		hp = gethostbyaddr((char *) &addr, sizeof(addr), AF_INET);
hp                202 ext/standard/dns.c 	hp = gethostbyaddr((char *) &addr, sizeof(addr), AF_INET);
hp                205 ext/standard/dns.c 	if (!hp || hp->h_name == NULL || hp->h_name[0] == '\0') {
hp                209 ext/standard/dns.c 	return estrdup(hp->h_name);
hp                242 ext/standard/dns.c 	struct hostent *hp;
hp                256 ext/standard/dns.c 	hp = gethostbyname(hostname);
hp                257 ext/standard/dns.c 	if (hp == NULL || hp->h_addr_list == NULL) {
hp                263 ext/standard/dns.c 	for (i = 0 ; hp->h_addr_list[i] != 0 ; i++) {
hp                264 ext/standard/dns.c 		in = *(struct in_addr *) hp->h_addr_list[i];
hp                273 ext/standard/dns.c 	struct hostent *hp;
hp                276 ext/standard/dns.c 	hp = gethostbyname(name);
hp                278 ext/standard/dns.c 	if (!hp || !*(hp->h_addr_list)) {
hp                282 ext/standard/dns.c 	memcpy(&in.s_addr, *(hp->h_addr_list), sizeof(in.s_addr));
hp                780 ext/standard/dns.c 	HEADER *hp;
hp                933 ext/standard/dns.c 			hp = (HEADER *)&answer;
hp                934 ext/standard/dns.c 			qd = ntohs(hp->qdcount);
hp                935 ext/standard/dns.c 			an = ntohs(hp->ancount);
hp                936 ext/standard/dns.c 			ns = ntohs(hp->nscount);
hp                937 ext/standard/dns.c 			ar = ntohs(hp->arcount);
hp               1003 ext/standard/dns.c 	HEADER *hp;
hp               1048 ext/standard/dns.c 	hp = (HEADER *)&ans;
hp               1051 ext/standard/dns.c 	for (qdc = ntohs((unsigned short)hp->qdcount); qdc--; cp += i + QFIXEDSZ) {
hp               1057 ext/standard/dns.c 	count = ntohs((unsigned short)hp->ancount);
hp                173 main/alloca.c      register header *hp;	/* Traverses linked list.  */
hp                179 main/alloca.c      for (hp = last_alloca_header; hp != NULL;)
hp                180 main/alloca.c        if ((STACK_DIR > 0 && hp->h.deep > depth)
hp                181 main/alloca.c  	  || (STACK_DIR < 0 && hp->h.deep < depth))
hp                183 main/alloca.c  	  register header *np = hp->h.next;
hp                185 main/alloca.c  	  free ((pointer) hp);	/* Collect garbage.  */
hp                187 main/alloca.c  	  hp = np;		/* -> next header.  */
hp                192 main/alloca.c      last_alloca_header = hp;	/* -> last valid storage.  */