Lines Matching refs:other
195 static inline bool key_is_identical(zval *key, zval *other) in key_is_identical() argument
198 return Z_TYPE_P(other) == IS_OBJECT && user_hashable_equals(key, other); in key_is_identical()
201 return zend_is_identical(key, other); in key_is_identical()
1062 ds_htable_t *ds_htable_xor(ds_htable_t *table, ds_htable_t *other) in ds_htable_xor() argument
1068 if ( ! ds_htable_has_key(other, &bucket->key)) { in ds_htable_xor()
1074 DS_HTABLE_FOREACH_BUCKET(other, bucket) { in ds_htable_xor()
1084 ds_htable_t *ds_htable_diff(ds_htable_t *table, ds_htable_t *other) in ds_htable_diff() argument
1090 if ( ! ds_htable_has_key(other, &bucket->key)) { in ds_htable_diff()
1099 ds_htable_t *ds_htable_intersect(ds_htable_t *table, ds_htable_t *other) in ds_htable_intersect() argument
1106 if (ds_htable_has_key(other, &bucket->key)) { in ds_htable_intersect()
1115 ds_htable_t *ds_htable_merge(ds_htable_t *table, ds_htable_t *other) in ds_htable_merge() argument
1120 DS_HTABLE_FOREACH_BUCKET(other, bucket) { in ds_htable_merge()