Home
last modified time | relevance | path

Searched refs:ConstrainColormapIndex (Results 1 – 17 of 17) sorted by relevance

/external/ImageMagick/coders/
Dcut.c143 index=ConstrainColormapIndex(image,(*p >> 6) & 0x3,exception); in InsertRow()
146 index=ConstrainColormapIndex(image,(*p >> 4) & 0x3,exception); in InsertRow()
149 index=ConstrainColormapIndex(image,(*p >> 2) & 0x3,exception); in InsertRow()
152 index=ConstrainColormapIndex(image,(*p) & 0x3,exception); in InsertRow()
159 index=ConstrainColormapIndex(image,(*p >> 6) & 0x3,exception); in InsertRow()
165 index=ConstrainColormapIndex(image,(*p >> 4) & 0x3,exception); in InsertRow()
171 index=ConstrainColormapIndex(image,(*p >> 2) & 0x3, in InsertRow()
190 index=ConstrainColormapIndex(image,(*p >> 4) & 0xf,exception); in InsertRow()
193 index=ConstrainColormapIndex(image,(*p) & 0xf,exception); in InsertRow()
200 index=ConstrainColormapIndex(image,(*p >> 4) & 0xf,exception); in InsertRow()
[all …]
Dwpg.c322 index=ConstrainColormapIndex(image,(*p >> 6) & 0x3,exception); in InsertRow()
326 index=ConstrainColormapIndex(image,(*p >> 4) & 0x3,exception); in InsertRow()
330 index=ConstrainColormapIndex(image,(*p >> 2) & 0x3,exception); in InsertRow()
334 index=ConstrainColormapIndex(image,(*p) & 0x3,exception); in InsertRow()
342 index=ConstrainColormapIndex(image,(*p >> 6) & 0x3,exception); in InsertRow()
348 index=ConstrainColormapIndex(image,(*p >> 4) & 0x3,exception); in InsertRow()
354 index=ConstrainColormapIndex(image,(*p >> 2) & 0x3, in InsertRow()
375 index=ConstrainColormapIndex(image,(*p >> 4) & 0x0f,exception); in InsertRow()
379 index=ConstrainColormapIndex(image,(*p) & 0x0f,exception); in InsertRow()
387 index=ConstrainColormapIndex(image,(*p >> 4) & 0x0f,exception); in InsertRow()
[all …]
Dpdb.c489 index=ConstrainColormapIndex(image,3UL-((*p >> 6) & 0x03),exception); in ReadPDBImage()
492 index=ConstrainColormapIndex(image,3UL-((*p >> 4) & 0x03),exception); in ReadPDBImage()
495 index=ConstrainColormapIndex(image,3UL-((*p >> 2) & 0x03),exception); in ReadPDBImage()
498 index=ConstrainColormapIndex(image,3UL-((*p) & 0x03),exception); in ReadPDBImage()
525 index=ConstrainColormapIndex(image,15UL-((*p >> 4) & 0x0f),exception); in ReadPDBImage()
528 index=ConstrainColormapIndex(image,15UL-((*p) & 0x0f),exception); in ReadPDBImage()
Dmap.c224 index=ConstrainColormapIndex(image,*p,exception); in ReadMAPImage()
228 index=ConstrainColormapIndex(image,((size_t) index << 8)+(*p), in ReadMAPImage()
Ddib.c731 index=ConstrainColormapIndex(image,(*p >> 4) & 0xf,exception); in ReadDIBImage()
734 index=ConstrainColormapIndex(image,*p & 0xf,exception); in ReadDIBImage()
741 index=ConstrainColormapIndex(image,(*p >> 4) & 0xf,exception); in ReadDIBImage()
775 index=ConstrainColormapIndex(image,*p,exception); in ReadDIBImage()
Dpalm.c369 index=ConstrainColormapIndex(image,255-i,exception); in ReadPALMImage()
381 index=ConstrainColormapIndex(image,255-i,exception); in ReadPALMImage()
526 ssize_t index=ConstrainColormapIndex(image,(ssize_t) (mask- in ReadPALMImage()
Dviff.c710 ConstrainColormapIndex(image,index,exception)].red,q); in ReadVIFFImage()
713 ConstrainColormapIndex(image,index,exception)].green,q); in ReadVIFFImage()
716 ConstrainColormapIndex(image,index,exception)].blue,q); in ReadVIFFImage()
Dtga.c458 pixel=image->colormap[(ssize_t) ConstrainColormapIndex(image, in ReadTGAImage()
494 index=(Quantum) ConstrainColormapIndex(image,((ssize_t) (k << 8))+ in ReadTGAImage()
Ddcm.c3946 index=(int) ConstrainColormapIndex(image,(size_t) index, in ReadDCMImage()
4060 index=(int) ConstrainColormapIndex(image,(size_t) index, in ReadDCMImage()
Dmiff.c202 pixel->index=ConstrainColormapIndex(image,((size_t) *p << 24) | in PushRunlengthPacket()
210 pixel->index=ConstrainColormapIndex(image,(*p << 8) | *(p+1), in PushRunlengthPacket()
217 pixel->index=ConstrainColormapIndex(image,*p,exception); in PushRunlengthPacket()
Dxwd.c544 index=ConstrainColormapIndex(image,XGetPixel(ximage,(int) x, in ReadXWDImage()
Dsun.c534 SetPixelIndex(image,ConstrainColormapIndex(image,*p,exception),q); in ReadSUNImage()
Djpeg.c1388 index=(Quantum) ConstrainColormapIndex(image,pixel,exception); in ReadJPEGImage()
1426 index=(Quantum) ConstrainColormapIndex(image,(ssize_t) GETJSAMPLE(*p), in ReadJPEGImage()
Dgif.c442 index=ConstrainColormapIndex(image,(ssize_t) c,exception); in DecodeImage()
Dpict.c1229 index=ConstrainColormapIndex(tile_image,*p,exception); in ReadPICTImage()
Dpsd.c778 ConstrainColormapIndex(image,GetPixelIndex(image,q),exception),q); in SetPSDPixel()
/external/ImageMagick/MagickCore/
Dcolormap-private.h29 static inline ssize_t ConstrainColormapIndex(Image *image,const ssize_t index, in ConstrainColormapIndex() function