Changeset 354
- Timestamp:
- 10/10/09 17:59:14 (5 months ago)
- Location:
- ImageMagick/trunk
- Files:
-
- 27 modified
-
coders/dpx.c (modified) (1 diff)
-
coders/hald.c (modified) (1 diff)
-
coders/pnm.c (modified) (5 diffs)
-
magick/colormap.c (modified) (3 diffs)
-
magick/colorspace.c (modified) (37 diffs)
-
magick/compare.c (modified) (7 diffs)
-
magick/composite.c (modified) (4 diffs)
-
magick/decorate.c (modified) (4 diffs)
-
magick/deprecate.c (modified) (1 diff)
-
magick/distort.c (modified) (2 diffs)
-
magick/draw.c (modified) (3 diffs)
-
magick/effect.c (modified) (12 diffs)
-
magick/enhance.c (modified) (28 diffs)
-
magick/fourier.c (modified) (2 diffs)
-
magick/fx.c (modified) (16 diffs)
-
magick/image.c (modified) (7 diffs)
-
magick/paint.c (modified) (4 diffs)
-
magick/prepress.c (modified) (1 diff)
-
magick/profile.c (modified) (1 diff)
-
magick/quantize.c (modified) (2 diffs)
-
magick/resize.c (modified) (1 diff)
-
magick/segment.c (modified) (1 diff)
-
magick/shear.c (modified) (7 diffs)
-
magick/statistic.c (modified) (6 diffs)
-
magick/threshold.c (modified) (8 diffs)
-
magick/transform.c (modified) (9 diffs)
-
wand/pixel-view.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ImageMagick/trunk/coders/dpx.c
r269 r354 1156 1156 image_view=AcquireCacheView(image); 1157 1157 #if defined(_OPENMP) && (_OPENMP > 200505) 1158 #pragma omp parallel for s chedule(static,1) shared(row,status,quantum_type)1158 #pragma omp parallel for shared(row,status,quantum_type) 1159 1159 #endif 1160 1160 for (y=0; y < (long) image->rows; y++) -
ImageMagick/trunk/coders/hald.c
r108 r354 127 127 image_view=AcquireCacheView(image); 128 128 #if defined(_OPENMP) && (_OPENMP > 200505) 129 #pragma omp parallel for s chedule(static,1) shared(status)129 #pragma omp parallel for shared(status) 130 130 #endif 131 131 for (y=0; y < (long) image->rows; y+=(long) level) -
ImageMagick/trunk/coders/pnm.c
r108 r354 595 595 image_view=AcquireCacheView(image); 596 596 #if defined(_OPENMP) && (_OPENMP > 200505) 597 #pragma omp parallel for s chedule(static,1) shared(row,status,quantum_type)597 #pragma omp parallel for shared(row,status,quantum_type) 598 598 #endif 599 599 for (y=0; y < (long) image->rows; y++) … … 677 677 image_view=AcquireCacheView(image); 678 678 #if defined(_OPENMP) && (_OPENMP > 200505) 679 #pragma omp parallel for s chedule(static,1) shared(row,status,quantum_type)679 #pragma omp parallel for shared(row,status,quantum_type) 680 680 #endif 681 681 for (y=0; y < (long) image->rows; y++) … … 795 795 image_view=AcquireCacheView(image); 796 796 #if defined(_OPENMP) && (_OPENMP > 200505) 797 #pragma omp parallel for s chedule(static,1) shared(row,status,type)797 #pragma omp parallel for shared(row,status,type) 798 798 #endif 799 799 for (y=0; y < (long) image->rows; y++) … … 969 969 image_view=AcquireCacheView(image); 970 970 #if defined(_OPENMP) && (_OPENMP > 200505) 971 #pragma omp parallel for s chedule(static,1) shared(row,status,quantum_type)971 #pragma omp parallel for shared(row,status,quantum_type) 972 972 #endif 973 973 for (y=0; y < (long) image->rows; y++) … … 1212 1212 image_view=AcquireCacheView(image); 1213 1213 #if defined(_OPENMP) && (_OPENMP > 200505) 1214 #pragma omp parallel for s chedule(static,1) shared(row,status,quantum_type)1214 #pragma omp parallel for shared(row,status,quantum_type) 1215 1215 #endif 1216 1216 for (y=0; y < (long) image->rows; y++) -
ImageMagick/trunk/magick/colormap.c
r137 r354 120 120 image_view=AcquireCacheView(image); 121 121 #if defined(_OPENMP) && (_OPENMP >= 200203) 122 #pragma omp parallel for s chedule(static,1) shared(status)122 #pragma omp parallel for shared(status) 123 123 #endif 124 124 for (y=0; y < (long) image->rows; y++) … … 249 249 */ 250 250 #if defined(_OPENMP) && (_OPENMP >= 200203) 251 #pragma omp parallel for s chedule(static,1) shared(status)251 #pragma omp parallel for shared(status) 252 252 #endif 253 253 for (i=0; i < (long) image->colors; i++) … … 262 262 */ 263 263 #if defined(_OPENMP) && (_OPENMP >= 200203) 264 #pragma omp parallel for s chedule(static,1) shared(status)264 #pragma omp parallel for shared(status) 265 265 #endif 266 266 for (i=0; i < (long) image->colors; i++) -
ImageMagick/trunk/magick/colorspace.c
r324 r354 225 225 image_view=AcquireCacheView(image); 226 226 #if defined(_OPENMP) && (_OPENMP >= 200203) 227 #pragma omp parallel for s chedule(static,1) shared(status)227 #pragma omp parallel for shared(status) 228 228 #endif 229 229 for (y=0; y < (long) image->rows; y++) … … 278 278 image_view=AcquireCacheView(image); 279 279 #if defined(_OPENMP) && (_OPENMP >= 200203) 280 #pragma omp parallel for s chedule(static,1) shared(status)280 #pragma omp parallel for shared(status) 281 281 #endif 282 282 for (y=0; y < (long) image->rows; y++) … … 335 335 image_view=AcquireCacheView(image); 336 336 #if defined(_OPENMP) && (_OPENMP >= 200203) 337 #pragma omp parallel for s chedule(static,1) shared(status)337 #pragma omp parallel for shared(status) 338 338 #endif 339 339 for (y=0; y < (long) image->rows; y++) … … 391 391 image_view=AcquireCacheView(image); 392 392 #if defined(_OPENMP) && (_OPENMP >= 200203) 393 #pragma omp parallel for s chedule(static,1) shared(status)393 #pragma omp parallel for shared(status) 394 394 #endif 395 395 for (y=0; y < (long) image->rows; y++) … … 447 447 image_view=AcquireCacheView(image); 448 448 #if defined(_OPENMP) && (_OPENMP >= 200203) 449 #pragma omp parallel for s chedule(static,1) shared(status)449 #pragma omp parallel for shared(status) 450 450 #endif 451 451 for (y=0; y < (long) image->rows; y++) … … 503 503 image_view=AcquireCacheView(image); 504 504 #if defined(_OPENMP) && (_OPENMP >= 200203) 505 #pragma omp parallel for s chedule(static,1) shared(status)505 #pragma omp parallel for shared(status) 506 506 #endif 507 507 for (y=0; y < (long) image->rows; y++) … … 595 595 0.002/0.6); 596 596 #if defined(_OPENMP) && (_OPENMP >= 200203) 597 #pragma omp parallel for schedule(static,1)597 #pragma omp parallel for 598 598 #endif 599 599 for (i=0; i <= (long) MaxMap; i++) … … 603 603 image_view=AcquireCacheView(image); 604 604 #if defined(_OPENMP) && (_OPENMP >= 200203) 605 #pragma omp parallel for s chedule(static,1) shared(status)605 #pragma omp parallel for shared(status) 606 606 #endif 607 607 for (y=0; y < (long) image->rows; y++) … … 672 672 primary_info.z=(double) (MaxMap+1.0)/2.0; 673 673 #if defined(_OPENMP) && (_OPENMP >= 200203) 674 #pragma omp parallel for schedule(static,1)674 #pragma omp parallel for 675 675 #endif 676 676 for (i=0; i <= (long) MaxMap; i++) … … 697 697 */ 698 698 #if defined(_OPENMP) && (_OPENMP >= 200203) 699 #pragma omp parallel for schedule(static,1)699 #pragma omp parallel for 700 700 #endif 701 701 for (i=0; i <= (long) MaxMap; i++) … … 730 730 primary_info.z=(double) (MaxMap+1.0)/2.0; 731 731 #if defined(_OPENMP) && (_OPENMP >= 200203) 732 #pragma omp parallel for schedule(static,1)732 #pragma omp parallel for 733 733 #endif 734 734 for (i=0; i <= (long) MaxMap; i++) … … 754 754 */ 755 755 #if defined(_OPENMP) && (_OPENMP >= 200203) 756 #pragma omp parallel for schedule(static,1)756 #pragma omp parallel for 757 757 #endif 758 758 for (i=0; i <= (long) MaxMap; i++) … … 785 785 primary_info.z=(double) (MaxMap+1.0)/2.0; 786 786 #if defined(_OPENMP) && (_OPENMP >= 200203) 787 #pragma omp parallel for schedule(static,1)787 #pragma omp parallel for 788 788 #endif 789 789 for (i=0; i <= (long) MaxMap; i++) … … 811 811 */ 812 812 #if defined(_OPENMP) && (_OPENMP >= 200203) 813 #pragma omp parallel for schedule(static,1)813 #pragma omp parallel for 814 814 #endif 815 815 for (i=0; i <= (long) MaxMap; i++) … … 845 845 */ 846 846 #if defined(_OPENMP) && (_OPENMP >= 200203) 847 #pragma omp parallel for schedule(static,1)847 #pragma omp parallel for 848 848 #endif 849 849 for (i=0; i <= (long) MaxMap; i++) … … 915 915 primary_info.z=(double) (MaxMap+1.0)/2.0; 916 916 #if defined(_OPENMP) && (_OPENMP >= 200203) 917 #pragma omp parallel for schedule(static,1)917 #pragma omp parallel for 918 918 #endif 919 919 for (i=0; i <= (long) MaxMap; i++) … … 946 946 primary_info.z=(double) (MaxMap+1.0)/2.0; 947 947 #if defined(_OPENMP) && (_OPENMP >= 200203) 948 #pragma omp parallel for schedule(static,1)948 #pragma omp parallel for 949 949 #endif 950 950 for (i=0; i <= (long) MaxMap; i++) … … 978 978 primary_info.z=(double) (MaxMap+1.0)/2.0; 979 979 #if defined(_OPENMP) && (_OPENMP >= 200203) 980 #pragma omp parallel for schedule(static,1)980 #pragma omp parallel for 981 981 #endif 982 982 for (i=0; i <= (long) MaxMap; i++) … … 1008 1008 image_view=AcquireCacheView(image); 1009 1009 #if defined(_OPENMP) && (_OPENMP >= 200203) 1010 #pragma omp parallel for s chedule(static,1) shared(status)1010 #pragma omp parallel for shared(status) 1011 1011 #endif 1012 1012 for (y=0; y < (long) image->rows; y++) … … 1421 1421 image_view=AcquireCacheView(image); 1422 1422 #if defined(_OPENMP) && (_OPENMP >= 200203) 1423 #pragma omp parallel for s chedule(static,1) shared(status)1423 #pragma omp parallel for shared(status) 1424 1424 #endif 1425 1425 for (y=0; y < (long) image->rows; y++) … … 1477 1477 image_view=AcquireCacheView(image); 1478 1478 #if defined(_OPENMP) && (_OPENMP >= 200203) 1479 #pragma omp parallel for s chedule(static,1) shared(status)1479 #pragma omp parallel for shared(status) 1480 1480 #endif 1481 1481 for (y=0; y < (long) image->rows; y++) … … 1537 1537 image_view=AcquireCacheView(image); 1538 1538 #if defined(_OPENMP) && (_OPENMP >= 200203) 1539 #pragma omp parallel for s chedule(static,1) shared(status)1539 #pragma omp parallel for shared(status) 1540 1540 #endif 1541 1541 for (y=0; y < (long) image->rows; y++) … … 1595 1595 image_view=AcquireCacheView(image); 1596 1596 #if defined(_OPENMP) && (_OPENMP >= 200203) 1597 #pragma omp parallel for s chedule(static,1) shared(status)1597 #pragma omp parallel for shared(status) 1598 1598 #endif 1599 1599 for (y=0; y < (long) image->rows; y++) … … 1653 1653 image_view=AcquireCacheView(image); 1654 1654 #if defined(_OPENMP) && (_OPENMP >= 200203) 1655 #pragma omp parallel for s chedule(static,1) shared(status)1655 #pragma omp parallel for shared(status) 1656 1656 #endif 1657 1657 for (y=0; y < (long) image->rows; y++) … … 1711 1711 image_view=AcquireCacheView(image); 1712 1712 #if defined(_OPENMP) && (_OPENMP >= 200203) 1713 #pragma omp parallel for s chedule(static,1) shared(status)1713 #pragma omp parallel for shared(status) 1714 1714 #endif 1715 1715 for (y=0; y < (long) image->rows; y++) … … 1812 1812 image_view=AcquireCacheView(image); 1813 1813 #if defined(_OPENMP) && (_OPENMP >= 200203) 1814 #pragma omp parallel for s chedule(static,1) shared(status)1814 #pragma omp parallel for shared(status) 1815 1815 #endif 1816 1816 for (y=0; y < (long) image->rows; y++) … … 1891 1891 */ 1892 1892 #if defined(_OPENMP) && (_OPENMP >= 200203) 1893 #pragma omp parallel for schedule(static,1)1893 #pragma omp parallel for 1894 1894 #endif 1895 1895 for (i=0; i <= (long) MaxMap; i++) … … 1926 1926 */ 1927 1927 #if defined(_OPENMP) && (_OPENMP >= 200203) 1928 #pragma omp parallel for schedule(static,1)1928 #pragma omp parallel for 1929 1929 #endif 1930 1930 for (i=0; i <= (long) MaxMap; i++) … … 1959 1959 */ 1960 1960 #if defined(_OPENMP) && (_OPENMP >= 200203) 1961 #pragma omp parallel for schedule(static,1)1961 #pragma omp parallel for 1962 1962 #endif 1963 1963 for (i=0; i <= (long) MaxMap; i++) … … 1989 1989 */ 1990 1990 #if defined(_OPENMP) && (_OPENMP >= 200203) 1991 #pragma omp parallel for schedule(static,1)1991 #pragma omp parallel for 1992 1992 #endif 1993 1993 for (i=0; i <= (long) MaxMap; i++) … … 2015 2015 */ 2016 2016 #if defined(_OPENMP) && (_OPENMP >= 200203) 2017 #pragma omp parallel for schedule(static,1)2017 #pragma omp parallel for 2018 2018 #endif 2019 2019 for (i=0; i <= (long) MaxMap; i++) … … 2043 2043 */ 2044 2044 #if defined(_OPENMP) && (_OPENMP >= 200203) 2045 #pragma omp parallel for schedule(static,1)2045 #pragma omp parallel for 2046 2046 #endif 2047 2047 for (i=0; i <= (long) MaxMap; i++) … … 2076 2076 */ 2077 2077 #if defined(_OPENMP) && (_OPENMP >= 200203) 2078 #pragma omp parallel for schedule(static,1)2078 #pragma omp parallel for 2079 2079 #endif 2080 2080 for (i=0; i <= (long) MaxMap; i++) … … 2111 2111 */ 2112 2112 #if defined(_OPENMP) && (_OPENMP >= 200203) 2113 #pragma omp parallel for schedule(static,1)2113 #pragma omp parallel for 2114 2114 #endif 2115 2115 for (i=0; i <= (long) MaxMap; i++) … … 2145 2145 */ 2146 2146 #if defined(_OPENMP) && (_OPENMP >= 200203) 2147 #pragma omp parallel for schedule(static,1)2147 #pragma omp parallel for 2148 2148 #endif 2149 2149 for (i=0; i <= (long) MaxMap; i++) … … 2179 2179 image_view=AcquireCacheView(image); 2180 2180 #if defined(_OPENMP) && (_OPENMP >= 200203) 2181 #pragma omp parallel for s chedule(static,1) shared(status)2181 #pragma omp parallel for shared(status) 2182 2182 #endif 2183 2183 for (y=0; y < (long) image->rows; y++) … … 2288 2288 image_view=AcquireCacheView(image); 2289 2289 #if defined(_OPENMP) && (_OPENMP >= 200203) 2290 #pragma omp parallel for s chedule(static,1) shared(status)2290 #pragma omp parallel for shared(status) 2291 2291 #endif 2292 2292 for (i=0; i < (long) image->colors; i++) -
ImageMagick/trunk/magick/compare.c
r108 r354 199 199 highlight_view=AcquireCacheView(highlight_image); 200 200 #if defined(_OPENMP) && (_OPENMP >= 200203) 201 #pragma omp parallel for s chedule(static,1) shared(status)201 #pragma omp parallel for shared(status) 202 202 #endif 203 203 for (y=0; y < (long) image->rows; y++) … … 371 371 reconstruct_view=AcquireCacheView(reconstruct_image); 372 372 #if defined(_OPENMP) && (_OPENMP >= 200203) 373 #pragma omp parallel for s chedule(static,1) shared(status)373 #pragma omp parallel for shared(status) 374 374 #endif 375 375 for (y=0; y < (long) image->rows; y++) … … 487 487 reconstruct_view=AcquireCacheView(reconstruct_image); 488 488 #if defined(_OPENMP) && (_OPENMP >= 200203) 489 #pragma omp parallel for s chedule(static,1) shared(status)489 #pragma omp parallel for shared(status) 490 490 #endif 491 491 for (y=0; y < (long) image->rows; y++) … … 724 724 reconstruct_view=AcquireCacheView(reconstruct_image); 725 725 #if defined(_OPENMP) && (_OPENMP >= 200203) 726 #pragma omp parallel for s chedule(static,1) shared(status)726 #pragma omp parallel for shared(status) 727 727 #endif 728 728 for (y=0; y < (long) image->rows; y++) … … 830 830 reconstruct_view=AcquireCacheView(reconstruct_image); 831 831 #if defined(_OPENMP) && (_OPENMP >= 200203) 832 #pragma omp parallel for s chedule(static,1) shared(status)832 #pragma omp parallel for shared(status) 833 833 #endif 834 834 for (y=0; y < (long) image->rows; y++) … … 1406 1406 reference_view=AcquireCacheView(reference); 1407 1407 #if defined(_OPENMP) && (_OPENMP >= 200203) 1408 #pragma omp parallel for s chedule(static,1) shared(status)1408 #pragma omp parallel for shared(status) 1409 1409 #endif 1410 1410 for (y=0; y < (long) reference->rows; y++) … … 1525 1525 similarity_view=AcquireCacheView(similarity_image); 1526 1526 #if defined(_OPENMP) && (_OPENMP >= 200203) 1527 #pragma omp parallel for s chedule(static,1) shared(progress,status)1527 #pragma omp parallel for shared(progress,status) 1528 1528 #endif 1529 1529 for (y=0; y < (long) (image->rows-reference->rows+1); y++) -
ImageMagick/trunk/magick/composite.c
r329 r354 1370 1370 composite_view=AcquireCacheView(composite_image); 1371 1371 #if defined(_OPENMP) && (_OPENMP >= 200203) 1372 #pragma omp parallel for s chedule(static,1) shared(status)1372 #pragma omp parallel for shared(status) 1373 1373 #endif 1374 1374 for (y=0; y < (long) composite_image->rows; y++) … … 1846 1846 composite_view=AcquireCacheView(composite_image); 1847 1847 #if defined(_OPENMP) && (_OPENMP >= 200203) 1848 #pragma omp parallel for s chedule(static,1) shared(progress,status)1848 #pragma omp parallel for shared(progress,status) 1849 1849 #endif 1850 1850 for (y=0; y < (long) image->rows; y++) … … 2507 2507 */ 2508 2508 #if defined(_OPENMP) && (_OPENMP >= 200203) 2509 #pragma omp parallel for s chedule(static,1) shared(status)2509 #pragma omp parallel for shared(status) 2510 2510 #endif 2511 2511 for (y=0; y < (long) image->rows; y+=texture->rows) … … 2554 2554 texture_view=AcquireCacheView(texture); 2555 2555 #if defined(_OPENMP) && (_OPENMP >= 200203) 2556 #pragma omp parallel for s chedule(static,1) shared(status)2556 #pragma omp parallel for shared(status) 2557 2557 #endif 2558 2558 for (y=0; y < (long) image->rows; y++) -
ImageMagick/trunk/magick/decorate.c
r175 r354 401 401 */ 402 402 #if defined(_OPENMP) && (_OPENMP >= 200203) 403 #pragma omp parallel for s chedule(static,1) shared(progress,status)403 #pragma omp parallel for shared(progress,status) 404 404 #endif 405 405 for (y=0; y < (long) image->rows; y++) … … 723 723 image_view=AcquireCacheView(image); 724 724 #if defined(_OPENMP) && (_OPENMP >= 200203) 725 #pragma omp parallel for s chedule(static,1) shared(progress,status)725 #pragma omp parallel for shared(progress,status) 726 726 #endif 727 727 for (y=0; y < (long) raise_info->height; y++) … … 790 790 } 791 791 #if defined(_OPENMP) && (_OPENMP >= 200203) 792 #pragma omp parallel for s chedule(static,1) shared(progress,status)792 #pragma omp parallel for shared(progress,status) 793 793 #endif 794 794 for (y=(long) raise_info->height; y < (long) (image->rows-raise_info->height); y++) … … 846 846 } 847 847 #if defined(_OPENMP) && (_OPENMP >= 200203) 848 #pragma omp parallel for s chedule(static,1) shared(progress,status)848 #pragma omp parallel for shared(progress,status) 849 849 #endif 850 850 for (y=(long) (image->rows-raise_info->height); y < (long) image->rows; y++) -
ImageMagick/trunk/magick/deprecate.c
r324 r354 1710 1710 SetGeometry(reference,&offset); 1711 1711 #if defined(_OPENMP) && (_OPENMP >= 200203) 1712 #pragma omp parallel for schedule(static,1)1712 #pragma omp parallel for 1713 1713 #endif 1714 1714 for (y=0; y < (long) (image->rows-reference->rows); y++) -
ImageMagick/trunk/magick/distort.c
r350 r354 1924 1924 distort_view=AcquireCacheView(distort_image); 1925 1925 #if defined(_OPENMP) && (_OPENMP >= 200203) 1926 #pragma omp parallel for s chedule(static,1) shared(progress,status)1926 #pragma omp parallel for shared(progress,status) 1927 1927 #endif 1928 1928 for (j=0; j < (long) distort_image->rows; j++) … … 2490 2490 sparse_view=AcquireCacheView(sparse_image); 2491 2491 #if defined(_OPENMP) && (_OPENMP >= 200203) 2492 #pragma omp parallel for s chedule(static,1) shared(progress,status)2492 #pragma omp parallel for shared(progress,status) 2493 2493 #endif 2494 2494 for (j=0; j < (long) sparse_image->rows; j++) -
ImageMagick/trunk/magick/draw.c
r108 r354 1170 1170 source_view=AcquireCacheView(source); 1171 1171 #if defined(_OPENMP) && (_OPENMP >= 200203) 1172 #pragma omp parallel for s chedule(static,1) shared(status)1172 #pragma omp parallel for shared(status) 1173 1173 #endif 1174 1174 for (y=(long) (edge.y1+0.5); y <= (long) (edge.y2+0.5); y++) … … 3274 3274 image_view=AcquireCacheView(image); 3275 3275 #if defined(_OPENMP) && (_OPENMP >= 200203) 3276 #pragma omp parallel for s chedule(static,1) shared(status)3276 #pragma omp parallel for shared(status) 3277 3277 #endif 3278 3278 for (y=bounding_box.y; y < (long) bounding_box.height; y++) … … 3929 3929 (void) SetImageAlphaChannel(image,OpaqueAlphaChannel); 3930 3930 #if defined(_OPENMP) && (_OPENMP >= 200203) 3931 #pragma omp parallel for s chedule(static,1) shared(status)3931 #pragma omp parallel for shared(status) 3932 3932 #endif 3933 3933 for (y=(long) (bounds.y1+0.5); y <= (long) (bounds.y2+0.5); y++) -
ImageMagick/trunk/magick/effect.c
r108 r354 270 270 blur_view=AcquireCacheView(blur_image); 271 271 #if defined(_OPENMP) && (_OPENMP >= 200203) 272 #pragma omp parallel for s chedule(static,1) shared(progress,status)272 #pragma omp parallel for shared(progress,status) 273 273 #endif 274 274 for (y=0; y < (long) blur_image->rows; y++) … … 588 588 sharp_view=AcquireCacheView(sharp_image); 589 589 #if defined(_OPENMP) && (_OPENMP >= 200203) 590 #pragma omp parallel for s chedule(static,1) shared(progress,status)590 #pragma omp parallel for shared(progress,status) 591 591 #endif 592 592 for (y=0; y < (long) sharp_image->rows; y++) … … 909 909 blur_view=AcquireCacheView(blur_image); 910 910 #if defined(_OPENMP) && (_OPENMP >= 200203) 911 #pragma omp parallel for s chedule(static,1) shared(progress,status)911 #pragma omp parallel for shared(progress,status) 912 912 #endif 913 913 for (y=0; y < (long) blur_image->rows; y++) … … 1500 1500 despeckle_view=AcquireCacheView(despeckle_image); 1501 1501 #if defined(_OPENMP) && (_OPENMP >= 200203) 1502 #pragma omp parallel for s chedule(static,1) shared(status)1502 #pragma omp parallel for shared(status) 1503 1503 #endif 1504 1504 for (channel=0; channel <= 3; channel++) … … 2245 2245 median_view=AcquireCacheView(median_image); 2246 2246 #if defined(_OPENMP) && (_OPENMP >= 200203) 2247 #pragma omp parallel for s chedule(static,1) shared(progress,status)2247 #pragma omp parallel for shared(progress,status) 2248 2248 #endif 2249 2249 for (y=0; y < (long) median_image->rows; y++) … … 2517 2517 blur_view=AcquireCacheView(blur_image); 2518 2518 #if defined(_OPENMP) && (_OPENMP >= 200203) 2519 #pragma omp parallel for s chedule(static,1) shared(progress,status)2519 #pragma omp parallel for shared(progress,status) 2520 2520 #endif 2521 2521 for (y=0; y < (long) image->rows; y++) … … 3292 3292 blur_view=AcquireCacheView(blur_image); 3293 3293 #if defined(_OPENMP) && (_OPENMP >= 200203) 3294 #pragma omp parallel for s chedule(static,1) shared(progress,status)3294 #pragma omp parallel for shared(progress,status) 3295 3295 #endif 3296 3296 for (y=0; y < (long) blur_image->rows; y++) … … 3603 3603 noise_view=AcquireCacheView(noise_image); 3604 3604 #if defined(_OPENMP) && (_OPENMP >= 200203) 3605 #pragma omp parallel for s chedule(static,1) shared(progress,status)3605 #pragma omp parallel for shared(progress,status) 3606 3606 #endif 3607 3607 for (y=0; y < (long) noise_image->rows; y++) … … 3860 3860 blur_view=AcquireCacheView(blur_image); 3861 3861 #if defined(_OPENMP) && (_OPENMP >= 200203) 3862 #pragma omp parallel for s chedule(static,1) shared(progress,status)3862 #pragma omp parallel for shared(progress,status) 3863 3863 #endif 3864 3864 for (y=0; y < (long) image->rows; y++) … … 4196 4196 shade_view=AcquireCacheView(shade_image); 4197 4197 #if defined(_OPENMP) && (_OPENMP >= 200203) 4198 #pragma omp parallel for s chedule(static,1) shared(progress,status)4198 #pragma omp parallel for shared(progress,status) 4199 4199 #endif 4200 4200 for (y=0; y < (long) image->rows; y++) … … 4493 4493 image_view=AcquireCacheView(spread_image); 4494 4494 #if defined(_OPENMP) && (_OPENMP >= 200203) 4495 #pragma omp parallel for s chedule(static,1) shared(progress,status)4495 #pragma omp parallel for shared(progress,status) 4496 4496 #endif 4497 4497 for (y=0; y < (long) spread_image->rows; y++) … … 4652 4652 unsharp_view=AcquireCacheView(unsharp_image); 4653 4653 #if defined(_OPENMP) && (_OPENMP >= 200203) 4654 #pragma omp parallel for s chedule(static,1) shared(progress,status)4654 #pragma omp parallel for shared(progress,status) 4655 4655 #endif 4656 4656 for (y=0; y < (long) image->rows; y++) -
ImageMagick/trunk/magick/enhance.c
r160 r354 461 461 image->filename); 462 462 #if defined(_OPENMP) && (_OPENMP >= 200203) 463 #pragma omp parallel for schedule(static,1)463 #pragma omp parallel for 464 464 #endif 465 465 for (i=0; i <= (long) MaxMap; i++) … … 481 481 */ 482 482 #if defined(_OPENMP) && (_OPENMP >= 200203) 483 #pragma omp parallel for s chedule(static,1) shared(progress,status)483 #pragma omp parallel for shared(progress,status) 484 484 #endif 485 485 for (i=0; i < (long) image->colors; i++) … … 507 507 image_view=AcquireCacheView(image); 508 508 #if defined(_OPENMP) && (_OPENMP >= 200203) 509 #pragma omp parallel for s chedule(static,1) shared(progress,status)509 #pragma omp parallel for shared(progress,status) 510 510 #endif 511 511 for (y=0; y < (long) image->rows; y++) … … 655 655 image_view=AcquireCacheView(image); 656 656 #if defined(_OPENMP) && (_OPENMP >= 200203) 657 #pragma omp parallel for s chedule(static,1) shared(progress,status)657 #pragma omp parallel for shared(progress,status) 658 658 #endif 659 659 for (y=0; y < (long) image->rows; y++) … … 888 888 image_view=AcquireCacheView(image); 889 889 #if defined(_OPENMP) && (_OPENMP >= 200203) 890 #pragma omp parallel for s chedule(static,1) shared(progress,status)890 #pragma omp parallel for shared(progress,status) 891 891 #endif 892 892 for (y=0; y < (long) image->rows; y++) … … 1226 1226 (void) ResetMagickMemory(stretch_map,0,(MaxMap+1)*sizeof(*stretch_map)); 1227 1227 #if defined(_OPENMP) && (_OPENMP >= 200203) 1228 #pragma omp parallel for s chedule(static,1) shared(progress,status)1228 #pragma omp parallel for shared(progress,status) 1229 1229 #endif 1230 1230 for (i=0; i <= (long) MaxMap; i++) … … 1308 1308 */ 1309 1309 #if defined(_OPENMP) && (_OPENMP >= 200203) 1310 #pragma omp parallel for s chedule(static,1) shared(progress,status)1310 #pragma omp parallel for shared(progress,status) 1311 1311 #endif 1312 1312 for (i=0; i < (long) image->colors; i++) … … 1344 1344 progress=0; 1345 1345 #if defined(_OPENMP) && (_OPENMP >= 200203) 1346 #pragma omp parallel for s chedule(static,1) shared(progress,status)1346 #pragma omp parallel for shared(progress,status) 1347 1347 #endif 1348 1348 for (y=0; y < (long) image->rows; y++) … … 1523 1523 enhance_view=AcquireCacheView(enhance_image); 1524 1524 #if defined(_OPENMP) && (_OPENMP >= 200203) 1525 #pragma omp parallel for s chedule(static,1) shared(progress,status)1525 #pragma omp parallel for shared(progress,status) 1526 1526 #endif 1527 1527 for (y=0; y < (long) image->rows; y++) … … 1756 1756 (void) ResetMagickMemory(equalize_map,0,(MaxMap+1)*sizeof(*equalize_map)); 1757 1757 #if defined(_OPENMP) && (_OPENMP >= 200203) 1758 #pragma omp parallel for s chedule(static,1) shared(progress,status)1758 #pragma omp parallel for shared(progress,status) 1759 1759 #endif 1760 1760 for (i=0; i <= (long) MaxMap; i++) … … 1787 1787 */ 1788 1788 #if defined(_OPENMP) && (_OPENMP >= 200203) 1789 #pragma omp parallel for s chedule(static,1) shared(progress,status)1789 #pragma omp parallel for shared(progress,status) 1790 1790 #endif 1791 1791 for (i=0; i < (long) image->colors; i++) … … 1814 1814 image_view=AcquireCacheView(image); 1815 1815 #if defined(_OPENMP) && (_OPENMP >= 200203) 1816 #pragma omp parallel for s chedule(static,1) shared(progress,status)1816 #pragma omp parallel for shared(progress,status) 1817 1817 #endif 1818 1818 for (y=0; y < (long) image->rows; y++) … … 1990 1990 if (gamma != 0.0) 1991 1991 #if defined(_OPENMP) && (_OPENMP >= 200203) 1992 #pragma omp parallel for schedule(static,1)1992 #pragma omp parallel for 1993 1993 #endif 1994 1994 for (i=0; i <= (long) MaxMap; i++) … … 2001 2001 */ 2002 2002 #if defined(_OPENMP) && (_OPENMP >= 200203) 2003 #pragma omp parallel for s chedule(static,1) shared(progress,status)2003 #pragma omp parallel for shared(progress,status) 2004 2004 #endif 2005 2005 for (i=0; i < (long) image->colors; i++) … … 2034 2034 image_view=AcquireCacheView(image); 2035 2035 #if defined(_OPENMP) && (_OPENMP >= 200203) 2036 #pragma omp parallel for s chedule(static,1) shared(progress,status)2036 #pragma omp parallel for shared(progress,status) 2037 2037 #endif 2038 2038 for (y=0; y < (long) image->rows; y++) … … 2213 2213 image_view=AcquireCacheView(image); 2214 2214 #if defined(_OPENMP) && (_OPENMP >= 200203) 2215 #pragma omp parallel for s chedule(static,1) shared(progress,status)2215 #pragma omp parallel for shared(progress,status) 2216 2216 #endif 2217 2217 for (y=0; y < (long) image->rows; y++) … … 2484 2484 if (image->storage_class == PseudoClass) 2485 2485 #if defined(_OPENMP) && (_OPENMP >= 200203) 2486 #pragma omp parallel for s chedule(static,1) shared(progress,status)2486 #pragma omp parallel for shared(progress,status) 2487 2487 #endif 2488 2488 for (i=0; i < (long) image->colors; i++) … … 2508 2508 image_view=AcquireCacheView(image); 2509 2509 #if defined(_OPENMP) && (_OPENMP >= 200203) 2510 #pragma omp parallel for s chedule(static,1) shared(progress,status)2510 #pragma omp parallel for shared(progress,status) 2511 2511 #endif 2512 2512 for (y=0; y < (long) image->rows; y++) … … 2641 2641 if (image->storage_class == PseudoClass) 2642 2642 #if defined(_OPENMP) && (_OPENMP >= 200203) 2643 #pragma omp parallel for s chedule(static,1) shared(progress,status)2643 #pragma omp parallel for shared(progress,status) 2644 2644 #endif 2645 2645 for (i=0; i < (long) image->colors; i++) … … 2665 2665 image_view=AcquireCacheView(image); 2666 2666 #if defined(_OPENMP) && (_OPENMP >= 200203) 2667 #pragma omp parallel for s chedule(static,1) shared(progress,status)2667 #pragma omp parallel for shared(progress,status) 2668 2668 #endif 2669 2669 for (y=0; y < (long) image->rows; y++) … … 3114 3114 */ 3115 3115 #if defined(_OPENMP) && (_OPENMP >= 200203) 3116 #pragma omp parallel for s chedule(static,1) shared(progress,status)3116 #pragma omp parallel for shared(progress,status) 3117 3117 #endif 3118 3118 for (i=0; i < (long) image->colors; i++) … … 3151 3151 image_view=AcquireCacheView(image); 3152 3152 #if defined(_OPENMP) && (_OPENMP >= 200203) 3153 #pragma omp parallel for s chedule(static,1) shared(progress,status)3153 #pragma omp parallel for shared(progress,status) 3154 3154 #endif 3155 3155 for (y=0; y < (long) image->rows; y++) … … 3286 3286 */ 3287 3287 #if defined(_OPENMP) && (_OPENMP >= 200203) 3288 #pragma omp parallel for s chedule(static,1) shared(progress,status)3288 #pragma omp parallel for shared(progress,status) 3289 3289 #endif 3290 3290 for (i=0; i < (long) image->colors; i++) … … 3315 3315 { 3316 3316 #if defined(_OPENMP) && (_OPENMP >= 200203) 3317 #pragma omp parallel for s chedule(static,1) shared(progress,status)3317 #pragma omp parallel for shared(progress,status) 3318 3318 #endif 3319 3319 for (y=0; y < (long) image->rows; y++) … … 3385 3385 */ 3386 3386 #if defined(_OPENMP) && (_OPENMP >= 200203) 3387 #pragma omp parallel for s chedule(static,1) shared(progress,status)3387 #pragma omp parallel for shared(progress,status) 3388 3388 #endif 3389 3389 for (y=0; y < (long) image->rows; y++) … … 3594 3594 (void) ResetMagickMemory(sigmoidal_map,0,(MaxMap+1)*sizeof(*sigmoidal_map)); 3595 3595 #if defined(_OPENMP) && (_OPENMP >= 200203) 3596 #pragma omp parallel for s chedule(static,1) shared(progress,status)3596 #pragma omp parallel for shared(progress,status) 3597 3597 #endif 3598 3598 for (i=0; i <= (long) MaxMap; i++) … … 3624 3624 */ 3625 3625 #if defined(_OPENMP) && (_OPENMP >= 200203) 3626 #pragma omp parallel for s chedule(static,1) shared(progress,status)3626 #pragma omp parallel for shared(progress,status) 3627 3627 #endif 3628 3628 for (i=0; i < (long) image->colors; i++) … … 3650 3650 image_view=AcquireCacheView(image); 3651 3651 #if defined(_OPENMP) && (_OPENMP >= 200203) 3652 #pragma omp parallel for s chedule(static,1) shared(progress,status)3652 #pragma omp parallel for shared(progress,status) 3653 3653 #endif 3654 3654 for (y=0; y < (long) image->rows; y++) -
ImageMagick/trunk/magick/fourier.c
r108 r354 655 655 is_gray=IsGrayImage(image,exception); 656 656 #if defined(_OPENMP) && (_OPENMP >= 200203) 657 #pragma omp parallel for s chedule(static,1) shared(status)657 #pragma omp parallel for shared(status) 658 658 #endif 659 659 for (i=0L; i < 5L; i++) … … 1198 1198 is_gray=IsGrayImage(images->next,exception); 1199 1199 #if defined(_OPENMP) && (_OPENMP >= 200203) 1200 #pragma omp parallel for s chedule(static,1) shared(status)1200 #pragma omp parallel for shared(status) 1201 1201 #endif 1202 1202 for (i=0L; i < 5L; i++) -
ImageMagick/trunk/magick/fx.c
r108 r354 334 334 noise_view=AcquireCacheView(noise_image); 335 335 #if defined(MAGICKCORE_OPENMP_SUPPORT_DEBUG) 336 #pragma omp parallel for s chedule(static,1) shared(progress,status)336 #pragma omp parallel for shared(progress,status) 337 337 #endif 338 338 for (y=0; y < (long) image->rows; y++) … … 490 490 shift_view=AcquireCacheView(shift_image); 491 491 #if defined(MAGICKCORE_OPENMP_SUPPORT_DEBUG) 492 #pragma omp parallel for s chedule(static,1) shared(progress,status)492 #pragma omp parallel for shared(progress,status) 493 493 #endif 494 494 for (y=0; y < (long) image->rows; y++) … … 737 737 colorize_view=AcquireCacheView(colorize_image); 738 738 #if defined(MAGICKCORE_OPENMP_SUPPORT_DEBUG) 739 #pragma omp parallel for s chedule(static,1) shared(progress,status)739 #pragma omp parallel for shared(progress,status) 740 740 #endif 741 741 for (y=0; y < (long) image->rows; y++) … … 959 959 convolve_view=AcquireCacheView(convolve_image); 960 960 #if defined(_OPENMP) && (_OPENMP >= 200203) 961 #pragma omp parallel for s chedule(static,1) shared(progress,status)961 #pragma omp parallel for shared(progress,status) 962 962 #endif 963 963 for (y=0; y < (long) image->rows; y++) … … 1474 1474 image_view=AcquireCacheView(image); 1475 1475 #if defined(_OPENMP) && (_OPENMP >= 200203) 1476 #pragma omp parallel for s chedule(static,1) shared(progress,status)1476 #pragma omp parallel for shared(progress,status) 1477 1477 #endif 1478 1478 for (y=0; y < (long) image->rows; y++) … … 1706 1706 image_view=AcquireCacheView(image); 1707 1707 #if defined(_OPENMP) && (_OPENMP >= 200203) 1708 #pragma omp parallel for s chedule(static,1) shared(progress,status)1708 #pragma omp parallel for shared(progress,status) 1709 1709 #endif 1710 1710 for (y=0; y < (long) image->rows; y++) … … 3542 3542 fx_view=AcquireCacheView(fx_image); 3543 3543 #if defined(_OPENMP) && (_OPENMP >= 200203) 3544 #pragma omp parallel for s chedule(static,1) shared(progress,status)3544 #pragma omp parallel for shared(progress,status) 3545 3545 #endif 3546 3546 for (y=0; y < (long) fx_image->rows; y++) … … 3745 3745 implode_view=AcquireCacheView(implode_image); 3746 3746 #if defined(_OPENMP) && (_OPENMP >= 200203) 3747 #pragma omp parallel for s chedule(static,1) shared(progress,status)3747 #pragma omp parallel for shared(progress,status) 3748 3748 #endif 3749 3749 for (y=0; y < (long) image->rows; y++) … … 3967 3967 morph_view=AcquireCacheView(morph_images); 3968 3968 #if defined(_OPENMP) && (_OPENMP >= 200203) 3969 #pragma omp parallel for s chedule(static,1) shared(status)3969 #pragma omp parallel for shared(status) 3970 3970 #endif 3971 3971 for (y=0; y < (long) morph_images->rows; y++) … … 4594 4594 recolor_view=AcquireCacheView(recolor_image); 4595 4595 #if defined(_OPENMP) && (_OPENMP >= 200203) 4596 #pragma omp parallel for s chedule(static,1) shared(progress,status)4596 #pragma omp parallel for shared(progress,status) 4597 4597 #endif 4598 4598 for (y=0; y < (long) image->rows; y++) … … 4807 4807 sepia_view=AcquireCacheView(sepia_image); 4808 4808 #if defined(_OPENMP) && (_OPENMP >= 200203) 4809 #pragma omp parallel for s chedule(static,1) shared(progress,status)4809 #pragma omp parallel for shared(progress,status) 4810 4810 #endif 4811 4811 for (y=0; y < (long) image->rows; y++) … … 4965 4965 image_view=AcquireCacheView(border_image); 4966 4966 #if defined(_OPENMP) && (_OPENMP >= 200203) 4967 #pragma omp parallel for s chedule(static,1) shared(progress,status)4967 #pragma omp parallel for shared(progress,status) 4968 4968 #endif 4969 4969 for (y=0; y < (long) border_image->rows; y++) … … 5254 5254 image_view=AcquireCacheView(image); 5255 5255 #if defined(_OPENMP) && (_OPENMP >= 200203) 5256 #pragma omp parallel for s chedule(static,1) shared(progress,status)5256 #pragma omp parallel for shared(progress,status) 5257 5257 #endif 5258 5258 for (y=0; y < (long) image->rows; y++) … … 5695 5695 swirl_view=AcquireCacheView(swirl_image); 5696 5696 #if defined(_OPENMP) && (_OPENMP >= 200203) 5697 #pragma omp parallel for s chedule(static,1) shared(progress,status)5697 #pragma omp parallel for shared(progress,status) 5698 5698 #endif 5699 5699 for (y=0; y < (long) image->rows; y++) … … 5892 5892 tint_view=AcquireCacheView(tint_image); 5893 5893 #if defined(_OPENMP) && (_OPENMP >= 200203) 5894 #pragma omp parallel for s chedule(static,1) shared(progress,status)5894 #pragma omp parallel for shared(progress,status) 5895 5895 #endif 5896 5896 for (y=0; y < (long) image->rows; y++) … … 6158 6158 wave_view=AcquireCacheView(wave_image); 6159 6159 #if defined(_OPENMP) && (_OPENMP >= 200203) 6160 #pragma omp parallel for s chedule(static,1) shared(progress,status)6160 #pragma omp parallel for shared(progress,status) 6161 6161 #endif 6162 6162 for (y=0; y < (long) wave_image->rows; y++) -
ImageMagick/trunk/magick/image.c
r184 r354 551 551 image_view=AcquireCacheView(image); 552 552 #if defined(_OPENMP) && (_OPENMP >= 200203) 553 #pragma omp parallel for s chedule(static,1) shared(status)553 #pragma omp parallel for shared(status) 554 554 #endif 555 555 for (y=0; y < (long) image->rows; y++) … … 1092 1092 combine_view=AcquireCacheView(combine_image); 1093 1093 #if defined(_OPENMP) && (_OPENMP >= 200203) 1094 #pragma omp parallel for s chedule(static,1) shared(progress,status)1094 #pragma omp parallel for shared(progress,status) 1095 1095 #endif 1096 1096 for (y=0; y < (long) combine_image->rows; y++) … … 1942 1942 image_view=AcquireCacheView(image); 1943 1943 #if defined(_OPENMP) && (_OPENMP >= 200203) 1944 #pragma omp parallel for s chedule(static,1) shared(status)1944 #pragma omp parallel for shared(status) 1945 1945 #endif 1946 1946 for (y=0; y < (long) image->rows; y++) … … 2402 2402 image_view=AcquireCacheView(image); 2403 2403 #if defined(_OPENMP) && (_OPENMP >= 200203) 2404 #pragma omp parallel for s chedule(static,1) shared(progress,status)2404 #pragma omp parallel for shared(progress,status) 2405 2405 #endif 2406 2406 for (y=0; y < (long) image->rows; y++) … … 2689 2689 image_view=AcquireCacheView(image); 2690 2690 #if defined(_OPENMP) && (_OPENMP >= 200203) 2691 #pragma omp parallel for s chedule(static,1) shared(status)2691 #pragma omp parallel for shared(status) 2692 2692 #endif 2693 2693 for (y=0; y < (long) image->rows; y++) … … 2865 2865 image_view=AcquireCacheView(image); 2866 2866 #if defined(_OPENMP) && (_OPENMP >= 200203) 2867 #pragma omp parallel for s chedule(static,1) shared(status)2867 #pragma omp parallel for shared(status) 2868 2868 #endif 2869 2869 for (y=0; y < (long) image->rows; y++) … … 3532 3532 image_view=AcquireCacheView(image); 3533 3533 #if defined(_OPENMP) && (_OPENMP >= 200203) 3534 #pragma omp parallel for s chedule(static,1) shared(status)3534 #pragma omp parallel for shared(status) 3535 3535 #endif 3536 3536 for (y=0; y < (long) image->rows; y++) -
ImageMagick/trunk/magick/paint.c
r108 r354 602 602 paint_view=AcquireCacheView(paint_image); 603 603 #if defined(_OPENMP) && (_OPENMP >= 200203) 604 #pragma omp parallel for s chedule(static,1) shared(progress,status)604 #pragma omp parallel for shared(progress,status) 605 605 #endif 606 606 for (y=0; y < (long) image->rows; y++) … … 791 791 image_view=AcquireCacheView(image); 792 792 #if defined(_OPENMP) && (_OPENMP >= 200203) 793 #pragma omp parallel for s chedule(static,1) shared(progress,status)793 #pragma omp parallel for shared(progress,status) 794 794 #endif 795 795 for (y=0; y < (long) image->rows; y++) … … 933 933 image_view=AcquireCacheView(image); 934 934 #if defined(_OPENMP) && (_OPENMP >= 200203) 935 #pragma omp parallel for s chedule(static,1) shared(progress,status)935 #pragma omp parallel for shared(progress,status) 936 936 #endif 937 937 for (y=0; y < (long) image->rows; y++) … … 1063 1063 image_view=AcquireCacheView(image); 1064 1064 #if defined(_OPENMP) && (_OPENMP >= 200203) 1065 #pragma omp parallel for s chedule(static,1) shared(progress,status)1065 #pragma omp parallel for shared(progress,status) 1066 1066 #endif 1067 1067 for (y=0; y < (long) image->rows; y++) -
ImageMagick/trunk/magick/prepress.c
r108 r354 110 110 image_view=AcquireCacheView(image); 111 111 #if defined(_OPENMP) && (_OPENMP >= 200203) 112 #pragma omp parallel for s chedule(static,1) shared(status)112 #pragma omp parallel for shared(status) 113 113 #endif 114 114 for (y=0; y < (long) image->rows; y++) -
ImageMagick/trunk/magick/profile.c
r289 r354 1155 1155 image_view=AcquireCacheView(image); 1156 1156 #if defined(_OPENMP) && (_OPENMP >= 200203) 1157 #pragma omp parallel for s chedule(static,1) shared(status)1157 #pragma omp parallel for shared(status) 1158 1158 #endif 1159 1159 for (y=0; y < (long) image->rows; y++) -
ImageMagick/trunk/magick/quantize.c
r108 r354 3023 3023 image_view=AcquireCacheView(image); 3024 3024 #if defined(_OPENMP) && (_OPENMP >= 200203) 3025 #pragma omp parallel for s chedule(static,1) shared(status)3025 #pragma omp parallel for shared(status) 3026 3026 #endif 3027 3027 for (y=0; y < (long) image->rows; y++) … … 3099 3099 image_view=AcquireCacheView(image); 3100 3100 #if defined(_OPENMP) && (_OPENMP >= 200203) 3101 #pragma omp parallel for s chedule(static,1) shared(status)3101 #pragma omp parallel for shared(status) 3102 3102 #endif 3103 3103 for (y=0; y < (long) image->rows; y++) -
ImageMagick/trunk/magick/resize.c
r108 r354 2337 2337 sample_view=AcquireCacheView(sample_image); 2338 2338 #if defined(_OPENMP) && (_OPENMP >= 200203) 2339 #pragma omp parallel for s chedule(static,1) shared(progress,status)2339 #pragma omp parallel for shared(progress,status) 2340 2340 #endif 2341 2341 for (y=0; y < (long) sample_image->rows; y++) -
ImageMagick/trunk/magick/segment.c
r108 r354 521 521 image_view=AcquireCacheView(image); 522 522 #if defined(_OPENMP) && (_OPENMP >= 200203) 523 #pragma omp parallel for s chedule(static,1) shared(progress,status)523 #pragma omp parallel for shared(progress,status) 524 524 #endif 525 525 for (y=0; y < (long) image->rows; y++) -
ImageMagick/trunk/magick/shear.c
r148 r354 707 707 image_view=AcquireCacheView(image); 708 708 #if defined(_OPENMP) && (_OPENMP >= 200203) 709 #pragma omp parallel for s chedule(static,1) shared(status)709 #pragma omp parallel for shared(status) 710 710 #endif 711 711 for (y=0; y < (long) image->rows; y++) … … 758 758 (void) ResetRadonCells(source_cells); 759 759 #if defined(_OPENMP) && (_OPENMP >= 200203) 760 #pragma omp parallel for s chedule(static,1) shared(status)760 #pragma omp parallel for shared(status) 761 761 #endif 762 762 for (y=0; y < (long) image->rows; y++) … … 1075 1075 GetPixelCacheTileSize(image,&tile_width,&tile_height); 1076 1076 #if defined(_OPENMP) && (_OPENMP >= 200203) 1077 #pragma omp parallel for s chedule(static,1) shared(progress, status)1077 #pragma omp parallel for shared(progress, status) 1078 1078 #endif 1079 1079 for (tile_y=0; tile_y < (long) image->rows; tile_y+=tile_height) … … 1189 1189 */ 1190 1190 #if defined(_OPENMP) && (_OPENMP >= 200203) 1191 #pragma omp parallel for s chedule(static,1) shared(progress, status)1191 #pragma omp parallel for shared(progress, status) 1192 1192 #endif 1193 1193 for (y=0; y < (long) image->rows; y++) … … 1265 1265 GetPixelCacheTileSize(image,&tile_width,&tile_height); 1266 1266 #if defined(_OPENMP) && (_OPENMP >= 200203) 1267 #pragma omp parallel for s chedule(static,1) shared(progress, status)1267 #pragma omp parallel for shared(progress, status) 1268 1268 #endif 1269 1269 for (tile_y=0; tile_y < (long) image->rows; tile_y+=tile_height) … … 1461 1461 image_view=AcquireCacheView(image); 1462 1462 #if defined(_OPENMP) && (_OPENMP >= 200203) 1463 #pragma omp parallel for s chedule(static,1) shared(progress, status)1463 #pragma omp parallel for shared(progress, status) 1464 1464 #endif 1465 1465 for (y=0; y < (long) height; y++) … … 1681 1681 image_view=AcquireCacheView(image); 1682 1682 #if defined(_OPENMP) && (_OPENMP >= 200203) 1683 #pragma omp parallel for s chedule(static,1) shared(progress, status)1683 #pragma omp parallel for shared(progress, status) 1684 1684 #endif 1685 1685 for (x=0; x < (long) width; x++) -
ImageMagick/trunk/magick/statistic.c
r139 r354 229 229 average_view=AcquireCacheView(average_image); 230 230 #if defined(_OPENMP) && (_OPENMP >= 200203) 231 #pragma omp parallel for s chedule(static,1) shared(progress,status)231 #pragma omp parallel for shared(progress,status) 232 232 #endif 233 233 for (y=0; y < (long) average_image->rows; y++) … … 421 421 GetMagickPixelPacket(image,&zero); 422 422 #if defined(_OPENMP) && (_OPENMP >= 200203) 423 #pragma omp parallel for s chedule(static,1) shared(status)423 #pragma omp parallel for shared(status) 424 424 #endif 425 425 for (y=0; y < (long) image->rows; y++) … … 577 577 p=image->colormap; 578 578 #if defined(_OPENMP) && (_OPENMP >= 200203) 579 #pragma omp parallel for s chedule(static,1) shared(status)579 #pragma omp parallel for shared(status) 580 580 #endif 581 581 for (i=0; i < (long) image->colors; i++) … … 618 618 image_view=AcquireCacheView(image); 619 619 #if defined(_OPENMP) && (_OPENMP >= 200203) 620 #pragma omp parallel for s chedule(static,1) shared(status)620 #pragma omp parallel for shared(status) 621 621 #endif 622 622 for (y=0; y < (long) image->rows; y++) … … 1577 1577 image_view=AcquireCacheView(image); 1578 1578 #if defined(_OPENMP) && (_OPENMP >= 200203) 1579 #pragma omp parallel for s chedule(static,1) shared(status)1579 #pragma omp parallel for shared(status) 1580 1580 #endif 1581 1581 for (y=0; y < (long) image->rows; y++) … … 1636 1636 range=GetQuantumRange(depth); 1637 1637 #if defined(_OPENMP) && (_OPENMP >= 200203) 1638 #pragma omp parallel for s chedule(static,1) shared(status)1638 #pragma omp parallel for shared(status) 1639 1639 #endif 1640 1640 for (i=0; i < (long) image->colors; i++) -
ImageMagick/trunk/magick/threshold.c
r210 r354 193 193 threshold_view=AcquireCacheView(threshold_image); 194 194 #if defined(_OPENMP) && (_OPENMP >= 200203) 195 #pragma omp parallel for s chedule(static,1) shared(progress,status)195 #pragma omp parallel for shared(progress,status) 196 196 #endif 197 197 for (y=0; y < (long) image->rows; y++) … … 387 387 image_view=AcquireCacheView(image); 388 388 #if defined(_OPENMP) && (_OPENMP >= 200203) 389 #pragma omp parallel for s chedule(static,1) shared(progress,status)389 #pragma omp parallel for shared(progress,status) 390 390 #endif 391 391 for (y=0; y < (long) image->rows; y++) … … 573 573 image_view=AcquireCacheView(image); 574 574 #if defined(_OPENMP) && (_OPENMP >= 200203) 575 #pragma omp parallel for s chedule(static,1) shared(progress,status)575 #pragma omp parallel for shared(progress,status) 576 576 #endif 577 577 for (y=0; y < (long) image->rows; y++) … … 748 748 image_view=AcquireCacheView(image); 749 749 #if defined(_OPENMP) && (_OPENMP >= 200203) 750 #pragma omp parallel for s chedule(static,1) shared(progress,status)750 #pragma omp parallel for shared(progress,status) 751 751 #endif 752 752 for (y=0; y < (long) image->rows; y++) … … 1478 1478 image_view=AcquireCacheView(image); 1479 1479 #if defined(_OPENMP) && (_OPENMP >= 200203) 1480 #pragma omp parallel for s chedule(static,1) shared(progress,status)1480 #pragma omp parallel for shared(progress,status) 1481 1481 #endif 1482 1482 for (y=0; y < (long) image->rows; y++) … … 1697 1697 image_view=AcquireCacheView(image); 1698 1698 #if defined(_OPENMP) && (_OPENMP >= 200203) 1699 #pragma omp parallel for s chedule(static,1) shared(progress,status)1699 #pragma omp parallel for shared(progress,status) 1700 1700 #endif 1701 1701 for (y=0; y < (long) image->rows; y++) … … 1774 1774 image_view=AcquireCacheView(image); 1775 1775 #if defined(_OPENMP) && (_OPENMP >= 200203) 1776 #pragma omp parallel for s chedule(static,1) shared(progress,status)1776 #pragma omp parallel for shared(progress,status) 1777 1777 #endif 1778 1778 for (y=0; y < (long) image->rows; y++) … … 2001 2001 image_view=AcquireCacheView(image); 2002 2002 #if defined(_OPENMP) && (_OPENMP >= 200203) 2003 #pragma omp parallel for s chedule(static,1) shared(progress,status)2003 #pragma omp parallel for shared(progress,status) 2004 2004 #endif 2005 2005 for (y=0; y < (long) image->rows; y++) -
ImageMagick/trunk/magick/transform.c
r108 r354 586 586 crop_view=AcquireCacheView(crop_image); 587 587 #if defined(_OPENMP) && (_OPENMP >= 200203) 588 #pragma omp parallel for s chedule(static,1) shared(progress,status)588 #pragma omp parallel for shared(progress,status) 589 589 #endif 590 590 for (y=0; y < (long) crop_image->rows; y++) … … 714 714 excerpt_view=AcquireCacheView(excerpt_image); 715 715 #if defined(_OPENMP) && (_OPENMP >= 200203) 716 #pragma omp parallel for s chedule(static,1) shared(progress,status)716 #pragma omp parallel for shared(progress,status) 717 717 #endif 718 718 for (y=0; y < (long) excerpt_image->rows; y++) … … 895 895 flip_view=AcquireCacheView(flip_image); 896 896 #if defined(_OPENMP) && (_OPENMP >= 200203) 897 #pragma omp parallel for s chedule(static,1) shared(progress,status)897 #pragma omp parallel for shared(progress,status) 898 898 #endif 899 899 for (y=0; y < (long) flip_image->rows; y++) … … 1013 1013 flop_view=AcquireCacheView(flop_image); 1014 1014 #if defined(_OPENMP) && (_OPENMP >= 200203) 1015 #pragma omp parallel for s chedule(static,1) shared(progress,status)1015 #pragma omp parallel for shared(progress,status) 1016 1016 #endif 1017 1017 for (y=0; y < (long) flop_image->rows; y++) … … 1124 1124 destination_view=AcquireCacheView(destination); 1125 1125 #if defined(_OPENMP) && (_OPENMP >= 200203) 1126 #pragma omp parallel for s chedule(static,1) shared(status)1126 #pragma omp parallel for shared(status) 1127 1127 #endif 1128 1128 for (y=0; y < (long) rows; y++) … … 1439 1439 splice_view=AcquireCacheView(splice_image); 1440 1440 #if defined(_OPENMP) && (_OPENMP >= 200203) 1441 #pragma omp parallel for s chedule(static,1) shared(progress,status)1441 #pragma omp parallel for shared(progress,status) 1442 1442 #endif 1443 1443 for (y=0; y < (long) splice_geometry.y; y++) … … 1514 1514 } 1515 1515 #if defined(_OPENMP) && (_OPENMP >= 200203) 1516 #pragma omp parallel for s chedule(static,1) shared(progress,status)1516 #pragma omp parallel for shared(progress,status) 1517 1517 #endif 1518 1518 for (y=(long) (splice_geometry.y+splice_geometry.height); … … 1876 1876 transpose_view=AcquireCacheView(transpose_image); 1877 1877 #if defined(_OPENMP) && (_OPENMP >= 200203) 1878 #pragma omp parallel for s chedule(static,1) shared(progress,status)1878 #pragma omp parallel for shared(progress,status) 1879 1879 #endif 1880 1880 for (y=0; y < (long) image->rows; y++) … … 2004 2004 transverse_view=AcquireCacheView(transverse_image); 2005 2005 #if defined(_OPENMP) && (_OPENMP >= 200203) 2006 #pragma omp parallel for s chedule(static,1) shared(progress,status)2006 #pragma omp parallel for shared(progress,status) 2007 2007 #endif 2008 2008 for (y=0; y < (long) image->rows; y++) -
ImageMagick/trunk/wand/pixel-view.c
r108 r354 286 286 exception=destination->exception; 287 287 #if defined(_OPENMP) && (_OPENMP >= 200203) 288 #pragma omp parallel for s chedule(static,1) shared(progress,status)288 #pragma omp parallel for shared(progress,status) 289 289 #endif 290 290 for (y=source->region.y; y < (long) source->region.height; y++) … … 546 546 progress=0; 547 547 #if defined(_OPENMP) && (_OPENMP >= 200203) 548 #pragma omp parallel for s chedule(static,1) shared(progress,status)548 #pragma omp parallel for shared(progress,status) 549 549 #endif 550 550 for (y=source->region.y; y < (long) source->region.height; y++) … … 992 992 exception=destination->exception; 993 993 #if defined(_OPENMP) && (_OPENMP >= 200203) 994 #pragma omp parallel for s chedule(static,1) shared(progress,status)994 #pragma omp parallel for shared(progress,status) 995 995 #endif 996 996 for (y=destination->region.y; y < (long) destination->region.height; y++) … … 1126 1126 exception=destination->exception; 1127 1127 #if defined(_OPENMP) && (_OPENMP >= 200203) 1128 #pragma omp parallel for s chedule(static,1) shared(progress,status)1128 #pragma omp parallel for shared(progress,status) 1129 1129 #endif 1130 1130 for (y=source->region.y; y < (long) source->region.height; y++) … … 1284 1284 exception=source->exception; 1285 1285 #if defined(_OPENMP) && (_OPENMP >= 200203) 1286 #pragma omp parallel for s chedule(static,1) shared(progress,status)1286 #pragma omp parallel for shared(progress,status) 1287 1287 #endif 1288 1288 for (y=source->region.y; y < (long) source->region.height; y++)
