Lines Matching refs:uint

45 typedef ulong (*hash_func_t)(const char *arKey, uint nKeyLength);
56 uint nKeyLength;
67 uint nTableSize;
68 uint nTableMask;
69 uint nNumOfElements;
87 uint nKeyLength;
99 ZEND_API int _zend_hash_init(HashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDes…
100 ZEND_API int _zend_hash_init_ex(HashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t p…
107 …_zend_hash_add_or_update(HashTable *ht, const char *arKey, uint nKeyLength, void *pData, uint nDat…
113 …_quick_add_or_update(HashTable *ht, const char *arKey, uint nKeyLength, ulong h, void *pData, uint
119 ZEND_API int _zend_hash_index_update_or_next_insert(HashTable *ht, ulong h, void *pData, uint nData…
125 ZEND_API int zend_hash_add_empty_element(HashTable *ht, const char *arKey, uint nKeyLength);
152 ZEND_API int zend_hash_del_key_or_index(HashTable *ht, const char *arKey, uint nKeyLength, ulong h,…
160 ZEND_API ulong zend_get_hash_value(const char *arKey, uint nKeyLength);
163 ZEND_API int zend_hash_find(const HashTable *ht, const char *arKey, uint nKeyLength, void **pData);
164 ZEND_API int zend_hash_quick_find(const HashTable *ht, const char *arKey, uint nKeyLength, ulong h,…
168 ZEND_API int zend_hash_exists(const HashTable *ht, const char *arKey, uint nKeyLength);
169 ZEND_API int zend_hash_quick_exists(const HashTable *ht, const char *arKey, uint nKeyLength, ulong …
179 ZEND_API int zend_hash_get_current_key_ex(const HashTable *ht, char **str_index, uint *str_length, …
184 …update_current_key_ex(HashTable *ht, int key_type, const char *str_index, uint str_length, ulong n…
214 …opy(HashTable *target, HashTable *source, copy_ctor_func_t pCopyConstructor, void *tmp, uint size);
215 …*target, HashTable *source, copy_ctor_func_t pCopyConstructor, void *tmp, uint size, int overwrite…
216 …(HashTable *target, HashTable *source, copy_ctor_func_t pCopyConstructor, uint size, merge_checker…
261 static inline ulong zend_inline_hash_func(const char *arKey, uint nKeyLength) in zend_inline_hash_func()
291 ZEND_API ulong zend_hash_func(const char *arKey, uint nKeyLength);
343 …int zend_symtable_update(HashTable *ht, const char *arKey, uint nKeyLength, void *pData, uint nDat…
350 static inline int zend_symtable_del(HashTable *ht, const char *arKey, uint nKeyLength) in zend_symtable_del()
357 static inline int zend_symtable_find(HashTable *ht, const char *arKey, uint nKeyLength, void **pDat… in zend_symtable_find()
364 static inline int zend_symtable_exists(HashTable *ht, const char *arKey, uint nKeyLength) in zend_symtable_exists()
370 static inline int zend_symtable_update_current_key_ex(HashTable *ht, const char *arKey, uint nKeyLe… in zend_symtable_update_current_key_ex()