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                422 ext/sockets/sockets.c 	struct hostent		*hp;
hp                428 ext/sockets/sockets.c 	if ((hp = gethostbyname("0.0.0.0")) == NULL) {
hp                430 ext/sockets/sockets.c 	if ((hp = gethostbyname("localhost")) == NULL) {
hp                436 ext/sockets/sockets.c 	memcpy((char *) &la.sin_addr, hp->h_addr, hp->h_length);
hp                437 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 zend_string_init(hp->h_name, strlen(hp->h_name), 0);
hp                240 ext/standard/dns.c 	struct hostent *hp;
hp                254 ext/standard/dns.c 	hp = gethostbyname(hostname);
hp                255 ext/standard/dns.c 	if (hp == NULL || hp->h_addr_list == NULL) {
hp                261 ext/standard/dns.c 	for (i = 0 ; hp->h_addr_list[i] != 0 ; i++) {
hp                262 ext/standard/dns.c 		in = *(struct in_addr *) hp->h_addr_list[i];
hp                271 ext/standard/dns.c 	struct hostent *hp;
hp                275 ext/standard/dns.c 	hp = gethostbyname(name);
hp                277 ext/standard/dns.c 	if (!hp || !*(hp->h_addr_list)) {
hp                281 ext/standard/dns.c 	memcpy(&in.s_addr, *(hp->h_addr_list), sizeof(in.s_addr));
hp                781 ext/standard/dns.c 	HEADER *hp;
hp                934 ext/standard/dns.c 			hp = (HEADER *)&answer;
hp                935 ext/standard/dns.c 			qd = ntohs(hp->qdcount);
hp                936 ext/standard/dns.c 			an = ntohs(hp->ancount);
hp                937 ext/standard/dns.c 			ns = ntohs(hp->nscount);
hp                938 ext/standard/dns.c 			ar = ntohs(hp->arcount);
hp               1004 ext/standard/dns.c 	HEADER *hp;
hp               1049 ext/standard/dns.c 	hp = (HEADER *)&ans;
hp               1052 ext/standard/dns.c 	for (qdc = ntohs((unsigned short)hp->qdcount); qdc--; cp += i + QFIXEDSZ) {
hp               1058 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.  */