Lines Matching refs:b
179 static inline bool user_hashable_equals(zval *a, zval *b) in user_hashable_equals() argument
181 if (Z_OBJCE_P(a) != Z_OBJCE_P(b)) { in user_hashable_equals()
187 zend_call_method_with_1_params(Z_OBJ_P(a), Z_OBJCE_P(a), NULL, "equals", &equals, b); in user_hashable_equals()
189 zend_call_method_with_1_params(a, Z_OBJCE_P(a), NULL, "equals", &equals, b); in user_hashable_equals()
527 static int user_compare_by_value(const void *a, const void *b) in user_compare_by_value() argument
533 ds_htable_bucket_t *y = ((ds_htable_bucket_t*)b); in user_compare_by_value()
549 static int user_compare_by_key(const void *a, const void *b) in user_compare_by_key() argument
555 ZVAL_COPY_VALUE(¶ms[1], (zval*) b); in user_compare_by_key()
568 static int compare_by_key(const void *a, const void *b) in compare_by_key() argument
572 if (compare_function(&retval, (zval*) a, (zval*) b) == SUCCESS) { in compare_by_key()
579 static int compare_by_value(const void *a, const void *b) in compare_by_value() argument
583 ds_htable_bucket_t *y = (ds_htable_bucket_t*) b; in compare_by_value()
1133 ds_htable_bucket_t *b = table->buckets + table->size - 1; in ds_htable_reverse() local
1135 for (; a < b; ++a, --b) { in ds_htable_reverse()
1137 *a = *b; in ds_htable_reverse()
1138 *b = c; in ds_htable_reverse()