hash_size          39 ext/opcache/zend_accelerator_hash.c void zend_accel_hash_init(zend_accel_hash *accel_hash, uint32_t hash_size)
hash_size          44 ext/opcache/zend_accelerator_hash.c 		if (hash_size <= prime_numbers[i]) {
hash_size          45 ext/opcache/zend_accelerator_hash.c 			hash_size = prime_numbers[i];
hash_size          52 ext/opcache/zend_accelerator_hash.c 	accel_hash->max_num_entries = hash_size;
hash_size          64 ext/opcache/zend_accelerator_hash.h void zend_accel_hash_init(zend_accel_hash *accel_hash, uint32_t hash_size);
hash_size          97 ext/opcache/zend_persist.c 		int32_t hash_size;
hash_size         100 ext/opcache/zend_persist.c 			hash_size = HT_MIN_SIZE;
hash_size         102 ext/opcache/zend_persist.c 			hash_size = -(int32_t)ht->nTableMask;
hash_size         103 ext/opcache/zend_persist.c 			while (hash_size >> 1 > ht->nNumUsed) {
hash_size         104 ext/opcache/zend_persist.c 				hash_size >>= 1;
hash_size         107 ext/opcache/zend_persist.c 		ht->nTableMask = -hash_size;
hash_size         110 ext/opcache/zend_persist.c 		ZCG(mem) = (void*)((char*)ZCG(mem) + ZEND_ALIGNED_SIZE((hash_size * sizeof(uint32_t)) + (ht->nNumUsed * sizeof(Bucket))));
hash_size         179 ext/opcache/zend_persist.c 		int32_t hash_size;
hash_size         182 ext/opcache/zend_persist.c 			hash_size = HT_MIN_SIZE;
hash_size         184 ext/opcache/zend_persist.c 			hash_size = -(int32_t)ht->nTableMask;
hash_size         185 ext/opcache/zend_persist.c 			while (hash_size >> 1 > ht->nNumUsed) {
hash_size         186 ext/opcache/zend_persist.c 				hash_size >>= 1;
hash_size         189 ext/opcache/zend_persist.c 		ht->nTableMask = -hash_size;
hash_size         192 ext/opcache/zend_persist.c 		ZCG(mem) = (void*)((char*)ZCG(mem) + (hash_size * sizeof(uint32_t)) + (ht->nNumUsed * sizeof(Bucket)));
hash_size          65 ext/opcache/zend_persist_calc.c 		int32_t hash_size;
hash_size          68 ext/opcache/zend_persist_calc.c 			hash_size = HT_MIN_SIZE;
hash_size          70 ext/opcache/zend_persist_calc.c 			hash_size = -(int32_t)ht->nTableMask;
hash_size          71 ext/opcache/zend_persist_calc.c 			while (hash_size >> 1 > ht->nNumUsed) {
hash_size          72 ext/opcache/zend_persist_calc.c 				hash_size >>= 1;
hash_size          75 ext/opcache/zend_persist_calc.c 		ADD_SIZE(hash_size * sizeof(uint32_t) + ht->nNumUsed * sizeof(Bucket));
hash_size         540 ext/zip/lib/zipint.h zip_hash_t *_zip_hash_new(zip_uint16_t hash_size, zip_error_t *error);