ht2              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) {
ht2              2335 Zend/zend_hash.c 	if (ht1->nNumOfElements != ht2->nNumOfElements) {
ht2              2336 Zend/zend_hash.c 		return ht1->nNumOfElements > ht2->nNumOfElements ? 1 : -1;
ht2              2347 Zend/zend_hash.c 				ZEND_ASSERT(idx2 != ht2->nNumUsed);
ht2              2348 Zend/zend_hash.c 				p2 = ht2->arData + idx2;
ht2              2373 Zend/zend_hash.c 				pData2 = zend_hash_index_find(ht2, p1->h);
ht2              2378 Zend/zend_hash.c 				pData2 = zend_hash_find(ht2, p1->key);
ht2              2410 Zend/zend_hash.c ZEND_API int zend_hash_compare(HashTable *ht1, HashTable *ht2, compare_func_t compar, zend_bool ordered)
ht2              2414 Zend/zend_hash.c 	IS_CONSISTENT(ht2);
ht2              2417 Zend/zend_hash.c 	HASH_PROTECT_RECURSION(ht2);
ht2              2418 Zend/zend_hash.c 	result = zend_hash_compare_impl(ht1, ht2, compar, ordered);
ht2              2420 Zend/zend_hash.c 	HASH_UNPROTECT_RECURSION(ht2);
ht2               201 Zend/zend_hash.h ZEND_API int   zend_hash_compare(HashTable *ht1, HashTable *ht2, compare_func_t compar, zend_bool ordered);
ht2              2705 Zend/zend_operators.c ZEND_API int ZEND_FASTCALL zend_compare_symbol_tables(HashTable *ht1, HashTable *ht2) /* {{{ */
ht2              2707 Zend/zend_operators.c 	return ht1 == ht2 ? 0 : zend_hash_compare(ht1, ht2, (compare_func_t) hash_zval_compare_function, 0);
ht2               358 Zend/zend_operators.h ZEND_API int ZEND_FASTCALL zend_compare_symbol_tables(HashTable *ht1, HashTable *ht2);
ht2               290 Zend/zend_ts_hash.c ZEND_API int zend_ts_hash_compare(TsHashTable *ht1, TsHashTable *ht2, compare_func_t compar, zend_bool ordered)
ht2               295 Zend/zend_ts_hash.c 	begin_read(ht2);
ht2               296 Zend/zend_ts_hash.c 	retval = zend_hash_compare(TS_HASH(ht1), TS_HASH(ht2), compar, ordered);
ht2               297 Zend/zend_ts_hash.c 	end_read(ht2);
ht2                92 Zend/zend_ts_hash.h ZEND_API int zend_ts_hash_compare(TsHashTable *ht1, TsHashTable *ht2, compare_func_t compar, zend_bool ordered);
ht2              1031 ext/soap/soap.c 	HashTable *ht2;
ht2              1046 ext/soap/soap.c 		ht2 = Z_ARRVAL_P(tmp);
ht2              1048 ext/soap/soap.c 		ZEND_HASH_FOREACH_STR_KEY_VAL(ht2, name, tmp) {
ht2               913 ext/spl/spl_array.c 						*ht2;
ht2               921 ext/spl/spl_array.c 	ht2		= spl_array_get_hash_table(intern2);
ht2               923 ext/spl/spl_array.c 	result = zend_compare_symbol_tables(ht1, ht2);
ht2               926 ext/spl/spl_array.c 			!(ht1 == intern1->std.properties && ht2 == intern2->std.properties)) {
ht2                73 sapi/phpdbg/phpdbg_wait.c static void phpdbg_array_intersect_init(phpdbg_intersect_ptr *info, HashTable *ht1, HashTable *ht2) {
ht2                75 sapi/phpdbg/phpdbg_wait.c 	info->ht[1] = ht2;