Home
last modified time | relevance | path

Searched refs:accel_hash (Results 1 – 2 of 2) sorted by relevance

/PHP-7.4/ext/opcache/
H A Dzend_accelerator_hash.c34 accel_hash->num_entries = 0; in zend_accel_hash_clean()
36 memset(accel_hash->hash_table, 0, sizeof(zend_accel_hash_entry *)*accel_hash->max_num_entries); in zend_accel_hash_clean()
50 accel_hash->num_entries = 0; in zend_accel_hash_init()
56 if (!accel_hash->hash_table) { in zend_accel_hash_init()
63 if (!accel_hash->hash_entries) { in zend_accel_hash_init()
122 if (accel_hash->num_entries == accel_hash->max_num_entries) { in zend_accel_hash_update()
126 entry = &accel_hash->hash_entries[accel_hash->num_entries++]; in zend_accel_hash_update()
183 accel_hash, in zend_accel_hash_find()
196 accel_hash, in zend_accel_hash_find_entry()
209 accel_hash, in zend_accel_hash_str_find()
[all …]
H A Dzend_accelerator_hash.h64 void zend_accel_hash_init(zend_accel_hash *accel_hash, uint32_t hash_size);
65 void zend_accel_hash_clean(zend_accel_hash *accel_hash);
68 zend_accel_hash *accel_hash,
75 zend_accel_hash *accel_hash,
79 zend_accel_hash *accel_hash,
83 zend_accel_hash *accel_hash,
88 zend_accel_hash *accel_hash,
93 zend_accel_hash *accel_hash,
97 static inline zend_bool zend_accel_hash_is_full(zend_accel_hash *accel_hash) in zend_accel_hash_is_full() argument
99 if (accel_hash->num_entries == accel_hash->max_num_entries) { in zend_accel_hash_is_full()

Completed in 8 milliseconds