Home
last modified time | relevance | path

Searched refs:compression (Results 1 – 25 of 1026) sorted by relevance

12345678910>>...42

/third_party/grpc/src/python/grpcio/grpc/
D_compression.py28 def _compression_algorithm_to_metadata_value(compression): argument
29 return _METADATA_STRING_MAPPING[compression]
32 def compression_algorithm_to_metadata(compression): argument
34 _compression_algorithm_to_metadata_value(compression))
37 def create_channel_option(compression): argument
39 int(compression)),) if compression else ()
42 def augment_metadata(metadata, compression): argument
43 if not metadata and not compression:
47 compression_algorithm_to_metadata(compression),) if compression else ()
D_interceptor.py81 compression = call_details.compression
83 compression = default_details.compression
85 return method, timeout, metadata, credentials, wait_for_ready, compression
215 compression=None): argument
221 compression=compression)
230 compression=None): argument
233 wait_for_ready, compression)
247 compression=new_compression)
265 compression=None): argument
271 compression=compression)
[all …]
D_simple_stubs.py62 compression: Optional[grpc.Compression]) -> grpc.Channel:
69 compression=compression)
133 compression: Optional[grpc.Compression]) -> grpc.Channel:
144 key = (target, options, channel_credentials, compression)
155 compression)
179 compression: Optional[grpc.Compression] = None,
238 compression)
260 compression: Optional[grpc.Compression] = None,
318 compression)
340 compression: Optional[grpc.Compression] = None,
[all …]
/third_party/openssl/doc/man3/
DSSL_COMP_add_compression_method.pod7 - handle SSL/TLS integrated compression methods
26 SSL_COMP_add_compression_method() adds the compression method B<cm> with
27 the identifier B<id> to the list of available compression methods. This
32 compression methods or NULL on error.
34 SSL_COMP_get0_name() returns the name of the compression method B<comp>.
36 SSL_COMP_get_id() returns the id of the compression method B<comp>.
39 maintain the internal table of compression methods.
43 The TLS standard (or SSLv3) allows the integration of compression methods
44 into the communication. The TLS RFC does however not specify compression
46 way to integrate compression with unknown peers. It is therefore currently not
[all …]
DSSL_SESSION_get_compress_id.pod6 - get details about the compression associated with a session
16 If compression has been negotiated for an ssl session then
17 SSL_SESSION_get_compress_id() will return the id for the compression method or
18 0 otherwise. The only built-in supported compression method is zlib which has an
23 SSL_SESSION_get_compress_id() returns the id of the compression method or 0 if
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dgen-ucd-table.py96 for compression in (DEFAULT, COMPACT):
98 if compression == DEFAULT:
106 packTab.pack_table(gc, 'Cn', mapping=gc_order, compression=compression).genCode(code, 'gc')
107 packTab.pack_table(ccc, 0, compression=compression).genCode(code, 'ccc')
108 packTab.pack_table(bmg, 0, compression=compression).genCode(code, 'bmg')
109 packTab.pack_table(sc, 'Zzzz', mapping=sc_order, compression=compression).genCode(code, 'sc')
110 packTab.pack_table(dm, None, mapping=dm_order, compression=compression).genCode(code, 'dm')
115 if compression != DEFAULT:
/third_party/grpc/doc/
Dcompression_cookbook.md5 This document describes compression as implemented by the gRPC C core. See [the
6 full compression specification](compression.md) for details.
10 Wrapped languages developers, for the purposes of supporting compression by
15 1. Be able to set compression at [channel](#per-channel-settings),
20 spec](https://github.com/grpc/grpc/blob/master/doc/compression.md#test-cases).
31 still not symmetric between clients and servers (e.g. the [use of compression
32 levels](https://github.com/grpc/grpc/blob/master/doc/compression.md#compression-levels-and-algorith…
47 document](https://github.com/grpc/grpc/blob/master/doc/compression.md#compression-levels-and-algori…
48 compression _levels_ are the primary mechanism for compression selection _at the
52 As of this writing (Q2 2016), clients can only specify compression _algorithms_.
[all …]
Dcompression.md10 compression supported by gRPC acts _at the individual message level_, taking
14 The implementation supports different compression algorithms. A _default
15 compression level_, to be used in the absence of message-specific settings, MAY
18 The ability to control compression settings per call and to enable/disable
19 compression on a per message basis MAY be used to prevent CRIME/BEAST attacks.
20 It also allows for asymmetric compression communication, whereby a response MAY
26 appropriate API method. There are two scenarios where compression MAY be
29 + At channel creation time, which sets the channel default compression and
30 therefore the compression that SHALL be used in the absence of per-RPC
31 compression configuration.
[all …]
/third_party/EGL/extensions/EXT/
DEGL_EXT_surface_compression.txt45 Applications may wish to take advantage of framebuffer compression. Some
46 platforms may support framebuffer compression at fixed bitrates. Such
47 compression algorithms generally produce results that are visually lossless,
51 This extension enables applications to opt-in to fixed-rate compression
55 be requested for all formats and applications can query what level of compression
101 EGL_SURFACE_COMPRESSION_EXT specifies the fixed-rate compression that may
104 compression is disabled.
106 then the implementation may enable compression at a default,
109 implementation may enable fixed-rate compression with a bitrate of at
112 implementation may enable fixed-rate compression with a bitrate of at
[all …]
/third_party/grpc/examples/python/compression/
DREADME.md3 gRPC offers lossless compression options in order to decrease the number of bits
4 transferred over the wire. Three levels of compression are available:
6 - `grpc.Compression.NoCompression` - No compression is applied to the payload. (default)
12 See [the gRPC Compression Spec](https://github.com/grpc/grpc/blob/master/doc/compression.md)
22 with grpc.insecure_channel('foo.bar:1234', compression=grpc.Compression.Gzip) as channel:
28 Setting the compression method at the call level will override any settings on
34 compression=grpc.Compression.Deflate)
40 Additionally, compression may be set at two levels on the server side.
46 compression=grpc.Compression.Gzip)
57 Setting the compression method for an individual RPC will override any setting
/third_party/skia/src/gpu/mock/
DGrMockCaps.h44 SkImage::CompressionType compression = format.asMockCompressionType(); in isFormatSRGB() local
45 if (compression != SkImage::CompressionType::kNone) { in isFormatSRGB()
54 SkImage::CompressionType compression = format.asMockCompressionType(); in isFormatTexturable() local
55 if (compression != SkImage::CompressionType::kNone) { in isFormatTexturable()
56 return fOptions.fCompressedOptions[(int)compression].fTexturable; in isFormatTexturable()
90 SkImage::CompressionType compression = format.asMockCompressionType(); in getRenderTargetSampleCount() local
91 if (compression != SkImage::CompressionType::kNone) { in getRenderTargetSampleCount()
111 SkImage::CompressionType compression = format.asMockCompressionType(); in maxRenderTargetSampleCount() local
112 if (compression != SkImage::CompressionType::kNone) { in maxRenderTargetSampleCount()
164 SkImage::CompressionType compression = format.asMockCompressionType(); in onAreColorTypeAndFormatCompatible() local
[all …]
/third_party/skia/tests/
DCompressedBackendAllocationTest.cpp41 SkImage::CompressionType compression = in create_image() local
44 SkAlphaType at = SkCompressionTypeIsOpaque(compression) ? kOpaque_SkAlphaType in create_image()
147 SkImage::CompressionType compression, in test_compressed_color_init() argument
161 check_compressed_mipmaps(dContext, img, compression, expectedColors, mipMapped, in test_compressed_color_init()
163 check_readback(dContext, img, compression, color, reporter, "solid readback"); in test_compressed_color_init()
177 check_compressed_mipmaps(dContext, img, compression, expectedNewColors, mipMapped, reporter, in test_compressed_color_init()
179 check_readback(dContext, std::move(img), compression, newColor, reporter, "solid readback"); in test_compressed_color_init()
185 static std::unique_ptr<const char[]> make_compressed_data(SkImage::CompressionType compression, in make_compressed_data() argument
197 size_t dataSize = SkCompressedDataSize(compression, dimensions, &mipMapOffsets, in make_compressed_data()
204 GrFillInCompressedData(compression, dimensions, in make_compressed_data()
[all …]
/third_party/openGLES/extensions/EXT/
DEXT_texture_storage_compression.txt42 Applications may wish to take advantage of framebuffer compression. Some
43 platforms may support framebuffer compression at fixed bitrates. Such
44 compression algorithms generally produce results that are visually lossless,
48 This extension enables applications to opt-in to compression for
101 compression rate that was actually applied to the texture."
135 SURFACE_COMPRESSION_EXT specifies if fixed-rate compression can be
138 compression is disabled.
140 implementation may enable compression at a default, implementation-defined,
143 implementation may enable fixed-rate compression with a bitrate of at
146 implementation may enable fixed-rate compression with a bitrate of at
[all …]
DEXT_EGL_image_storage_compression.txt42 Applications may wish to take advantage of framebuffer compression. Some
43 platforms may support framebuffer compression at fixed bitrates. Such
44 compression algorithms generally produce results that are visually lossless,
94 SURFACE_COMPRESSION_EXT specifies whether fixed-rate compression
97 must not use fixed-rate compression.
102 <image> may use fixed-rate compression.
110 Fixed-rate compression is done in an implementation-defined manner and may
131 RESOLVED. No. We only allow fixed-rate compression for immutable textures.
133 2. Do we need to specify compression rates in this extension?
136 and the compression ratio must have been decided at that time.
/third_party/libwebsockets/lib/roles/http/compression/
DREADME.md1 HTTP compression
4 This directory contains generic compression transforms that can be applied to
7 The compression transforms expose an "ops" type struct and a compressor name
9 ./private-lib-roles-http-compression.h.
11 Because the compression transform depends on being able to send on its output
13 `wsi->buflist_comp` that represents pre-compression transform data
14 ("input data" from the perspective of the compression transform) that was
/third_party/grpc/examples/cpp/compression/
DREADME.md15 Change your current directory to examples/cpp/compression
18 $ cd examples/cpp/compression/
39 Additionally, we can configure the compression settings.
41 In the client, set the default compression algorithm of the channel via the channel arg.
45 // Set the default compression algorithm for the channel.
51 Each call's compression configuration can be overwritten by client context.
54 // Overwrite the call's compression algorithm to DEFLATE.
58 In the server, set the default compression algorithm via the server builder.
62 // Set the default compression algorithm for the server.
66 Each call's compression configuration can be overwritten by server context.
[all …]
/third_party/grpc/src/python/grpcio/grpc/experimental/aio/
D_channel.py50 compression: Optional[grpc.Compression]):
52 compression)
93 compression: Optional[grpc.Compression] = None
99 if compression:
101 *_compression.augment_metadata(metadata, compression))
115 compression: Optional[grpc.Compression] = None
118 metadata = self._init_metadata(metadata, compression)
145 compression: Optional[grpc.Compression] = None
148 metadata = self._init_metadata(metadata, compression)
175 compression: Optional[grpc.Compression] = None
[all …]
D_server.py29 compression: Optional[grpc.Compression]):
30 compression_option = _compression.create_channel_option(compression)
42 compression: Optional[grpc.Compression]):
55 _augment_channel_arguments(options, compression),
177 compression: Optional[grpc.Compression] = None):
206 compression)
/third_party/grpc/src/python/grpcio/grpc/aio/
D_channel.py50 compression: Optional[grpc.Compression]):
52 compression)
94 compression: Optional[grpc.Compression] = None) -> Metadata:
99 if compression:
101 *_compression.augment_metadata(metadata, compression))
116 compression: Optional[grpc.Compression] = None
119 metadata = self._init_metadata(metadata, compression)
147 compression: Optional[grpc.Compression] = None
150 metadata = self._init_metadata(metadata, compression)
178 compression: Optional[grpc.Compression] = None
[all …]
D_server.py29 compression: Optional[grpc.Compression]):
30 compression_option = _compression.create_channel_option(compression)
42 compression: Optional[grpc.Compression]):
55 _augment_channel_arguments(options, compression),
180 compression: Optional[grpc.Compression] = None):
209 compression)
/third_party/uboot/u-boot-2020.01/doc/uImage.FIT/
Dmulti.its18 compression = "gzip";
35 compression = "gzip";
49 compression = "gzip";
63 compression = "gzip";
77 compression = "gzip";
90 compression = "none";
101 compression = "none";
Dmulti_spl.its27 compression = "none";
35 compression = "none";
44 compression = "none";
51 compression = "none";
59 compression = "none";
67 compression = "none";
75 compression = "none";
/third_party/skia/third_party/externals/brotli/c/tools/
Dbrotli.md13 `brotli` is a generic-purpose lossless compression algorithm that compresses
15 coding and 2-nd order context modeling, with a compression ratio comparable to
16 the best currently available general-purpose compression methods. It is similar
17 in speed with deflate but offers more dense compression.
33 * default mode is compression;
59 compression level (0-9); bigger values cause denser, but slower compression
77 compression level (0-11); bigger values cause denser, but slower compression
92 use best compression level (default); same as "`-q 11`"
/third_party/grpc/src/core/lib/surface/
Dbyte_buffer.cc36 grpc_compression_algorithm compression) { in grpc_raw_compressed_byte_buffer_create() argument
41 bb->data.raw.compression = compression; in grpc_raw_compressed_byte_buffer_create()
56 bb->data.raw.compression = GRPC_COMPRESS_NONE; in grpc_raw_byte_buffer_from_reader()
70 bb->data.raw.compression); in grpc_byte_buffer_copy()
/third_party/flutter/skia/third_party/externals/sfntly/doc/
DMicroTypeExpress.md4 compression.
9 implementation of a decoder is Internet Explorer, as a compression
11 gives an approximate 15% gain in compression over gzip, a web font
13 EOT compression.
15 The current codebase in sfntly is for compression only (this is by far
29 If you’re interested in the code and details of the compression
32 The top-level MicroType Express compression code is in MtxWriter.java

12345678910>>...42