Home
last modified time | relevance | path

Searched refs:pixel_wands (Results 1 – 3 of 3) sorted by relevance

/external/ImageMagick/MagickWand/
Dwand-view.c84 ***pixel_wands; member
143 clone_view->pixel_wands[i]=ClonePixelWands((const PixelWand **) in CloneWandView()
144 wand_view->pixel_wands[i],wand_view->extent.width); in CloneWandView()
175 static PixelWand ***DestroyPixelsThreadSet(PixelWand ***pixel_wands, in DestroyPixelsThreadSet() argument
181 assert(pixel_wands != (PixelWand ***) NULL); in DestroyPixelsThreadSet()
183 if (pixel_wands[i] != (PixelWand **) NULL) in DestroyPixelsThreadSet()
184 pixel_wands[i]=DestroyPixelWands(pixel_wands[i],number_wands); in DestroyPixelsThreadSet()
185 pixel_wands=(PixelWand ***) RelinquishMagickMemory(pixel_wands); in DestroyPixelsThreadSet()
186 return(pixel_wands); in DestroyPixelsThreadSet()
193 wand_view->pixel_wands=DestroyPixelsThreadSet(wand_view->pixel_wands, in DestroyWandView()
[all …]
Dpixel-iterator.c88 **pixel_wands; member
125 iterator->pixel_wands=DestroyPixelWands(iterator->pixel_wands, in ClearPixelIterator()
128 iterator->pixel_wands=NewPixelWands(iterator->region.width); in ClearPixelIterator()
177 clone_iterator->pixel_wands=ClonePixelWands((const PixelWand **) in ClonePixelIterator()
178 iterator->pixel_wands,iterator->region.width); in ClonePixelIterator()
216 iterator->pixel_wands=DestroyPixelWands(iterator->pixel_wands, in DestroyPixelIterator()
329 iterator->pixel_wands=NewPixelWands(iterator->region.width); in NewPixelIterator()
445 iterator->pixel_wands=NewPixelWands(iterator->region.width); in NewPixelRegionIterator()
503 iterator->pixel_wands[x]); in PixelGetCurrentIteratorRow()
507 return(iterator->pixel_wands); in PixelGetCurrentIteratorRow()
[all …]
Dmagick-image.c5331 **pixel_wands; in MagickGetImageHistogram() local
5349 pixel_wands=NewPixelWands(*number_colors); in MagickGetImageHistogram()
5352 PixelSetPixelColor(pixel_wands[i],&histogram[i]); in MagickGetImageHistogram()
5353 PixelSetColorCount(pixel_wands[i],(size_t) histogram[i].count); in MagickGetImageHistogram()
5356 return(pixel_wands); in MagickGetImageHistogram()