Home
last modified time | relevance | path

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

/external/ImageMagick/MagickCore/
Dblob.c158 *custom_stream; member
227 *custom_stream; in AcquireCustomStreamInfo() local
230 custom_stream=(CustomStreamInfo *) AcquireCriticalMemory( in AcquireCustomStreamInfo()
231 sizeof(*custom_stream)); in AcquireCustomStreamInfo()
232 (void) memset(custom_stream,0,sizeof(*custom_stream)); in AcquireCustomStreamInfo()
233 custom_stream->signature=MagickCoreSignature; in AcquireCustomStreamInfo()
234 return(custom_stream); in AcquireCustomStreamInfo()
306 CustomStreamInfo *custom_stream) in AttachCustomStream() argument
309 assert(custom_stream != (CustomStreamInfo *) NULL); in AttachCustomStream()
310 assert(custom_stream->signature == MagickCoreSignature); in AttachCustomStream()
[all …]
Dimage.h491 *custom_stream; member
Dimage.c1002 clone_info->custom_stream=image_info->custom_stream; in CloneImageInfo()
3116 CustomStreamInfo *custom_stream) in SetImageInfoCustomStream() argument
3123 image_info->custom_stream=(CustomStreamInfo *) custom_stream; in SetImageInfoCustomStream()
/external/ImageMagick/coders/
Dtiff.c1152 *custom_stream; in TIFFAcquireCustomStreamForReading() local
1154 custom_stream=AcquireCustomStreamInfo(exception); in TIFFAcquireCustomStreamForReading()
1155 if (custom_stream == (CustomStreamInfo *) NULL) in TIFFAcquireCustomStreamForReading()
1156 return(custom_stream); in TIFFAcquireCustomStreamForReading()
1157 SetCustomStreamData(custom_stream,(void *) profile); in TIFFAcquireCustomStreamForReading()
1158 SetCustomStreamReader(custom_stream,TIFFReadCustomStream); in TIFFAcquireCustomStreamForReading()
1159 SetCustomStreamSeeker(custom_stream,TIFFSeekCustomStream); in TIFFAcquireCustomStreamForReading()
1160 SetCustomStreamTeller(custom_stream,TIFFTellCustomStream); in TIFFAcquireCustomStreamForReading()
1161 return(custom_stream); in TIFFAcquireCustomStreamForReading()
1174 *custom_stream; in TIFFReadPhotoshopLayers() local
[all …]