Searched refs:compression (Results 1 - 25 of 34) sorted by relevance

12

/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Dlbxdata.h44 int compression; member in struct:_fonttaginfo
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Dlbxdata.h44 int compression; member in struct:_fonttaginfo
/vbox/src/libs/libxml2-2.6.31/include/libxml/
H A Dc14n.h79 int compression);
H A DxmlIO.h228 int compression);
274 int compression);
330 int compression );
H A Dxmlwriter.h36 xmlNewTextWriterFilename(const char *uri, int compression);
38 xmlNewTextWriterMemory(xmlBufferPtr buf, int compression);
40 xmlNewTextWriterPushParser(xmlParserCtxtPtr ctxt, int compression);
42 xmlNewTextWriterDoc(xmlDocPtr * doc, int compression);
45 int compression);
H A Dglobals.h32 typedef xmlOutputBufferPtr (*xmlOutputBufferCreateFilenameFunc) (const char *URI, xmlCharEncodingHandlerPtr encoder, int compression);
/vbox/src/libs/libpng-1.2.8/contrib/gregbook/
H A Dwritepng.c96 /* set the compression levels--in general, always want to leave filtering
100 * compression (NOT the default); and remaining compression flags should
158 text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
164 text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
170 text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
176 text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
182 text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
188 text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
/vbox/src/libs/libpng-1.2.8/
H A Dpngwrite.c212 info_ptr->text[i].compression);
214 if (info_ptr->text[i].compression > 0)
219 info_ptr->text[i].compression,
228 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
231 else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_zTXt)
237 info_ptr->text[i].compression);
242 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_zTXt_WR;
244 else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_NONE)
255 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
313 info_ptr->text[i].compression);
[all...]
H A Dpngset.c293 png_error(png_ptr, "Unknown compression method in IHDR");
679 * does not have to change if we introduce multiple compression types */
761 if(text_ptr[i].compression <= 0)
790 if(text_ptr[i].compression > 0)
791 textp->compression = PNG_ITXT_COMPRESSION_NONE;
794 textp->compression = PNG_TEXT_COMPRESSION_NONE;
799 textp->compression = text_ptr[i].compression;
814 if (text_ptr[i].compression > 0)
839 if(textp->compression >
[all...]
H A Dexample.c661 text_ptr[0].compression = PNG_TEXT_COMPRESSION_NONE;
664 text_ptr[1].compression = PNG_TEXT_COMPRESSION_NONE;
667 text_ptr[2].compression = PNG_TEXT_COMPRESSION_zTXt;
693 /* Once we write out the header, the compression type on the text
H A Dpngwutil.c159 png_charp text, png_size_t text_len, int compression,
169 if (compression == PNG_TEXT_COMPRESSION_NONE)
176 if (compression >= PNG_TEXT_COMPRESSION_LAST)
180 sprintf(msg, "Unknown compression type %d", compression);
183 png_warning(png_ptr, "Unknown compression type");
202 /* set up the compression buffers */
208 /* this is the same compression loop as in png_write_row() */
263 /* finish the compression */
336 /* handle the no-compression cas
158 png_text_compress(png_structp png_ptr, png_charp text, png_size_t text_len, int compression, compression_state *comp) argument
1334 png_write_zTXt(png_structp png_ptr, png_charp key, png_charp text, png_size_t text_len, int compression) argument
1387 png_write_iTXt(png_structp png_ptr, int compression, png_charp key, png_charp lang, png_charp lang_key, png_charp text) argument
[all...]
H A Dpngpread.c749 png_error(png_ptr, "Extra compression data");
1126 text_ptr->compression = PNG_TEXT_COMPRESSION_NONE;
1226 if (*text != PNG_TEXT_COMPRESSION_zTXt) /* check compression byte */
1320 text_ptr->compression = PNG_TEXT_COMPRESSION_zTXt;
1433 text_ptr->compression = comp_flag + 2;
H A Dpng.h358 /* include the compression library's header */
544 int compression; /* compression value: member in struct:png_text_struct
565 /* Supported compression types for text in PNG files (tEXt, and zTXt).
916 /* This is for compression type. PNG 1.0-1.2 only define the single type. */
1110 int zlib_level; /* holds zlib compression level */
1111 int zlib_method; /* holds zlib compression method */
1112 int zlib_window_bits; /* holds zlib compression window bits */
1113 int zlib_mem_level; /* holds zlib compression memory level */
1114 int zlib_strategy; /* holds zlib compression strateg
1138 png_byte compression; /* file compression type (always 0) */ member in struct:png_struct_def
[all...]
H A Dpngrutil.c320 sprintf(umsg, "Unknown zTXt compression type %d", comp_type);
323 png_warning(png_ptr, "Unknown zTXt compression type");
1038 /* there should be at least one zero (the compression type byte)
1051 png_warning(png_ptr, "Ignoring nonzero compression type in iCCP chunk");
1912 text_ptr->compression = PNG_TEXT_COMPRESSION_NONE;
1991 png_warning(png_ptr, "Unknown compression type in zTXt chunk");
2009 text_ptr->compression = comp_type;
2080 /* iTXt must have a language tag (possibly empty), two compression bytes,
2119 text_ptr->compression = (int)comp_flag + 1;
2929 png_warning(png_ptr, "Extra compression dat
[all...]
/vbox/src/libs/libxml2-2.6.31/
H A DxmlIO.c1163 * @compression: the compression factor (0 - 9 included)
1171 xmlGzfileOpenW (const char *filename, int compression) { argument
1176 snprintf(mode, sizeof(mode), "wb%d", compression);
1271 int compression; member in struct:xmlIOHTTPWriteCtxt_
1370 *@compression: Compression value to use
1376 * the compression is plagiarized from the zlib source files.
1379 xmlCreateZMemBuff( int compression ) {
1385 if ( ( compression < 1 ) || ( compression >
1684 xmlIOHTTPOpenW(const char *post_uri, int compression) argument
[all...]
H A Dxmlwriter.c231 * @compression: compress the output?
238 xmlNewTextWriterFilename(const char *uri, int compression) argument
243 out = xmlOutputBufferCreateFilename(uri, NULL, compression);
266 * @compression: compress the output?
269 * TODO: handle compression
274 xmlNewTextWriterMemory(xmlBufferPtr buf, int compression ATTRIBUTE_UNUSED)
279 /*::todo handle compression */
302 * @compression: compress the output?
307 * TODO: handle compression
313 int compression ATTRIBUTE_UNUSE
358 xmlNewTextWriterDoc(xmlDocPtr * doc, int compression) argument
419 xmlNewTextWriterTree(xmlDocPtr doc, xmlNodePtr node, int compression) argument
[all...]
H A Dc14n.c1754 * @compression: the compression level (zlib requred):
1757 * >0 - compression level
1768 int with_comments, const char *filename, int compression)
1778 if (compression < 0)
1779 compression = xmlGetCompressMode();
1785 buf = xmlOutputBufferCreateFilename(filename, NULL, compression);
1766 xmlC14NDocSave(xmlDocPtr doc, xmlNodeSetPtr nodes, int exclusive, xmlChar ** inclusive_ns_prefixes, int with_comments, const char *filename, int compression) argument
H A Dxmlsave.c1531 int compression = 0; /* TODO handle compression option */ local
1536 compression);
2338 if (cur->compression < 0) cur->compression = xmlGetCompressMode();
2343 buf = xmlOutputBufferCreateFilename(filename, handler, cur->compression);
2381 * Dump an XML document to a file. Will use compression if
2399 * Dump an XML document to a file. Will use compression if
H A DHTMLtree.c1124 buf = xmlOutputBufferCreateFilename(filename, handler, cur->compression);
/vbox/src/libs/zlib-1.2.6/contrib/pascal/
H A Dexample.pas1 (* example.c -- usage example of the zlib compression library
29 * stresses the compression code better, sorry...
185 var c_stream: z_stream; (* compression stream *)
269 * Test deflate with large buffers and dynamic change of compression level
274 var c_stream: z_stream; (* compression stream *)
297 (* Feed in already compressed data and switch to no compression: *)
369 var c_stream: z_stream; (* compression stream *)
451 var c_stream: z_stream; (* compression stream *)
H A Dzlibpas.pas1 (* zlibpas -- Pascal interface to the zlib data compression library
/vbox/src/libs/zlib-1.2.6/as400/
H A Dzlib.inc1 * ZLIB.INC - Interface to the general purpose compression library
279 D deflateInit PR 10I 0 extproc('deflateInit_') Init. compression
289 D deflateEnd PR 10I 0 extproc('deflateEnd') Termin. compression
308 D deflateInit2 PR 10I 0 extproc('deflateInit2_') Init. compression
/vbox/src/libs/zlib-1.2.6/contrib/delphi/
H A DZLib.pas79 indicator when you are writing a large chunk of data to the compression
/vbox/src/VBox/Additions/x11/x11include/4.3/include/extensions/
H A Dlbxstr.h399 CARD8 compression; member in struct:__anon2739
/vbox/src/VBox/Additions/x11/x11include/xextproto-7.1.1/X11/extensions/
H A Dlbxproto.h446 CARD8 compression; member in struct:__anon3918

Completed in 214 milliseconds

12