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

123456

/external/chromium_org/v8/tools/testrunner/server/
H A Dlocal_handler.py33 from . import compression namespace
41 compression.Send(query, sock)
42 compression.Send(constants.END_OF_STREAM, sock)
43 rec = compression.Receiver(sock)
56 rec = compression.Receiver(self.request)
65 compression.Send([action, response], self.request)
71 compression.Send([action, self.server.daemon.pubkey_fingerprint],
75 compression.Send([action, self._GetStatusMessage()], self.request)
79 compression.Send([action, fingerprint], self.request)
94 compression
[all...]
H A Dstatus_handler.py32 from . import compression namespace
42 compression.Send(query, sock)
43 compression.Send(constants.END_OF_STREAM, sock)
44 rec = compression.Receiver(sock)
79 rec = compression.Receiver(self.request)
86 compression.Send([action, response], self.request)
90 compression.Send([action, response], self.request)
102 compression.Send([action, response], self.request)
105 compression.Send(constants.END_OF_STREAM, self.request)
H A Dwork_handler.py35 from . import compression namespace
45 rec = compression.Receiver(self.request)
79 compression.Send([[-1, error_message]], self.request)
80 compression.Send(constants.END_OF_STREAM, self.request)
/external/libpng/scripts/
H A Ddef.dfn20 PNG_DFN "OS2 DESCRIPTION "PNG image compression library""
/external/chromium_org/third_party/leveldatabase/src/util/
H A Doptions.cc24 compression(kSnappyCompression),
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dvoe_file_impl.h69 CodecInst* compression = NULL,
74 CodecInst* compression = NULL);
81 CodecInst* compression = NULL,
85 CodecInst* compression = NULL);
H A Dvoe_file_impl.cc378 int channel, const char* fileNameUTF8, CodecInst* compression,
383 "compression, maxSizeBytes=%d)",
395 (fileNameUTF8, compression);
408 return channelPtr->StartRecordingPlayout(fileNameUTF8, compression);
413 int channel, OutStream* stream, CodecInst* compression)
416 "StartRecordingPlayout(channel=%d, stream, compression)",
426 StartRecordingPlayout(stream, compression);
438 return channelPtr->StartRecordingPlayout(stream, compression);
470 const char* fileNameUTF8, CodecInst* compression, int maxSizeBytes)
473 "StartRecordingMicrophone(fileNameUTF8=%s, compression, "
377 StartRecordingPlayout( int channel, const char* fileNameUTF8, CodecInst* compression, int maxSizeBytes) argument
412 StartRecordingPlayout( int channel, OutStream* stream, CodecInst* compression) argument
469 StartRecordingMicrophone( const char* fileNameUTF8, CodecInst* compression, int maxSizeBytes) argument
514 StartRecordingMicrophone( OutStream* stream, CodecInst* compression) argument
[all...]
/external/smack/src/org/jivesoftware/smack/compression/
H A DXMPPInputOutputStream.java16 package org.jivesoftware.smack.compression;
H A DJzlibInputOutputStream.java16 package org.jivesoftware.smack.compression;
25 * This class provides XMPP "zlib" compression with the help of JZLib. Note that jzlib-1.0.7 must be used (i.e. in the
H A DJava7ZlibInputOutputStream.java16 package org.jivesoftware.smack.compression;
29 * This class provides XMPP "zlib" compression with the help of the Deflater class of the Java API. Note that the method
/external/chromium_org/third_party/webrtc/voice_engine/include/
H A Dvoe_file.h115 CodecInst* compression = NULL,
123 CodecInst* compression = NULL) = 0;
127 CodecInst* compression = NULL,
132 CodecInst* compression = NULL) = 0;
154 CodecInst* compression) { return -1; }
157 CodecInst* compression) { return -1; }
152 ConvertPCMToCompressed(const char* fileNameInUTF8, const char* fileNameOutUTF8, CodecInst* compression) argument
155 ConvertPCMToCompressed(InStream* streamIn, OutStream* streamOut, CodecInst* compression) argument
/external/chromium_org/v8/tools/testrunner/network/
H A Dnetwork_execution.py40 from ..server import compression namespace
97 compression.Send([constants.REQUEST_PUBKEY_FINGERPRINT], self.local_socket)
101 self.local_receiver = compression.Receiver(self.local_socket)
163 compression.Send(constants.END_OF_STREAM, self.local_socket)
183 compression.Send(data, sock)
184 compression.Send(constants.END_OF_STREAM, sock)
185 rec = compression.Receiver(sock)
204 compression.Send(
227 compression.Send([constants.UNRESPONSIVE_PEER, peer.address],
254 compression
[all...]
H A Dendpoint.py39 from ..server import compression namespace
80 compression.Send(result, self.sock)
121 compression.Send([[-1, message]], sock)
/external/chromium_org/third_party/leveldatabase/src/include/leveldb/
H A Doptions.h22 // compression method (if any) is used to compress a block.
103 // compression is enabled. This parameter can be changed dynamically.
115 // Compress blocks using the specified compression algorithm. This
119 // compression.
122 // ~200-500MB/s compression
129 CompressionType compression; member in struct:leveldb::Options
/external/chromium_org/third_party/libxml/src/include/libxml/
H A Dc14n.h90 int compression);
H A DxmlIO.h228 int compression);
274 int compression);
330 int compression );
/external/libxml2/include/libxml/
H A Dc14n.h90 int compression);
/external/smack/src/com/kenai/jbosh/
H A DBOSHClientConfig.java73 * Flag indicating that compression should be attempted, if possible.
267 * Set whether or not compression of the underlying data stream
268 * should be attempted. By default, compression is disabled.
270 * @param enabled set to {@code true} if compression should be
271 * attempted when possible, {@code false} to disable compression
301 // Default compression
302 boolean compression;
304 compression = false;
306 compression = bCompression.booleanValue();
318 compression);
[all...]
/external/libpng/contrib/gregbook/
H A Dwritepng.c122 /* set the compression levels--in general, always want to leave filtering
126 * compression (NOT the default); and remaining compression flags should
184 text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
190 text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
196 text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
202 text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
208 text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
214 text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
/external/chromium_org/chrome/browser/ui/cocoa/
H A Dbrowser_window_controller_private.h59 // Sets the toolbar's height to a value appropriate for the given compression.
62 - (void)adjustToolbarAndBookmarkBarForCompression:(CGFloat)compression;
/external/esd/include/
H A Daudiofile.h163 /* supported compression schemes */
170 /* Apple proprietary AIFF-C compression schemes (not supported) */
213 AF_QUERY_NATIVE_SAMPFMT = 609, /* for compression */
299 AF_BAD_COMP_PARAM = 55, /* unrecognized compression parameter */
372 AF_ERR_BAD_COMP_PARAM = 55+AF_ERR_BASE, /* unrecognized compression parameter */
456 /* conversion/compression params set via DMparams */
458 /* conversion/compression params retrieved via DMparams */
496 /* track data: compression */
497 void afInitCompression (AFfilesetup, int track, int compression);
499 void afInitCompressionParams (AFfilesetup, int track, int compression
[all...]
/external/chromium_org/third_party/libpng/
H A Dpngwrite.c234 info_ptr->text[i].compression);
236 if (info_ptr->text[i].compression > 0)
241 info_ptr->text[i].compression,
250 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
253 else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_zTXt)
259 info_ptr->text[i].compression);
264 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_zTXt_WR;
266 else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_NONE)
274 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
341 info_ptr->text[i].compression);
[all...]
/external/qemu/distrib/libpng-1.2.46/
H A Dpngwrite.c234 info_ptr->text[i].compression);
236 if (info_ptr->text[i].compression > 0)
241 info_ptr->text[i].compression,
250 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
253 else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_zTXt)
259 info_ptr->text[i].compression);
264 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_zTXt_WR;
266 else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_NONE)
274 info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR;
341 info_ptr->text[i].compression);
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
H A DHAREntry.js121 var compression = this.responseCompression;
122 if (typeof compression === "number")
123 content.compression = compression;
/external/chromium_org/third_party/leveldatabase/src/issues/
H A Dissue178_test.cc35 // Open database. Disable compression since it affects the creation
41 db_options.compression = leveldb::kNoCompression;

Completed in 662 milliseconds

123456