Searched refs:compressed (Results 1 - 25 of 79) sorted by relevance

1234

/macosx-10.10.1/libarchive-30/libarchive/libarchive/
H A Darchive_write_set_compression_gzip.c62 unsigned char *compressed; member in struct:private_data
161 state->compressed = (unsigned char *)malloc(state->compressed_buffer_size);
164 if (state->compressed == NULL) {
171 state->stream.next_out = state->compressed;
176 state->compressed[0] = 0x1f; /* GZip signature bytes */
177 state->compressed[1] = 0x8b;
178 state->compressed[2] = 0x08; /* "Deflate" compression */
179 state->compressed[3] = 0; /* No options */
180 state->compressed[4] = (t)&0xff; /* Timestamp */
181 state->compressed[
[all...]
H A Darchive_write_set_compression_xz.c73 unsigned char *compressed; member in struct:private_data
138 state->stream.next_out = state->compressed;
193 state->compressed = (unsigned char *)malloc(state->compressed_buffer_size);
194 if (state->compressed == NULL) {
206 free(state->compressed);
218 free(state->compressed);
248 * Write data to the compressed stream.
322 /* Optionally, pad the final compressed block. */
323 block_length = state->stream.next_out - state->compressed;
344 state->compressed, block_lengt
[all...]
H A Darchive_write_set_compression_bzip2.c62 char *compressed; member in struct:private_data
137 state->compressed = (char *)malloc(state->compressed_buffer_size);
139 if (state->compressed == NULL) {
146 state->stream.next_out = state->compressed;
161 free(state->compressed);
214 * Write data to the compressed stream.
290 /* Optionally, pad the final compressed block. */
291 block_length = state->stream.next_out - state->compressed;
312 state->compressed, block_length);
333 free(state->compressed);
[all...]
H A Darchive_write_set_compression_compress.c106 unsigned char *compressed; member in struct:private_data
164 state->compressed = malloc(state->compressed_buffer_size);
166 if (state->compressed == NULL) {
190 state->compressed[0] = 0x1f; /* Compress */
191 state->compressed[1] = 0x9d;
192 state->compressed[2] = 0x90; /* Block mode, 16bit max */
223 state->compressed[state->compressed_offset++] = c;
229 state->compressed, state->compressed_buffer_size);
323 * Write data to the compressed stream.
460 /* Optionally, pad the final compressed bloc
[all...]
/macosx-10.10.1/file_cmds-242/gzip/
H A Dgzexe26 # A simple string to recognize already compressed files
27 magic="# compressed by gzexe"
56 # Test if a file is compressed by checking the magic line
57 compressed () {
163 if ! compressed "$1"; then
164 echo "$prog: $1 is not compressed"
170 if compressed "$1"; then
171 echo "$prog: $1 is already compressed"
/macosx-10.10.1/Heimdal-398.1.2/lib/roken/
H A Dinet_ntop.c86 int compressed = 0; local
95 if (compressed == 0 &&
101 compressed = 1;
/macosx-10.10.1/cups-408/cups/cups/
H A Dfile-private.h98 compressed, /* Compression used? */ member in struct:_cups_file_s
H A Dfile.c347 if (fp->compressed && status >= 0)
360 * Flush any remaining compressed data...
446 * 'cupsFileCompression()' - Return whether a file is compressed.
454 return (fp ? fp->compressed : CUPS_FILE_NONE);
612 if (fp->compressed)
1204 * Open a compressed stream, so write the standard gzip file
1235 fp->compressed = 1;
1379 if (fp->compressed)
1558 if (fp->compressed)
1697 if (fp->compressed)
[all...]
/macosx-10.10.1/tcl-105/tcl/tcl/tools/
H A Dmkdepend.tcl239 array set compressed [list]
242 lappend compressed([lindex $pair 0]) [lindex $pair 1]
246 foreach n [array names compressed] {
247 lappend result [list $n [lsort $compressed($n)]]
/macosx-10.10.1/emacs-93/emacs/lisp/gnus/
H A Dlegacy-gnus-agent.el36 ;; history file and to support a compressed alist.
38 (defvar gnus-agent-compressed-agentview-search-only nil)
40 (defun gnus-agent-convert-to-compressed-agentview (converting-to)
42 converted to the compressed format."
64 (defun gnus-agent-convert-to-compressed-agentview-prompt ()
66 (let ((gnus-agent-compressed-agentview-search-only t))
67 (gnus-agent-convert-to-compressed-agentview nil))))
69 (gnus-convert-mark-converter-prompt 'gnus-agent-convert-to-compressed-agentview 'gnus-agent-convert-to-compressed-agentview-prompt)
109 (when gnus-agent-compressed
[all...]
/macosx-10.10.1/CPANInternal-159.1/SOAP-Lite-1.11/lib/SOAP/Transport/
H A DHTTP.pm170 my $compressed =
212 # doing it before breaks the compressed content (#74577)
213 $envelope = Compress::Zlib::memGzip($envelope) if $compressed;
244 if $compressed;
284 elsif ( $self->http_response->code == 415 && $compressed ) {
396 my $compressed =
399 $compressed && eval { require Compress::Zlib };
405 if $compressed && !$self->options->{is_compress}
406 || !$compressed
434 $compressed
[all...]
/macosx-10.10.1/curl-83.1.2/curl/src/
H A Dmkhelp.pl97 # if compressed
145 /* This mumbo-jumbo is the huge help text compressed with gzip.
147 to $gzipped bytes. You can disable the use of compressed help
179 /* Decompress and send to stdout a gzip-compressed buffer */
/macosx-10.10.1/apache-793/httpd/docs/conf/extra/
H A Dhttpd-autoindex.conf.in34 AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
45 AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
75 #AddDescription "GZIP compressed document" .gz
77 #AddDescription "GZIP compressed tar archive" .tgz
/macosx-10.10.1/vim-55/runtime/autoload/
H A Dgzip.vim1 " Vim autoload file for editing compressed files.
23 " the flags in the compressed file.
44 " After reading compressed file: Uncompress text in buffer with "cmd"
88 " uncompress didn't work! Keep the compressed file then.
93 " delete the compressed lines; remember the line number
147 " After writing compressed file: Compress written file with "cmd"
165 " Before appending to compressed file: Uncompress file with "cmd"
193 " find a file name for the file to be compressed. Use "name" without an
/macosx-10.10.1/vim-55/runtime/plugin/
H A Dgzip.vim1 " Vim plugin for editing compressed files.
8 " - some autocommands are already taking care of compressed files
/macosx-10.10.1/tcl-105/tcl_ext/xotcl/xotcl/library/lib/
H A Dhtmllib.xotcl58 # the compressed parameter means that minimal HTML page are created
62 {compressed 0}
99 my instvar document compressed
102 if {$compressed == "0"} {
176 my instvar document indentLevel compressed
178 if {$compressed == "0"} {
/macosx-10.10.1/curl-83.1.2/curl/packages/vms/
H A Dpcsi_product_gnv_curl.com154 $! VAX can not do a compressed kit.
155 $! ZIP -9 "-V" does a better job, so no reason to normally build a compressed
162 $ product copy /options=(novalidate, noconfirm) /format=compressed -
/macosx-10.10.1/CPAN-56/
H A DgetCPAN.pl110 if($status != 0 || `file $tarball` !~ /gzip compressed data/) {
/macosx-10.10.1/ruby-106/ruby/lib/rubygems/commands/
H A Dgenerate_index_command.rb58 The .rz extension files are compressed with the inflate algorithm.
/macosx-10.10.1/cups-408/cups/filter/
H A Draster.c47 int compressed, /* Non-zero if data is compressed */ member in struct:_cups_raster_s
105 * be used - compressed and PWG output is generally 25-50% smaller but adds a
131 * be used - compressed and PWG output is generally 25-50% smaller but adds a
189 r->compressed = 1;
212 r->compressed = 1;
217 r->compressed = 1;
326 if (!r->compressed)
355 * Read compressed data...
743 if (!r->compressed)
[all...]
/macosx-10.10.1/zlib-55/zlib/contrib/delphi/
H A DZLib.pas59 stores the compressed data to another stream.
73 data has been compressed: (1 - (CompressedBytes / UncompressedBytes)) * 100
74 If raw data size = 100 and compressed data size = 25, the CompressionRate
112 compressed data is exhausted and the next block is read from the input stream.
129 In: InBuf = ptr to compressed data
138 In: InBuf = ptr to compressed data
147 In: InBuf = ptr to compressed data
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/
H A Ddemo.tcl1311 show_image sgi "true color compressed" {
1632 show_image sgi "true color compressed with alpha" {
2037 show_image sun "true color compressed" {
2149 show_image sun "indexed compressed" {
2199 show_image tga "true color compressed" {
2509 show_image tga "true color compressed with alpha" {
2972 show_image tiff "packbits compressed" {
2998 show_image tiff "pixarlog compressed" {
3023 show_image tiff "logluv compressed" {
3030 show_image tiff "jpeg compressed" {
[all...]
/macosx-10.10.1/ntfs-84/kext/
H A Dntfs_page.c84 * For non-resident, non-compressed attributes we use cluster_pagein_ext()
87 * For resident attributes and non-resident, compressed attributes we read the
91 * record, whilst for non-resident, compressed attributes, we get the raw inode
171 * Only $DATA attributes can be encrypted/compressed. Index root can
172 * have the flags set but this means to create compressed/encrypted
173 * files, not that the attribute is compressed/encrypted. Note we need
193 goto compressed;
215 compressed:
217 * The attribute is resident and/or compressed.
270 * against concurrent writers as the compressed dat
[all...]
/macosx-10.10.1/top-100.1.2/
H A Dtop.c165 case STATISTIC_COMPRESSED: return COMP(a_a->compressed, a_b->compressed);
/macosx-10.10.1/dyld-353.2.1/src/
H A DImageLoaderMachO.cpp121 // determine if this mach-o file has classic or compressed LINKEDIT and number of segments it has
122 void ImageLoaderMachO::sniffLoadCommands(const macho_header* mh, const char* path, bool* compressed, argument
126 *compressed = false;
154 *compressed = true;
236 bool compressed; local
240 sniffLoadCommands(mh, path, &compressed, &segCount, &libCount, context, &codeSigCmd);
242 if ( compressed )
268 bool compressed; local
272 sniffLoadCommands((const macho_header*)fileData, path, &compressed, &segCount, &libCount, context, &codeSigCmd);
274 if ( compressed )
288 bool compressed; local
307 bool compressed; local
[all...]

Completed in 276 milliseconds

1234