| /external/xz-java/src/org/tukaani/xz/ |
| D | LZMA2Options.java | 26 * Minimum valid compression preset level is 0. 31 * Maximum valid compression preset level is 9. 36 * Default compression preset level is 6. 59 * The default dictionary size is 8 MiB. 69 * The default number of literal context bits is 3. 74 * The default number of literal position bits is 0. 84 * The default number of position bits is 2. 117 * Match finder: Hash Chain 2-3-4 122 * Match finder: Binary tree 2-3-4 143 * Creates new LZMA2 options and sets them to the default values. [all …]
|
| /external/python/cpython3/Lib/ |
| D | lzma.py | 5 one-shot (de)compression. 45 Note that LZMAFile provides a *binary* file interface - data read 50 format=None, check=-1, preset=None, filters=None): argument 51 """Open an LZMA-compressed file in binary mode. 58 mode can be "r" for reading (default), "w" for (over)writing, 64 default is FORMAT_XZ. 68 the default is CHECK_CRC64. FORMAT_ALONE and FORMAT_RAW do not 69 support integrity checks - for these formats, check must be 72 When opening a file for reading, the *preset* argument is not 78 compressor can be specified either as a preset compression [all …]
|
| /external/python/cpython3/Doc/library/ |
| D | lzma.rst | 1 :mod:`lzma` --- Compression using the LZMA algorithm 14 -------------- 23 thread-safe, so if you need to use a single :class:`LZMAFile` instance 34 ------------------------------------ 36 .. function:: open(filename, mode="rb", *, format=None, check=-1, preset=None, filters=None, encodi… 38 Open an LZMA-compressed file in binary or text mode, returning a :term:`file 42 :class:`str`, :class:`bytes` or :term:`path-like <path-like object>` object), in 48 ``"wt"``, ``"xt"``, or ``"at"`` for text mode. The default is ``"rb"``. 52 and *preset* arguments should not be used. 54 When opening a file for writing, the *format*, *check*, *preset* and [all …]
|
| /external/webrtc/tools_webrtc/network_emulator/ |
| D | emulate.py | 4 # Use of this source code is governed by a BSD-style license 24 # Default port range to apply network constraints on. 66 """Define and parse the command-line arguments.""" 72 '-- ---- --------- -------- ----- ------- ------\n' 74 parser.add_option('-p', '--preset', type='int', default=_DEFAULT_PRESET_ID, 76 'Default: %default')) 77 parser.add_option('-r', '--receive-bw', type='int', 78 default=_DEFAULT_PRESET.receive_bw_kbps, 79 help=('Receive bandwidth in kilobit/s. Default: %default')) 80 parser.add_option('-s', '--send-bw', type='int', [all …]
|
| /external/autotest/client/site_tests/power_VideoCall/ |
| D | power_VideoCall.py | 2 # Use of this source code is governed by a BSD-style license that can be 31 def run_once(self, duration=7200, preset=''): argument 35 @param preset: preset of the camera record. Possible values are 40 If not supplied, preset will be determined automatically. 43 if not preset: 44 preset = self._get_camera_preset() 63 # We need to make sure that default camera preset was init properly 64 # before changing preset or else MediaRecorder won't get torn down 65 # properly. So capture the init time with the default preset and 66 # then switch to appropriate preset later. [all …]
|
| /external/python/cpython3/Modules/ |
| D | _lzmamodule.c | 1 /* _lzma - Low-level Python interface to liblzma. 26 On failure, return -1 */ 40 On failure, return -1 */ 73 if (!PyThread_acquire_lock((obj)->lock, 0)) { \ 75 PyThread_acquire_lock((obj)->lock, 1); \ 78 #define RELEASE_LOCK(obj) PyThread_release_lock((obj)->lock) 139 PyErr_SetString(state->error, "Unsupported integrity check"); in catch_lzma_error() 145 PyErr_SetString(state->error, "Memory usage limit exceeded"); in catch_lzma_error() 148 PyErr_SetString(state->error, "Input format not supported by decoder"); in catch_lzma_error() 151 PyErr_SetString(state->error, "Invalid or unsupported options"); in catch_lzma_error() [all …]
|
| /external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/xz/ |
| D | XZCompressorOutputStream.java | 10 * http://www.apache.org/licenses/LICENSE-2.0 36 * Creates a new XZ compressor using the default LZMA2 options. 47 * Creates a new XZ compressor using the specified LZMA2 preset level. 49 * The presets 0-3 are fast presets with medium compression. 50 * The presets 4-6 are fairly slow presets with high compression. 51 * The default preset is 6. 53 * The presets 7-9 are like the preset 6 but use bigger dictionaries 59 * @param preset the preset 62 public XZCompressorOutputStream(final OutputStream outputStream, final int preset) in XZCompressorOutputStream() argument 64 out = new XZOutputStream(outputStream, new LZMA2Options(preset)); in XZCompressorOutputStream()
|
| /external/python/cpython3/PC/layout/support/ |
| D | options.py | 20 "pip-user": {"help": "pip.ini file for default --user"}, 29 "underpth": {"help": "a python._pth file", "not-in-all": True}, 35 "html-doc": {"help": "the HTML documentation"}, 45 "pip-user", 70 "default": { 88 "options": ["stable", "zip-lib", "flat-dlls", "underpth", "precompile"], 97 if info.get("not-in-all"): 98 help = "{}. Not affected by --include-all".format(help) 100 yield "--include-{}".format(opt), help 103 help = "When specified, includes default options for {}".format(info["help"]) [all …]
|
| /external/xz-java/src/ |
| D | XZSeekEncDemo.java | 15 * a random-accessible .xz file. 17 * Arguments: [preset [block size]] 19 * Preset is an LZMA2 preset level which is an integer in the range [0, 9]. 20 * The default is 6. 23 * XZ Block. The default is 1 MiB (1048576 bytes). Bigger means better 54 if (size == -1) in main() 58 left -= size; in main()
|
| /external/oboe/include/oboe/ |
| D | Definitions.h | 8 * http://www.apache.org/licenses/LICENSE-2.0 98 Invalid = -1, // AAUDIO_FORMAT_INVALID, 106 * Signed 16-bit integers. 133 ErrorBase = -900, // AAUDIO_ERROR_BASE, 134 ErrorDisconnected = -899, // AAUDIO_ERROR_DISCONNECTED, 135 ErrorIllegalArgument = -898, // AAUDIO_ERROR_ILLEGAL_ARGUMENT, 136 ErrorInternal = -896, // AAUDIO_ERROR_INTERNAL, 137 ErrorInvalidState = -895, // AAUDIO_ERROR_INVALID_STATE, 138 ErrorInvalidHandle = -892, // AAUDIO_ERROR_INVALID_HANDLE, 139 ErrorUnimplemented = -890, // AAUDIO_ERROR_UNIMPLEMENTED, [all …]
|
| /external/arm-trusted-firmware/plat/brcm/board/stingray/include/ |
| D | sdio.h | 2 * Copyright (c) 2019-2020, Broadcom 4 * SPDX-License-Identifier: BSD-3-Clause 171 * drivestrength - 12:11 172 * clkgensel - b10 173 * sdkclkfreqsel - 9:0 176 * SDR25_PRESET 25:13 Preset Value for SDR25 177 * SDR50_PRESET 12:0 Preset Value for SDR50 185 * drivestrength - 12:11 186 * clkgensel - b10 187 * sdkclkfreqsel - 9:0 [all …]
|
| /external/python/google-api-python-client/docs/dyn/ |
| D | transcoder_v1.projects.locations.jobs.html | 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 16 font-size: 13px; 21 font-size: 26px; 22 margin-bottom: 1em; 26 font-size: 24px; 27 margin-bottom: 1em; [all …]
|
| D | transcoder_v1.projects.locations.jobTemplates.html | 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 16 font-size: 13px; 21 font-size: 26px; 22 margin-bottom: 1em; 26 font-size: 24px; 27 margin-bottom: 1em; [all …]
|
| D | transcoder_v1beta1.projects.locations.jobs.html | 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 16 font-size: 13px; 21 font-size: 26px; 22 margin-bottom: 1em; 26 font-size: 24px; 27 margin-bottom: 1em; [all …]
|
| /external/xz-java/ |
| D | NEWS | 5 1.8 (2018-01-04) 14 running "ant". Set it to 1.6 or higher. The default value 1.5 17 * Add "Automatic-Module-Name" = "org.tukaani.xz". 19 1.7 (2017-12-29) 26 * Add the ArrayCache API. It's a pool-like API to reuse large byte 31 1.6 (2016-11-27) 33 * Fix LZMA2Options.getInputStream to work with a preset dictionary. 44 1.5 (2014-03-08) 48 * Use a field instead of reallocating a temporary one-byte buffer 51 1.4 (2013-09-22) [all …]
|
| /external/webp/ |
| D | README | 30 -------------- 34 nmake /f Makefile.vc CFG=release-static RTLIBCFG=static OBJDIR=output 36 the directory output\release-static\(x64|x86)\bin will contain the tools 37 cwebp.exe and dwebp.exe. The directory output\release-static\(x64|x86)\lib will 43 ------------------------------- 47 make -f makefile.unix 50 with the static library src/libwebp.a. No system-wide installation 56 --------------------- 59 On a Debian-like system the following should install everything you need for a 61 $ sudo apt-get install gcc make autoconf automake libtool [all …]
|
| /external/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/ |
| D | StreamConfiguration.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 43 public static final int SESSION_ID_NONE = -1; // must match AAUDIO 67 public static final int ERROR_DISCONNECTED = -899; // must match Oboe 97 mSessionId = -1; in reset() 157 default: in convertPerformanceModeToText() 184 default: in convertSharingModeToText() 197 default: in convertFormatToText() 210 default: in convertNativeApiToText() 223 message.append(String.format("%s.preset = %s\n", prefix, in dump() 259 default: in convertInputPresetToText() [all …]
|
| /external/xz-java/src/org/tukaani/xz/lz/ |
| D | LZEncoder.java | 5 * Igor Pavlov <http://7-zip.org/> 39 final int bufSize; // To avoid buf.length with an array-cached buf. 41 int readPos = -1; 42 private int readLimit = -1; 53 positions[i] -= normalizationOffset; in normalize() 89 default: in getMemoryUsage() 158 * Sets a preset dictionary. If a preset dictionary is wanted, this 167 // If the preset dictionary buffer is bigger than the dictionary in setPresetDict() 168 // size, copy only the tail of the preset dictionary. in setPresetDict() 170 int offset = presetDict.length - copySize; in setPresetDict() [all …]
|
| /external/libcups/cups/ |
| D | ppd-mark.c | 4 * Copyright © 2007-2019 by Apple Inc. 5 * Copyright © 1997-2007 by Easy Software Products, all rights reserved. 17 #include "cups-private.h" 18 #include "ppd-private.h" 19 #include "debug-internal.h" 38 * 'cupsMarkOptions()' - Mark command-line options in a PPD file. 41 * "multiple-document-handling", "output-bin", "print-color-mode", 42 * "print-quality", "printer-resolution", and "sides" attributes to their 46 int /* O - 1 if conflicts exist, 0 otherwise */ 48 ppd_file_t *ppd, /* I - PPD file */ in cupsMarkOptions() [all …]
|
| /external/rust/crates/libz-sys/src/zlib/doc/ |
| D | rfc1950.txt | 9 Category: Informational J-L. Gailly 10 Info-ZIP 29 Copyright (c) 1996 L. Peter Deutsch and Jean-Loup Gailly 40 <ftp://ftp.uu.net/graphics/png/documents/zlib/zdoc-index.html>. 50 not covered by patents. This specification also defines the ADLER-32 132 used for in-memory compression of a sequence of arbitrary bytes. 152 In version 3.2, some terminology was changed and the Adler-32 154 support for a preset dictionary was introduced, and the 163 +---+ 164 | | <-- the vertical bars might be missing [all …]
|
| /external/rust/crates/libz-sys/src/zlib-ng/doc/ |
| D | rfc1950.txt | 9 Category: Informational J-L. Gailly 10 Info-ZIP 29 Copyright (c) 1996 L. Peter Deutsch and Jean-Loup Gailly 40 <ftp://ftp.uu.net/graphics/png/documents/zlib/zdoc-index.html>. 50 not covered by patents. This specification also defines the ADLER-32 132 used for in-memory compression of a sequence of arbitrary bytes. 152 In version 3.2, some terminology was changed and the Adler-32 154 support for a preset dictionary was introduced, and the 163 +---+ 164 | | <-- the vertical bars might be missing [all …]
|
| /external/python/google-api-python-client/googleapiclient/discovery_cache/documents/ |
| D | transcoder.v1.json | 5 "https://www.googleapis.com/auth/cloud-platform": { 20 "x16": "http://www.google.com/images/icons/product/search-16.gif", 21 "x32": "http://www.google.com/images/icons/product/search-32.gif" 49 "default": "json", string 57 "Responses with Content-Type of application/json", 58 "Media download with context-dependent Content-Type", 59 "Responses with Content-Type of application/x-protobuf" 85 "default": "true", string 91 …"description": "Available to use for quota purposes for server-side applications. Can be any arbit… 124 … resource name. This value should be 4-63 characters, and valid characters must match the regular … [all …]
|
| /external/sonivox/arm-wt-22k/lib_src/ |
| D | eas_reverbdata.h | 1 /*---------------------------------------------------------------------------- 16 * http://www.apache.org/licenses/LICENSE-2.0 24 *---------------------------------------------------------------------------- 27 * $Date: 2006-12-11 16:07:20 -0800 (Mon, 11 Dec 2006) $ 28 *---------------------------------------------------------------------------- 37 /*------------------------------------ 39 *------------------------------------ 45 the effective address where the mask is (2^n)-1. This only works 89 // can wraparound and stay in array boundary of 0, 1, ..., (buffer size -1) 91 #define REVERB_BUFFER_MASK (REVERB_BUFFER_SIZE_IN_SAMPLES -1) [all …]
|
| /external/webp/include/webp/ |
| D | encode.h | 3 // Use of this source code is governed by a BSD-style license 8 // ----------------------------------------------------------------------------- 40 //------------------------------------------------------------------------------ 41 // One-stop-shop call! No questions asked: 65 // Note these functions, like the lossy versions, use the library's default 82 //------------------------------------------------------------------------------ 87 WEBP_HINT_DEFAULT = 0, // default preset. 90 WEBP_HINT_GRAPH, // Discrete tone image (graph, map-tile etc). 96 int lossless; // Lossless encoding (0=lossy(default), 1=lossless). 102 int method; // quality/speed trade-off (0=fast, 6=slower-better) [all …]
|
| /external/webp/src/webp/ |
| D | encode.h | 3 // Use of this source code is governed by a BSD-style license 8 // ----------------------------------------------------------------------------- 40 //------------------------------------------------------------------------------ 41 // One-stop-shop call! No questions asked: 65 // Note these functions, like the lossy versions, use the library's default 82 //------------------------------------------------------------------------------ 87 WEBP_HINT_DEFAULT = 0, // default preset. 90 WEBP_HINT_GRAPH, // Discrete tone image (graph, map-tile etc). 96 int lossless; // Lossless encoding (0=lossy(default), 1=lossless). 102 int method; // quality/speed trade-off (0=fast, 6=slower-better) [all …]
|