/external/ImageMagick/coders/ |
D | vid.c | 110 *next_image, in ReadVIDImage() local 169 next_image=ReadImage(read_info,exception); in ReadVIDImage() 171 if (next_image == (Image *) NULL) in ReadVIDImage() 173 label=InterpretImageProperties((ImageInfo *) image_info,next_image, in ReadVIDImage() 175 (void) SetImageProperty(next_image,"label",label,exception); in ReadVIDImage() 179 "geometry: %.20gx%.20g",(double) next_image->columns,(double) in ReadVIDImage() 180 next_image->rows); in ReadVIDImage() 181 SetGeometry(next_image,&geometry); in ReadVIDImage() 184 thumbnail_image=ThumbnailImage(next_image,geometry.width,geometry.height, in ReadVIDImage() 188 next_image=DestroyImage(next_image); in ReadVIDImage() [all …]
|
D | psd.c | 2254 const ImageInfo *image_info,Image *image,Image *next_image, in WritePackbitsLength() argument 2274 if (next_image->depth > 8) in WritePackbitsLength() 2275 next_image->depth=16; in WritePackbitsLength() 2276 packet_size=next_image->depth > 8UL ? 2UL : 1UL; in WritePackbitsLength() 2280 for (y=0; y < (ssize_t) next_image->rows; y++) in WritePackbitsLength() 2282 p=GetVirtualPixels(next_image,0,y,next_image->columns,1,exception); in WritePackbitsLength() 2285 length=ExportQuantumPixels(next_image,(CacheView *) NULL,quantum_info, in WritePackbitsLength() 2295 Image *image,Image *next_image,unsigned char *compact_pixels, in WriteOneChannel() argument 2323 (next_image->compression != RLECompression)) in WriteOneChannel() 2325 if (next_image->depth > 8) in WriteOneChannel() [all …]
|
D | pwp.c | 129 *next_image, in ReadPWPImage() local 221 next_image=ReadImage(read_info,exception); in ReadPWPImage() 222 if (next_image == (Image *) NULL) in ReadPWPImage() 224 (void) FormatLocaleString(next_image->filename,MagickPathExtent, in ReadPWPImage() 225 "slide_%02ld.sfw",(long) next_image->scene); in ReadPWPImage() 227 image=next_image; in ReadPWPImage() 234 next_image->previous=p; in ReadPWPImage() 235 next_image->scene=p->scene+1; in ReadPWPImage() 236 p->next=next_image; in ReadPWPImage() 239 if (next_image->scene >= (image_info->scene+image_info->number_scenes-1)) in ReadPWPImage()
|
D | xps.c | 120 *next_image; in ReadXPSImage() local 338 next_image=SyncNextImageInList(image); in ReadXPSImage() 339 if (next_image != (Image *) NULL) in ReadXPSImage() 340 image=next_image; in ReadXPSImage() 341 } while (next_image != (Image *) NULL); in ReadXPSImage()
|
D | png.c | 7261 *next_image, in ReadMNGImage() local 7271 next_image=CoalesceImages(image,exception); in ReadMNGImage() 7273 if (next_image == (Image *) NULL) in ReadMNGImage() 7277 image=next_image; in ReadMNGImage() 7279 for (next=image; next != (Image *) NULL; next=next_image) in ReadMNGImage() 7286 next_image=GetNextImageInList(next); in ReadMNGImage() 7288 if (next_image == (Image *) NULL) in ReadMNGImage() 7294 next_image->previous=GetPreviousImageInList(next); in ReadMNGImage() 7296 image=next_image; in ReadMNGImage() 7298 next->previous->next=next_image; in ReadMNGImage() [all …]
|
D | pcl.c | 166 *next_image; in ReadPCLImage() local 384 next_image=SyncNextImageInList(image); in ReadPCLImage() 385 if (next_image != (Image *) NULL) in ReadPCLImage() 386 image=next_image; in ReadPCLImage() 387 } while (next_image != (Image *) NULL); in ReadPCLImage()
|
D | msl.c | 3370 *next_image; in MSLStartElement() local 3376 next_image=ReadImage(msl_info->image_info[n],exception); in MSLStartElement() 3378 if (next_image == (Image *) NULL) in MSLStartElement() 3381 msl_info->image[n]=next_image; in MSLStartElement() 3393 next_image->previous=p; in MSLStartElement() 3394 p->next=next_image; in MSLStartElement()
|
/external/mesa3d/src/compiler/glsl/ |
D | link_uniforms.cpp | 444 this->next_image = 0; in start_shader() 599 uniform->opaque[shader_type].index = this->next_image; in handle_images() 608 const unsigned first = this->next_image; in handle_images() 613 this->next_image += MAX2(1, uniform->array_elements); in handle_images() 615 for (unsigned i = first; i < MIN2(next_image, MAX_IMAGE_UNIFORMS); i++) in handle_images() 828 unsigned next_image; member in parcel_out_uniform_storage
|
/external/ImageMagick/MagickCore/ |
D | display.c | 13608 *next_image, in XVisualDirectoryImage() local 13693 next_image=ReadImage(read_info,exception); in XVisualDirectoryImage() 13695 if (next_image != (Image *) NULL) in XVisualDirectoryImage() 13697 (void) DeleteImageProperty(next_image,"label"); in XVisualDirectoryImage() 13698 (void) SetImageProperty(next_image,"label",InterpretImageProperties( in XVisualDirectoryImage() 13699 read_info,next_image,DefaultTileLabel,exception),exception); in XVisualDirectoryImage() 13700 (void) ParseRegionGeometry(next_image,read_info->size,&geometry, in XVisualDirectoryImage() 13702 thumbnail_image=ThumbnailImage(next_image,geometry.width, in XVisualDirectoryImage() 13706 next_image=DestroyImage(next_image); in XVisualDirectoryImage() 13707 next_image=thumbnail_image; in XVisualDirectoryImage() [all …]
|