| /xsrc/external/mit/brotli/dist/c/enc/ |
| H A D | quality.h | 8 quality levels. */ 31 /* For quality below MIN_QUALITY_FOR_BLOCK_SPLIT there is no block splitting, 35 /* Returns hash-table size for quality levels 0 and 1. */ 36 static BROTLI_INLINE size_t MaxHashTableSize(int quality) { argument 37 return quality == FAST_ONE_PASS_COMPRESSION_QUALITY ? 1 << 15 : 1 << 17; 48 return params->quality <= 10 ? 56 return params->quality <= 10 ? 1 : 5; 60 params->quality = BROTLI_MIN(int, BROTLI_MAX_QUALITY, 61 BROTLI_MAX(int, BROTLI_MIN_QUALITY, params->quality)); 62 if (params->quality < [all...] |
| H A D | params.h | 7 /* Parameters for the Brotli encoder with chosen quality levels. */ 34 int quality; member in struct:BrotliEncoderParams
|
| H A D | encode.c | 32 #include "./quality.h" 157 state->params.quality = (int)value; 229 static int* GetHashTable(BrotliEncoderState* s, int quality, argument 236 const size_t max_table_size = MaxHashTableSize(quality); 240 if (quality == FAST_ONE_PASS_COMPRESSION_QUALITY) { 339 static void ChooseContextMap(int quality, argument 381 if (quality < MIN_QUALITY_FOR_HQ_CONTEXT_MODELING) { 403 size_t start_pos, size_t length, size_t mask, int quality, size_t size_hint, 423 BROTLI_UNUSED(quality); 483 size_t start_pos, size_t length, size_t mask, int quality, size_ 402 ShouldUseComplexStaticContextMap(const uint8_t * input,size_t start_pos,size_t length,size_t mask,int quality,size_t size_hint,size_t * num_literal_contexts,const uint32_t ** literal_context_map) argument 482 DecideOverLiteralContextModeling(const uint8_t * input,size_t start_pos,size_t length,size_t mask,int quality,size_t size_hint,size_t * num_literal_contexts,const uint32_t ** literal_context_map) argument 1471 BrotliEncoderCompress(int quality,int lgwin,BrotliEncoderMode mode,size_t input_size,const uint8_t * input_buffer,size_t * encoded_size,uint8_t * encoded_buffer) argument [all...] |
| H A D | hash_forgetful_chain_inc.h | 89 self->max_hops = (params->quality > 6 ? 7u : 8u) << (params->quality - 4);
|
| H A D | backward_references_inc.h | 60 sr2.len = params->quality < MIN_QUALITY_FOR_EXTENSIVE_REFERENCE_SEARCH ?
|
| H A D | hash_to_binary_tree_inc.h | 213 params->quality != HQ_ZOPFLIFICATION_QUALITY ? 16 : 64;
|
| /xsrc/external/mit/brotli/dist/tests/ |
| H A D | roundtrip_test.sh | 24 for quality in 1 6 9 11; do 25 echo "Roundtrip testing $file at quality $quality" 28 $BROTLI -fq $quality $file -o $compressed 32 cat $file | $BROTLI -cq $quality | $BROTLI -cd >$uncompressed
|
| H A D | run-roundtrip-test.cmake | 5 COMMAND ${BROTLI_WRAPPER} ${BROTLI_CLI} --force --quality=${QUALITY} ${INPUT} --output=${OUTPUT}.br
|
| /xsrc/external/mit/brotli/dist/python/ |
| H A D | brotli.py | 26 def compress(string, mode=MODE_GENERIC, quality=11, lgwin=22, lgblock=0): 33 quality (int, optional): Controls the compression-speed vs compression- 34 density tradeoff. The higher the quality, the slower the compression. 40 quality. Defaults to 0. 48 compressor = Compressor(mode=mode, quality=quality, lgwin=lgwin,
|
| H A D | bro.py | 15 'quality': 11, 95 '--quality', 100 'tradeoff. The higher the quality, the slower the ' 116 'on the quality. Defaults to 0.') 148 quality=options.quality,
|
| H A D | _brotli.cc | 48 static int quality_convertor(PyObject *o, int *quality) { argument 50 PyErr_SetString(BrotliError, "Invalid quality"); 54 if (!as_bounded_int(o, quality, 0, 11)) { 55 PyErr_SetString(BrotliError, "Invalid quality. Range is 0 to 11."); 129 " Compressor(mode=MODE_GENERIC, quality=11, lgwin=22, lgblock=0)\n" 134 " quality (int, optional): Controls the compression-speed vs compression-\n" 135 " density tradeoff. The higher the quality, the slower the compression.\n" 141 " quality. Defaults to 0.\n" 173 int quality = -1; local in function:brotli_Compressor_init 178 static const char *kwlist[] = {"mode", "quality", "lgwi [all...] |
| /xsrc/external/mit/brotli/dist/python/tests/ |
| H A D | compressor_test.py | 72 self.compressor = brotli.Compressor(quality=1) 78 self.compressor = brotli.Compressor(quality=6) 84 self.compressor = brotli.Compressor(quality=9) 90 self.compressor = brotli.Compressor(quality=11)
|
| /xsrc/external/mit/MesaLib/dist/docs/relnotes/ |
| H A D | 7.7.rst | 49 unstable-quality instead of experimental-quality.
|
| H A D | 18.1.8.rst | 53 - [DXVK] Setting high shader quality in GTA V results in LLVM error
|
| H A D | 18.3.5.rst | 81 - st/nine: Ignore multisample quality level if no ms
|
| /xsrc/external/mit/brotli/dist/c/include/brotli/ |
| H A D | encode.h | 144 * The higher the quality, the slower the compression. Range is 275 * @warning Result is only valid if quality is at least @c 2 and, in 298 * @param quality quality parameter value, e.g. ::BROTLI_DEFAULT_QUALITY 313 int quality, int lgwin, BrotliEncoderMode mode, size_t input_size,
|
| /xsrc/external/mit/fontconfig/dist/ |
| H A D | README.md | 16 * be used in concert with the X Render Extension and [FreeType](https://www.freedesktop.org/wiki/Software/FreeType/) to implement high quality, anti-aliased and subpixel rendered text on a display.
|
| /xsrc/external/mit/MesaLib/dist/docs/gallium/ |
| H A D | postprocess.rst | 30 a number from 2 to 32, roughly corresponding to quality. Numbers
|
| /xsrc/external/mit/brotli/dist/c/tools/ |
| H A D | brotli.c | 92 int quality; member in struct:__anon23d34ec30208 237 fprintf(stderr, "quality already set\n"); 241 params->quality = c - '0'; 304 fprintf(stderr, "quality already set\n"); 308 params->quality = 11; 334 fprintf(stderr, "quality already set\n"); 338 BROTLI_MAX_QUALITY, ¶ms->quality); 340 fprintf(stderr, "error parsing quality value [%s]\n", argv[i]); 373 fprintf(stderr, "quality already set\n"); 377 params->quality [all...] |
| H A D | brotli.md | 76 * `-q NUM`, `--quality=NUM`:
|
| /xsrc/external/mit/MesaLib/dist/docs/ |
| H A D | helpwanted.rst | 44 #. Try to write high-quality code that follows the existing style.
|
| H A D | shading.rst | 104 - The quality of generated code is pretty good, register usage is fair.
|
| /xsrc/external/mit/brotli/dist/ |
| H A D | CMakeLists.txt | 307 foreach(quality 1 6 9 11) 308 add_test(NAME "${BROTLI_TEST_PREFIX}roundtrip/${INPUT}/${quality}" 313 -DQUALITY=${quality} 315 -DOUTPUT=${OUTPUT_FILE}.${quality}
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/docs/source/drivers/openswr/ |
| H A D | faq.rst | 19 with Mesa to provide a high quality API layer while at the same
|
| /xsrc/external/mit/MesaLib/dist/docs/drivers/openswr/ |
| H A D | faq.rst | 19 with Mesa to provide a high quality API layer while at the same
|