Lines Matching refs:cmp
632 bucket_compare_func_t cmp; in PHP_FUNCTION() local
640 cmp = php_get_key_compare_func(sort_type, 1); in PHP_FUNCTION()
642 zend_hash_sort(Z_ARRVAL_P(array), cmp, 0); in PHP_FUNCTION()
653 bucket_compare_func_t cmp; in PHP_FUNCTION() local
661 cmp = php_get_key_compare_func(sort_type, 0); in PHP_FUNCTION()
663 zend_hash_sort(Z_ARRVAL_P(array), cmp, 0); in PHP_FUNCTION()
789 bucket_compare_func_t cmp; in PHP_FUNCTION() local
797 cmp = php_get_data_compare_func(sort_type, 0); in PHP_FUNCTION()
799 zend_hash_sort(Z_ARRVAL_P(array), cmp, 0); in PHP_FUNCTION()
810 bucket_compare_func_t cmp; in PHP_FUNCTION() local
818 cmp = php_get_data_compare_func(sort_type, 1); in PHP_FUNCTION()
820 zend_hash_sort(Z_ARRVAL_P(array), cmp, 0); in PHP_FUNCTION()
831 bucket_compare_func_t cmp; in PHP_FUNCTION() local
839 cmp = php_get_data_compare_func(sort_type, 0); in PHP_FUNCTION()
841 zend_hash_sort(Z_ARRVAL_P(array), cmp, 1); in PHP_FUNCTION()
852 bucket_compare_func_t cmp; in PHP_FUNCTION() local
860 cmp = php_get_data_compare_func(sort_type, 1); in PHP_FUNCTION()
862 zend_hash_sort(Z_ARRVAL_P(array), cmp, 1); in PHP_FUNCTION()
4434 bucket_compare_func_t cmp; local
4488 cmp = php_get_data_compare_func_unstable(sort_type, 0);
4503 (compare_func_t) cmp, (swap_func_t) array_bucketindex_swap);
4507 if (cmp(&lastkept->b, &cmpdata->b)) {