Home
last modified time | relevance | path

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

/php-src/Zend/
H A Dzend_hash.c3076 if (ht1->nNumOfElements != ht2->nNumOfElements) { in zend_hash_compare_impl()
3077 return ht1->nNumOfElements > ht2->nNumOfElements ? 1 : -1; in zend_hash_compare_impl()
3080 for (idx1 = 0, idx2 = 0; idx1 < ht1->nNumUsed; idx1++) { in zend_hash_compare_impl()
3081 if (HT_IS_PACKED(ht1)) { in zend_hash_compare_impl()
3082 pData1 = ht1->arPacked + idx1; in zend_hash_compare_impl()
3086 Bucket *p = ht1->arData + idx1; in zend_hash_compare_impl()
3174 IS_CONSISTENT(ht1); in zend_hash_compare()
3177 if (ht1 == ht2) { in zend_hash_compare()
3185 if (UNEXPECTED(GC_IS_RECURSIVE(ht1))) { in zend_hash_compare()
3190 GC_TRY_PROTECT_RECURSION(ht1); in zend_hash_compare()
[all …]
H A Dzend_operators.h496 ZEND_API int ZEND_FASTCALL zend_compare_symbol_tables(HashTable *ht1, HashTable *ht2);
H A Dzend_operators.c3395 ZEND_API int ZEND_FASTCALL zend_compare_symbol_tables(HashTable *ht1, HashTable *ht2) /* {{{ */ argument
3397 …return ht1 == ht2 ? 0 : zend_hash_compare(ht1, ht2, (compare_func_t) hash_zval_compare_function, 0…
H A Dzend_hash.h300 ZEND_API int zend_hash_compare(HashTable *ht1, HashTable *ht2, compare_func_t compar, bool ordere…
/php-src/ext/spl/
H A Dspl_array.c878 HashTable *ht1, in spl_array_compare_objects() local
888 ht1 = spl_array_get_hash_table(intern1); in spl_array_compare_objects()
891 result = zend_compare_symbol_tables(ht1, ht2); in spl_array_compare_objects()
894 !(ht1 == intern1->std.properties && ht2 == intern2->std.properties)) { in spl_array_compare_objects()
/php-src/Zend/Optimizer/
H A Dsccp.c1951 static void join_hash_tables(HashTable *ret, HashTable *ht1, HashTable *ht2) in join_hash_tables() argument
1957 ZEND_HASH_FOREACH_KEY_VAL(ht1, index, key, val1) { in join_hash_tables()

Completed in 79 milliseconds