Lines Matching refs:i

1357 	unsigned long i;  in PHP_METHOD()  local
1381 for (i = 0; i < properties_count; i++) { in PHP_METHOD()
1382 property = MagickGetImageProperty(intern->magick_wand, properties[i]); in PHP_METHOD()
1383 IM_add_assoc_string(return_value, properties[i], property); in PHP_METHOD()
1389 for (i = 0; i < properties_count; i++) { in PHP_METHOD()
1390 IM_add_next_index_string(return_value, properties[i]); in PHP_METHOD()
1407 unsigned long i; in PHP_METHOD() local
1431 for (i = 0; i < profiles_count; i++) { in PHP_METHOD()
1433 profile = (char *)MagickGetImageProfile(intern->magick_wand, profiles[i], &length); in PHP_METHOD()
1435 add_assoc_stringl(return_value, profiles[i], profile, length); in PHP_METHOD()
1437 add_assoc_stringl(return_value, profiles[i], profile, length, 1); in PHP_METHOD()
1444 for (i = 0; i < profiles_count; i++) { in PHP_METHOD()
1445 IM_add_next_index_string(return_value, profiles[i]); in PHP_METHOD()
2641 int map_size, i = 0; in PHP_METHOD() local
2692 for (i = 0; i < map_size; i++) { in PHP_METHOD()
2693 add_next_index_double(return_value, float_array[i]); in PHP_METHOD()
2706 for (i = 0; i < map_size; i++) { in PHP_METHOD()
2707 add_next_index_double(return_value, double_array[i]); in PHP_METHOD()
2720 for (i = 0; i < map_size; i++) { in PHP_METHOD()
2721 add_next_index_long(return_value, short_array[i]); in PHP_METHOD()
2735 for (i = 0; i < map_size; i++) { in PHP_METHOD()
2741 add_next_index_long(return_value, longlong_array[i]); in PHP_METHOD()
2758 for (i = 0; i < map_size; i++) { in PHP_METHOD()
2759 add_next_index_long(return_value, long_array[i]); in PHP_METHOD()
2772 for (i = 0; i < map_size; i++) { in PHP_METHOD()
2773 add_next_index_long(return_value, (int)char_array[i]); in PHP_METHOD()
2786 for (i = 0; i < map_size; i++) { in PHP_METHOD()
2788 add_next_index_double(return_value, quantum_array[i]); in PHP_METHOD()
2790 add_next_index_long(return_value, quantum_array[i]); in PHP_METHOD()
3396 unsigned long i; in PHP_METHOD() local
3408 for (i = 0 ; i < num_formats ; i++) { in PHP_METHOD()
3409 IM_add_next_index_string(return_value, supported_formats[i]); in PHP_METHOD()
3410 IMAGICK_FREE_MAGICK_MEMORY(supported_formats[i]); in PHP_METHOD()
3424 unsigned long i; in PHP_METHOD() local
3436 for (i = 0 ; i < num_fonts ; i++) { in PHP_METHOD()
3437 IM_add_next_index_string(return_value, fonts[i]); in PHP_METHOD()
3438 IMAGICK_FREE_MAGICK_MEMORY(fonts[i]); in PHP_METHOD()
6820 unsigned int i; local
6842 for (i=0; i < sizeof(channels)/sizeof(channels[0]); i++) {
6845 add_assoc_double(&tmp, "mean", statistics[i].mean);
6846 add_assoc_double(&tmp, "minima", statistics[i].minima);
6847 add_assoc_double(&tmp, "maxima", statistics[i].maxima);
6848 add_assoc_double(&tmp, "standardDeviation", statistics[i].standard_deviation);
6850 add_assoc_long(&tmp, "scale", statistics[i].scale);
6852 add_assoc_long(&tmp, "depth", statistics[i].depth);
6853 add_index_zval(return_value, i, &tmp);
6857 add_assoc_double(tmp, "mean", statistics[i].mean);
6858 add_assoc_double(tmp, "minima", statistics[i].minima);
6859 add_assoc_double(tmp, "maxima", statistics[i].maxima);
6860 add_assoc_double(tmp, "standardDeviation", statistics[i].standard_deviation);
6862 add_assoc_long(&tmp, "scale", statistics[i].scale);
6864 add_assoc_long(tmp, "depth", statistics[i].depth);
6865 add_index_zval(return_value, channels[i], tmp);
6869 for (i = 0; i < elements ; i++) {
6872 add_assoc_double(&tmp, "mean", statistics[channels[i]].mean);
6873 add_assoc_double(&tmp, "minima", statistics[channels[i]].minima);
6874 add_assoc_double(&tmp, "maxima", statistics[channels[i]].maxima);
6875 add_assoc_double(&tmp, "standardDeviation", statistics[channels[i]].standard_deviation);
6877 add_assoc_long(&tmp, "scale", statistics[channels[i]].scale);
6879 add_assoc_long(&tmp, "depth", statistics[channels[i]].depth);
6880 add_index_zval(return_value, channels[i], &tmp);
6884 add_assoc_double(tmp, "mean", statistics[channels[i]].mean);
6885 add_assoc_double(tmp, "minima", statistics[channels[i]].minima);
6886 add_assoc_double(tmp, "maxima", statistics[channels[i]].maxima);
6887 add_assoc_double(tmp, "standardDeviation", statistics[channels[i]].standard_deviation);
6889 add_assoc_long(&tmp, "scale", statistics[channels[i]].scale);
6891 add_assoc_long(tmp, "depth", statistics[channels[i]].depth);
6892 add_index_zval(return_value, channels[i], tmp);
7220 unsigned long i; local
7239 for (i = 0; i < colors; i++) {
7240 if (wand_array[i]) {
7244 php_imagick_replace_pixelwand(internp, wand_array[i]);
7250 php_imagick_replace_pixelwand(internp, wand_array[i]);
8570 unsigned int i, found; local
8616 for (i = 0; i < num_keys; i++) {
8618 if (strncmp (trim->val, str_keys [i], strlen (str_keys [i])) == 0) {
8620 IM_add_assoc_string (array, arr_keys [i], trim->val + strlen (str_keys [i]));
8630 for (i = 0; i < num_keys; i++) {
8631 if (strncmp (trim, str_keys [i], strlen (str_keys [i])) == 0) {
8633 IM_add_assoc_string (array, arr_keys [i], trim + strlen (str_keys [i]));
11429 unsigned int i; local
11439 for (i=0; i<number_options; i++) {
11440 option_value = MagickQueryConfigureOption(result[i]);
11441 IM_add_assoc_string(return_value, result[i], option_value);
11763 unsigned long i; local
11776 for (i = 0 ; i < number_factors; i++) {
11777 add_next_index_double(return_value, sampling_factors[i]);
12335 unsigned int i; local
12337 for (i=0 ; i<order*order ; i++) {
12338 kernel_info->values[i] = color_matrix[i];