Home
last modified time | relevance | path

Searched refs:ht1 (Results 1 – 6 of 6) sorted by relevance

/PHP-8.1/Zend/
H A Dzend_hash.c2625 if (ht1->nNumOfElements != ht2->nNumOfElements) { in zend_hash_compare_impl()
2626 return ht1->nNumOfElements > ht2->nNumOfElements ? 1 : -1; in zend_hash_compare_impl()
2629 for (idx1 = 0, idx2 = 0; idx1 < ht1->nNumUsed; idx1++) { in zend_hash_compare_impl()
2630 Bucket *p1 = ht1->arData + idx1, *p2; in zend_hash_compare_impl()
2700 ZEND_API int zend_hash_compare(HashTable *ht1, HashTable *ht2, compare_func_t compar, bool ordered) in zend_hash_compare() argument
2703 IS_CONSISTENT(ht1); in zend_hash_compare()
2706 if (ht1 == ht2) { in zend_hash_compare()
2714 if (UNEXPECTED(GC_IS_RECURSIVE(ht1))) { in zend_hash_compare()
2718 GC_TRY_PROTECT_RECURSION(ht1); in zend_hash_compare()
2719 result = zend_hash_compare_impl(ht1, ht2, compar, ordered); in zend_hash_compare()
[all …]
H A Dzend_operators.h446 ZEND_API int ZEND_FASTCALL zend_compare_symbol_tables(HashTable *ht1, HashTable *ht2);
H A Dzend_operators.c3047 ZEND_API int ZEND_FASTCALL zend_compare_symbol_tables(HashTable *ht1, HashTable *ht2) /* {{{ */ argument
3049 …return ht1 == ht2 ? 0 : zend_hash_compare(ht1, ht2, (compare_func_t) hash_zval_compare_function, 0…
H A Dzend_hash.h285 ZEND_API int zend_hash_compare(HashTable *ht1, HashTable *ht2, compare_func_t compar, bool ordere…
/PHP-8.1/ext/spl/
H A Dspl_array.c923 HashTable *ht1, in spl_array_compare_objects() local
933 ht1 = spl_array_get_hash_table(intern1); in spl_array_compare_objects()
936 result = zend_compare_symbol_tables(ht1, ht2); in spl_array_compare_objects()
939 !(ht1 == intern1->std.properties && ht2 == intern2->std.properties)) { in spl_array_compare_objects()
/PHP-8.1/Zend/Optimizer/
H A Dsccp.c1989 static void join_hash_tables(HashTable *ret, HashTable *ht1, HashTable *ht2) in join_hash_tables() argument
1995 ZEND_HASH_FOREACH_KEY_VAL(ht1, index, key, val1) { in join_hash_tables()

Completed in 61 milliseconds