Home
last modified time | relevance | path

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

/PHP-8.3/Zend/
H A Dzend_hash.c3074 if (ht1->nNumOfElements != ht2->nNumOfElements) { in zend_hash_compare_impl()
3075 return ht1->nNumOfElements > ht2->nNumOfElements ? 1 : -1; in zend_hash_compare_impl()
3078 for (idx1 = 0, idx2 = 0; idx1 < ht1->nNumUsed; idx1++) { in zend_hash_compare_impl()
3079 if (HT_IS_PACKED(ht1)) { in zend_hash_compare_impl()
3080 pData1 = ht1->arPacked + idx1; in zend_hash_compare_impl()
3084 Bucket *p = ht1->arData + idx1; in zend_hash_compare_impl()
3172 IS_CONSISTENT(ht1); in zend_hash_compare()
3175 if (ht1 == ht2) { in zend_hash_compare()
3183 if (UNEXPECTED(GC_IS_RECURSIVE(ht1))) { in zend_hash_compare()
3187 GC_TRY_PROTECT_RECURSION(ht1); in zend_hash_compare()
[all …]
H A Dzend_operators.h474 ZEND_API int ZEND_FASTCALL zend_compare_symbol_tables(HashTable *ht1, HashTable *ht2);
H A Dzend_operators.c3380 ZEND_API int ZEND_FASTCALL zend_compare_symbol_tables(HashTable *ht1, HashTable *ht2) /* {{{ */ argument
3382 …return ht1 == ht2 ? 0 : zend_hash_compare(ht1, ht2, (compare_func_t) hash_zval_compare_function, 0…
H A Dzend_hash.h297 ZEND_API int zend_hash_compare(HashTable *ht1, HashTable *ht2, compare_func_t compar, bool ordere…
/PHP-8.3/ext/spl/
H A Dspl_array.c886 HashTable *ht1, in spl_array_compare_objects() local
896 ht1 = spl_array_get_hash_table(intern1); in spl_array_compare_objects()
899 result = zend_compare_symbol_tables(ht1, ht2); in spl_array_compare_objects()
902 !(ht1 == intern1->std.properties && ht2 == intern2->std.properties)) { in spl_array_compare_objects()
/PHP-8.3/Zend/Optimizer/
H A Dsccp.c1901 static void join_hash_tables(HashTable *ret, HashTable *ht1, HashTable *ht2) in join_hash_tables() argument
1907 ZEND_HASH_FOREACH_KEY_VAL(ht1, index, key, val1) { in join_hash_tables()

Completed in 44 milliseconds