Home
last modified time | relevance | path

Searched refs:ht2 (Results 1 – 7 of 7) 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()
3092 if (HT_IS_PACKED(ht2)) { in zend_hash_compare_impl()
3094 ZEND_ASSERT(idx2 != ht2->nNumUsed); in zend_hash_compare_impl()
3095 pData2 = ht2->arPacked + idx2; in zend_hash_compare_impl()
3104 ZEND_ASSERT(idx2 != ht2->nNumUsed); in zend_hash_compare_impl()
3105 p = ht2->arData + idx2; in zend_hash_compare_impl()
3133 pData2 = zend_hash_index_find(ht2, h1); in zend_hash_compare_impl()
3138 pData2 = zend_hash_find(ht2, key1); in zend_hash_compare_impl()
3173 IS_CONSISTENT(ht2); 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.c887 *ht2; in spl_array_compare_objects() local
897 ht2 = spl_array_get_hash_table(intern2); 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
1909 val2 = zend_hash_find(ht2, key); in join_hash_tables()
1911 val2 = zend_hash_index_find(ht2, index); in join_hash_tables()
/PHP-8.3/ext/soap/
H A Dsoap.c680 HashTable *ht2; in soap_create_typemap() local
695 ht2 = Z_ARRVAL_P(tmp); in soap_create_typemap()
697 if (!HT_IS_PACKED(ht2)) { in soap_create_typemap()
698 ZEND_HASH_MAP_FOREACH_STR_KEY_VAL(ht2, name, tmp) { in soap_create_typemap()

Completed in 58 milliseconds