Lines Matching refs:sort_type

380 static bucket_compare_func_t php_get_key_compare_func(zend_long sort_type, int reverse) /* {{{ */  in php_get_key_compare_func()  argument
382 switch (sort_type & ~PHP_SORT_FLAG_CASE) { in php_get_key_compare_func()
392 if (sort_type & PHP_SORT_FLAG_CASE) { in php_get_key_compare_func()
408 if (sort_type & PHP_SORT_FLAG_CASE) { in php_get_key_compare_func()
444 static bucket_compare_func_t php_get_data_compare_func(zend_long sort_type, int reverse) /* {{{ */ in php_get_data_compare_func() argument
446 switch (sort_type & ~PHP_SORT_FLAG_CASE) { in php_get_data_compare_func()
456 if (sort_type & PHP_SORT_FLAG_CASE) { in php_get_data_compare_func()
472 if (sort_type & PHP_SORT_FLAG_CASE) { in php_get_data_compare_func()
508 static bucket_compare_func_t php_get_data_compare_func_unstable(zend_long sort_type, int reverse) /… in php_get_data_compare_func_unstable() argument
510 switch (sort_type & ~PHP_SORT_FLAG_CASE) { in php_get_data_compare_func_unstable()
520 if (sort_type & PHP_SORT_FLAG_CASE) { in php_get_data_compare_func_unstable()
536 if (sort_type & PHP_SORT_FLAG_CASE) { in php_get_data_compare_func_unstable()
576 zend_long sort_type = PHP_SORT_REGULAR; in PHP_FUNCTION() local
582 Z_PARAM_LONG(sort_type) in PHP_FUNCTION()
585 cmp = php_get_key_compare_func(sort_type, 1); in PHP_FUNCTION()
597 zend_long sort_type = PHP_SORT_REGULAR; in PHP_FUNCTION() local
603 Z_PARAM_LONG(sort_type) in PHP_FUNCTION()
606 cmp = php_get_key_compare_func(sort_type, 0); in PHP_FUNCTION()
735 zend_long sort_type = PHP_SORT_REGULAR; in PHP_FUNCTION() local
741 Z_PARAM_LONG(sort_type) in PHP_FUNCTION()
744 cmp = php_get_data_compare_func(sort_type, 0); in PHP_FUNCTION()
756 zend_long sort_type = PHP_SORT_REGULAR; in PHP_FUNCTION() local
762 Z_PARAM_LONG(sort_type) in PHP_FUNCTION()
765 cmp = php_get_data_compare_func(sort_type, 1); in PHP_FUNCTION()
777 zend_long sort_type = PHP_SORT_REGULAR; in PHP_FUNCTION() local
783 Z_PARAM_LONG(sort_type) in PHP_FUNCTION()
786 cmp = php_get_data_compare_func(sort_type, 0); in PHP_FUNCTION()
798 zend_long sort_type = PHP_SORT_REGULAR; in PHP_FUNCTION() local
804 Z_PARAM_LONG(sort_type) in PHP_FUNCTION()
807 cmp = php_get_data_compare_func(sort_type, 1); in PHP_FUNCTION()
4918 zend_long sort_type = PHP_SORT_STRING; local
4926 Z_PARAM_LONG(sort_type)
4934 if (sort_type == PHP_SORT_STRING) {
4973 cmp = php_get_data_compare_func_unstable(sort_type, 0);
6016 int sort_type = PHP_SORT_REGULAR; local
6045 …ARRAYG(multisort_func)[num_arrays - 1] = php_get_data_compare_func_unstable(sort_type, sort_order …
6047 sort_type = PHP_SORT_REGULAR;
6078 sort_type = (int)Z_LVAL_P(arg);
6098 …ARRAYG(multisort_func)[num_arrays - 1] = php_get_data_compare_func_unstable(sort_type, sort_order …