buckets          1197 ext/standard/filestat.c 	realpath_cache_bucket **buckets = realpath_cache_get_buckets(TSRMLS_C), **end = buckets + realpath_cache_max_buckets(TSRMLS_C);
buckets          1204 ext/standard/filestat.c 	while(buckets < end) {
buckets          1205 ext/standard/filestat.c 		realpath_cache_bucket *bucket = *buckets;
buckets          1229 ext/standard/filestat.c 		buckets++;
buckets           861 ext/standard/html.c 	s = ht->buckets[hash % ht->num_elems];
buckets          2618 ext/standard/html_tables.h 	const entity_ht_bucket *buckets; /* .num_elems elements */
buckets           180 sapi/cgi/fastcgi.c 	fcgi_hash_buckets *buckets;
buckets           188 sapi/cgi/fastcgi.c 	h->buckets = (fcgi_hash_buckets*)malloc(sizeof(fcgi_hash_buckets));
buckets           189 sapi/cgi/fastcgi.c 	h->buckets->idx = 0;
buckets           190 sapi/cgi/fastcgi.c 	h->buckets->next = NULL;
buckets           202 sapi/cgi/fastcgi.c 	b = h->buckets;
buckets           221 sapi/cgi/fastcgi.c 	while (h->buckets->next) {
buckets           222 sapi/cgi/fastcgi.c 		fcgi_hash_buckets *q = h->buckets;
buckets           224 sapi/cgi/fastcgi.c 		h->buckets = h->buckets->next;
buckets           227 sapi/cgi/fastcgi.c 	h->buckets->idx = 0;
buckets           275 sapi/cgi/fastcgi.c 	if (UNEXPECTED(h->buckets->idx >= FCGI_HASH_TABLE_SIZE)) {
buckets           278 sapi/cgi/fastcgi.c 		b->next = h->buckets;
buckets           279 sapi/cgi/fastcgi.c 		h->buckets = b;
buckets           281 sapi/cgi/fastcgi.c 	p = h->buckets->data + h->buckets->idx;
buckets           282 sapi/cgi/fastcgi.c 	h->buckets->idx++;