Home
last modified time | relevance | path

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

/external/ImageMagick/MagickCore/
Dblob.c263 MagickExport void AttachBlob(BlobInfo *blob_info,const void *blob, in AttachBlob() argument
266 assert(blob_info != (BlobInfo *) NULL); in AttachBlob()
267 if (blob_info->debug != MagickFalse) in AttachBlob()
269 blob_info->length=length; in AttachBlob()
270 blob_info->extent=length; in AttachBlob()
271 blob_info->quantum=(size_t) MagickMaxBlobExtent; in AttachBlob()
272 blob_info->offset=0; in AttachBlob()
273 blob_info->type=BlobStream; in AttachBlob()
274 blob_info->file_info.file=(FILE *) NULL; in AttachBlob()
275 blob_info->data=(unsigned char *) blob; in AttachBlob()
[all …]
/external/ImageMagick/coders/
Dpattern.c958 *blob_info; in ReadPATTERNImage() local
966 blob_info=CloneImageInfo(image_info); in ReadPATTERNImage()
971 if (LocaleCompare(blob_info->filename,PatternImageList[i].name) == 0) in ReadPATTERNImage()
973 (void) CopyMagickString(blob_info->magick,PatternImageList[i].magick, in ReadPATTERNImage()
981 blob_info=DestroyImageInfo(blob_info); in ReadPATTERNImage()
984 image=BlobToImage(blob_info,blob,extent,exception); in ReadPATTERNImage()
998 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.c640 *blob_info; in WritePICONImage() local
694 blob_info=CloneImageInfo(image_info); in WritePICONImage()
695 (void) AcquireUniqueFilename(blob_info->filename); in WritePICONImage()
698 affinity_image=BlobToImage(blob_info,Graymap,GraymapExtent,exception); in WritePICONImage()
700 affinity_image=BlobToImage(blob_info,Colormap,ColormapExtent,exception); in WritePICONImage()
701 (void) RelinquishUniqueFileResource(blob_info->filename); in WritePICONImage()
702 blob_info=DestroyImageInfo(blob_info); in WritePICONImage()