Searched refs:ht2 (Results 1 – 7 of 7) sorted by relevance
/PHP-8.3/Zend/ |
H A D | zend_hash.c | 3103 if (ht1->nNumOfElements != ht2->nNumOfElements) { in zend_hash_compare_impl() 3104 return ht1->nNumOfElements > ht2->nNumOfElements ? 1 : -1; in zend_hash_compare_impl() 3121 if (HT_IS_PACKED(ht2)) { in zend_hash_compare_impl() 3123 ZEND_ASSERT(idx2 != ht2->nNumUsed); in zend_hash_compare_impl() 3124 pData2 = ht2->arPacked + idx2; in zend_hash_compare_impl() 3133 ZEND_ASSERT(idx2 != ht2->nNumUsed); in zend_hash_compare_impl() 3134 p = ht2->arData + idx2; in zend_hash_compare_impl() 3162 pData2 = zend_hash_index_find(ht2, h1); in zend_hash_compare_impl() 3167 pData2 = zend_hash_find(ht2, key1); in zend_hash_compare_impl() 3202 IS_CONSISTENT(ht2); in zend_hash_compare() [all …]
|
H A D | zend_operators.h | 487 ZEND_API int ZEND_FASTCALL zend_compare_symbol_tables(HashTable *ht1, HashTable *ht2);
|
H A D | zend_operators.c | 3380 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 D | zend_hash.h | 297 ZEND_API int zend_hash_compare(HashTable *ht1, HashTable *ht2, compare_func_t compar, bool ordere…
|
/PHP-8.3/ext/spl/ |
H A D | spl_array.c | 889 *ht2; in spl_array_compare_objects() local 899 ht2 = spl_array_get_hash_table(intern2); in spl_array_compare_objects() 901 result = zend_compare_symbol_tables(ht1, ht2); in spl_array_compare_objects() 904 !(ht1 == intern1->std.properties && ht2 == intern2->std.properties)) { in spl_array_compare_objects()
|
/PHP-8.3/Zend/Optimizer/ |
H A D | sccp.c | 1901 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 D | soap.c | 681 HashTable *ht2; in soap_create_typemap() local 696 ht2 = Z_ARRVAL_P(tmp); in soap_create_typemap() 698 if (!HT_IS_PACKED(ht2)) { in soap_create_typemap() 699 ZEND_HASH_MAP_FOREACH_STR_KEY_VAL(ht2, name, tmp) { in soap_create_typemap()
|
Completed in 46 milliseconds