Home
last modified time | relevance | path

Searched refs:blob_info (Results 1 – 4 of 4) sorted by relevance

/external/ImageMagick/MagickCore/
Dblob.c264 MagickExport void AttachBlob(BlobInfo *blob_info,const void *blob, in AttachBlob() argument
267 assert(blob_info != (BlobInfo *) NULL); in AttachBlob()
268 if (blob_info->debug != MagickFalse) in AttachBlob()
270 blob_info->length=length; in AttachBlob()
271 blob_info->extent=length; in AttachBlob()
272 blob_info->quantum=(size_t) MagickMaxBlobExtent; in AttachBlob()
273 blob_info->offset=0; in AttachBlob()
274 blob_info->type=BlobStream; in AttachBlob()
275 blob_info->file_info.file=(FILE *) NULL; in AttachBlob()
276 blob_info->data=(unsigned char *) blob; in AttachBlob()
[all …]
/external/ImageMagick/coders/
Dpattern.c950 *blob_info; in ReadPATTERNImage() local
958 blob_info=CloneImageInfo(image_info); in ReadPATTERNImage()
963 if (LocaleCompare(blob_info->filename,PatternImageList[i].name) == 0) in ReadPATTERNImage()
965 (void) CopyMagickString(blob_info->magick,PatternImageList[i].magick, in ReadPATTERNImage()
973 blob_info=DestroyImageInfo(blob_info); in ReadPATTERNImage()
976 image=BlobToImage(blob_info,blob,extent,exception); in ReadPATTERNImage()
990 blob_info=DestroyImageInfo(blob_info); in ReadPATTERNImage()
Dmagick.c13045 *blob_info; in ReadMAGICKImage() local
13053 blob_info=CloneImageInfo(image_info); in ReadMAGICKImage()
13055 (void) CopyMagickString(blob_info->filename,image_info->magick, in ReadMAGICKImage()
13061 if (LocaleCompare(blob_info->filename,MagickImageList[i].name) == 0) in ReadMAGICKImage()
13063 (void) CopyMagickString(blob_info->magick,MagickImageList[i].magick, in ReadMAGICKImage()
13071 blob_info=DestroyImageInfo(blob_info); in ReadMAGICKImage()
13074 image=BlobToImage(blob_info,blob,extent,exception); in ReadMAGICKImage()
13075 blob_info=DestroyImageInfo(blob_info); in ReadMAGICKImage()
Dxpm.c673 *blob_info; in WritePICONImage() local
727 blob_info=CloneImageInfo(image_info); in WritePICONImage()
728 (void) AcquireUniqueFilename(blob_info->filename); in WritePICONImage()
731 affinity_image=BlobToImage(blob_info,Graymap,GraymapExtent,exception); in WritePICONImage()
733 affinity_image=BlobToImage(blob_info,Colormap,ColormapExtent,exception); in WritePICONImage()
734 (void) RelinquishUniqueFileResource(blob_info->filename); in WritePICONImage()
735 blob_info=DestroyImageInfo(blob_info); in WritePICONImage()