Home
last modified time | relevance | path

Searched refs:ascii85 (Results 1 – 5 of 5) sorted by relevance

/external/ImageMagick/MagickCore/
Dcompress.c269 if (image->ascii85 == (Ascii85Info *) NULL) in Ascii85Initialize()
270 image->ascii85=(Ascii85Info *) AcquireMagickMemory(sizeof(*image->ascii85)); in Ascii85Initialize()
271 if (image->ascii85 == (Ascii85Info *) NULL) in Ascii85Initialize()
273 (void) memset(image->ascii85,0,sizeof(*image->ascii85)); in Ascii85Initialize()
274 image->ascii85->line_break=(ssize_t) MaxLineExtent << 1; in Ascii85Initialize()
275 image->ascii85->offset=0; in Ascii85Initialize()
287 assert(image->ascii85 != (Ascii85Info *) NULL); in Ascii85Flush()
288 if (image->ascii85->offset > 0) in Ascii85Flush()
290 image->ascii85->buffer[image->ascii85->offset]='\0'; in Ascii85Flush()
291 image->ascii85->buffer[image->ascii85->offset+1]='\0'; in Ascii85Flush()
[all …]
Dimage.h309 *ascii85; member
Dimage.c840 if (image->ascii85 != (void *) NULL) in CloneImage()
1215 if (image->ascii85 != (Ascii85Info *) NULL) in DestroyImage()
1216 image->ascii85=(Ascii85Info *) RelinquishMagickMemory(image->ascii85); in DestroyImage()
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst4330 Delay the initialization of encoding and decoding tables for base32, ascii85
/external/python/cpython3/Misc/
DHISTORY2029 base32, ascii85 and base85 codecs in the base64 module, and delay the