ht1              2332 Zend/zend_hash.c static zend_always_inline int zend_hash_compare_impl(HashTable *ht1, HashTable *ht2, compare_func_t compar, zend_bool ordered) {
ht1              2335 Zend/zend_hash.c 	if (ht1->nNumOfElements != ht2->nNumOfElements) {
ht1              2336 Zend/zend_hash.c 		return ht1->nNumOfElements > ht2->nNumOfElements ? 1 : -1;
ht1              2339 Zend/zend_hash.c 	for (idx1 = 0, idx2 = 0; idx1 < ht1->nNumUsed; idx1++) {
ht1              2340 Zend/zend_hash.c 		Bucket *p1 = ht1->arData + idx1, *p2;
ht1              2410 Zend/zend_hash.c ZEND_API int zend_hash_compare(HashTable *ht1, HashTable *ht2, compare_func_t compar, zend_bool ordered)
ht1              2413 Zend/zend_hash.c 	IS_CONSISTENT(ht1);
ht1              2416 Zend/zend_hash.c 	HASH_PROTECT_RECURSION(ht1);
ht1              2418 Zend/zend_hash.c 	result = zend_hash_compare_impl(ht1, ht2, compar, ordered);
ht1              2419 Zend/zend_hash.c 	HASH_UNPROTECT_RECURSION(ht1);
ht1               201 Zend/zend_hash.h ZEND_API int   zend_hash_compare(HashTable *ht1, HashTable *ht2, compare_func_t compar, zend_bool ordered);
ht1              2705 Zend/zend_operators.c ZEND_API int ZEND_FASTCALL zend_compare_symbol_tables(HashTable *ht1, HashTable *ht2) /* {{{ */
ht1              2707 Zend/zend_operators.c 	return ht1 == ht2 ? 0 : zend_hash_compare(ht1, ht2, (compare_func_t) hash_zval_compare_function, 0);
ht1               358 Zend/zend_operators.h ZEND_API int ZEND_FASTCALL zend_compare_symbol_tables(HashTable *ht1, HashTable *ht2);
ht1               290 Zend/zend_ts_hash.c ZEND_API int zend_ts_hash_compare(TsHashTable *ht1, TsHashTable *ht2, compare_func_t compar, zend_bool ordered)
ht1               294 Zend/zend_ts_hash.c 	begin_read(ht1);
ht1               296 Zend/zend_ts_hash.c 	retval = zend_hash_compare(TS_HASH(ht1), TS_HASH(ht2), compar, ordered);
ht1               298 Zend/zend_ts_hash.c 	end_read(ht1);
ht1                92 Zend/zend_ts_hash.h ZEND_API int zend_ts_hash_compare(TsHashTable *ht1, TsHashTable *ht2, compare_func_t compar, zend_bool ordered);
ht1               912 ext/spl/spl_array.c 	HashTable			*ht1,
ht1               920 ext/spl/spl_array.c 	ht1		= spl_array_get_hash_table(intern1);
ht1               923 ext/spl/spl_array.c 	result = zend_compare_symbol_tables(ht1, ht2);
ht1               926 ext/spl/spl_array.c 			!(ht1 == intern1->std.properties && ht2 == intern2->std.properties)) {
ht1                73 sapi/phpdbg/phpdbg_wait.c static void phpdbg_array_intersect_init(phpdbg_intersect_ptr *info, HashTable *ht1, HashTable *ht2) {
ht1                74 sapi/phpdbg/phpdbg_wait.c 	info->ht[0] = ht1;