sort_type         568 ext/standard/array.c static compare_func_t php_get_key_compare_func(zend_long sort_type, int reverse) /* {{{ */
sort_type         570 ext/standard/array.c 	switch (sort_type & ~PHP_SORT_FLAG_CASE) {
sort_type         580 ext/standard/array.c 			if (sort_type & PHP_SORT_FLAG_CASE) {
sort_type         596 ext/standard/array.c 			if (sort_type & PHP_SORT_FLAG_CASE) {
sort_type         634 ext/standard/array.c static compare_func_t php_get_data_compare_func(zend_long sort_type, int reverse) /* {{{ */
sort_type         636 ext/standard/array.c 	switch (sort_type & ~PHP_SORT_FLAG_CASE) {
sort_type         646 ext/standard/array.c 			if (sort_type & PHP_SORT_FLAG_CASE) {
sort_type         662 ext/standard/array.c 			if (sort_type & PHP_SORT_FLAG_CASE) {
sort_type         705 ext/standard/array.c 	zend_long sort_type = PHP_SORT_REGULAR;
sort_type         709 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "a/|l", &array, &sort_type) == FAILURE) {
sort_type         716 ext/standard/array.c 		Z_PARAM_LONG(sort_type)
sort_type         720 ext/standard/array.c 	cmp = php_get_key_compare_func(sort_type, 1);
sort_type         734 ext/standard/array.c 	zend_long sort_type = PHP_SORT_REGULAR;
sort_type         738 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "a/|l", &array, &sort_type) == FAILURE) {
sort_type         745 ext/standard/array.c 		Z_PARAM_LONG(sort_type)
sort_type         749 ext/standard/array.c 	cmp = php_get_key_compare_func(sort_type, 0);
sort_type         896 ext/standard/array.c 	zend_long sort_type = PHP_SORT_REGULAR;
sort_type         899 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "a/|l", &array, &sort_type) == FAILURE) {
sort_type         903 ext/standard/array.c 	cmp = php_get_data_compare_func(sort_type, 0);
sort_type         917 ext/standard/array.c 	zend_long sort_type = PHP_SORT_REGULAR;
sort_type         920 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "a/|l", &array, &sort_type) == FAILURE) {
sort_type         924 ext/standard/array.c 	cmp = php_get_data_compare_func(sort_type, 1);
sort_type         938 ext/standard/array.c 	zend_long sort_type = PHP_SORT_REGULAR;
sort_type         941 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "a/|l", &array, &sort_type) == FAILURE) {
sort_type         945 ext/standard/array.c 	cmp = php_get_data_compare_func(sort_type, 0);
sort_type         959 ext/standard/array.c 	zend_long sort_type = PHP_SORT_REGULAR;
sort_type         962 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "a/|l", &array, &sort_type) == FAILURE) {
sort_type         966 ext/standard/array.c 	cmp = php_get_data_compare_func(sort_type, 1);
sort_type        3757 ext/standard/array.c 	zend_long sort_type = PHP_SORT_STRING;
sort_type        3760 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "a|l", &array, &sort_type) == FAILURE) {
sort_type        3764 ext/standard/array.c 	cmp = php_get_data_compare_func(sort_type, 0);
sort_type        4814 ext/standard/array.c 	int				sort_type  = PHP_SORT_REGULAR;
sort_type        4842 ext/standard/array.c 				ARRAYG(multisort_func)[num_arrays - 1] = php_get_data_compare_func(sort_type, sort_order != PHP_SORT_ASC);
sort_type        4844 ext/standard/array.c 				sort_type = PHP_SORT_REGULAR;
sort_type        4877 ext/standard/array.c 						sort_type = (int)Z_LVAL_P(arg);
sort_type        4897 ext/standard/array.c 	ARRAYG(multisort_func)[num_arrays - 1] = php_get_data_compare_func(sort_type, sort_order != PHP_SORT_ASC);