/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | deflate.c | 216 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, in deflateInit2_() argument 223 int strategy; 267 strategy < 0 || strategy > Z_FIXED) { 308 s->strategy = strategy; 416 int ZEXPORT deflateParams(strm, level, strategy) in deflateParams() argument 419 int strategy; 433 if (level < 0 || level > 9 || strategy < 0 || strategy > Z_FIXED) { 449 s->strategy = strategy; 591 (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2 ? 608 (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2 ? [all …]
|
D | zlib.h | 608 int strategy)); 1098 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy)); 1323 int strategy, const char *version, 1335 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ argument 1337 (strategy), ZLIB_VERSION, sizeof(z_stream))
|
D | gzio.c | 100 int strategy = Z_DEFAULT_STRATEGY; /* compression strategy */ local 140 strategy = Z_FILTERED; 142 strategy = Z_HUFFMAN_ONLY; 144 strategy = Z_RLE; 156 Z_DEFLATED, -MAX_WBITS, DEF_MEM_LEVEL, strategy); 234 int ZEXPORT gzsetparams (file, level, strategy) in gzsetparams() argument 237 int strategy; 253 return deflateParams (&(s->stream), level, strategy);
|
D | deflate.h | 183 int strategy; /* favor or force Huffman coding*/ member
|
D | ChangeLog | 61 - Add Z_FIXED strategy option to deflateInit2() to force fixed trees 302 - Add Z_RLE strategy for run-length encoding [Truta] 674 and compression strategy. 836 - renamed the 'filter' parameter of deflateInit2 as 'strategy'.
|
D | trees.c | 986 } else if (s->strategy == Z_FIXED || static_lenb == opt_lenb) {
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
D | gzwrite.c | 43 MAX_WBITS + 16, DEF_MEM_LEVEL, state->strategy); 497 int ZEXPORT gzsetparams(file, level, strategy) in gzsetparams() argument 500 int strategy; 516 if (level == state->level && strategy == state->strategy) 531 deflateParams(strm, level, strategy); 534 state->strategy = strategy;
|
D | deflate.c | 213 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, in deflateInit2_() argument 220 int strategy; 273 strategy < 0 || strategy > Z_FIXED) { 316 s->strategy = strategy; 490 int ZEXPORT deflateParams(strm, level, strategy) in deflateParams() argument 493 int strategy; 507 if (level < 0 || level > 9 || strategy < 0 || strategy > Z_FIXED) { 512 if ((strategy != s->strategy || func != configuration_table[level].func) && 526 s->strategy = strategy; 704 (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2 ? [all …]
|
D | zlib.h | 662 int strategy)); 1304 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy)); 1639 int strategy, const char *version, 1651 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ argument 1653 (strategy), ZLIB_VERSION, (int)sizeof(z_stream))
|
D | gzlib.c | 121 state->strategy = Z_DEFAULT_STRATEGY; 155 state->strategy = Z_FILTERED; 158 state->strategy = Z_HUFFMAN_ONLY; 161 state->strategy = Z_RLE; 164 state->strategy = Z_FIXED;
|
D | gzguts.h | 183 int strategy; /* compression strategy */ member
|
D | deflate.h | 186 int strategy; /* favor or force Huffman coding*/ member
|
D | ChangeLog | 174 - Avoid searching past window for Z_RLE strategy 460 - Add deflate_rle() for faster Z_RLE strategy run-length encoding 678 - Add Z_FIXED strategy option to deflateInit2() to force fixed trees 919 - Add Z_RLE strategy for run-length encoding [Truta] 1291 and compression strategy. 1453 - renamed the 'filter' parameter of deflateInit2 as 'strategy'.
|
D | trees.c | 972 } else if (s->strategy == Z_FIXED || static_lenb == opt_lenb) {
|
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/ |
D | zlib.h | 708 int strategy)); 1379 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy)); 1770 int strategy, const char *version, 1783 # define z_deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ argument 1785 (strategy), ZLIB_VERSION, (int)sizeof(z_stream)) 1797 # define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ argument 1799 (strategy), ZLIB_VERSION, (int)sizeof(z_stream))
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/zlib/ |
D | gzguts.h | 189 int strategy; /* compression strategy */ member
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | dictnotes.txt | 162 This optimization strategy can be leveraged in several ways: 169 an alternate search strategy without increasing collisions in small dicts 225 strategy arise whenever a dictionary is created from a key or item 230 The preconditions for this strategy arise in simulations and 238 for this strategy arise in symbol tables and in the builtin dictionary.
|
D | listsort.txt | 486 I first learned about the galloping strategy in a related context; see: 491 and its followup(s). An earlier paper called the same strategy 501 probably strongly related to this one in its galloping strategy.
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | dictnotes.txt | 162 This optimization strategy can be leveraged in several ways: 169 an alternate search strategy without increasing collisions in small dicts 225 strategy arise whenever a dictionary is created from a key or item 230 The preconditions for this strategy arise in simulations and 238 for this strategy arise in symbol tables and in the builtin dictionary.
|
D | listsort.txt | 483 I first learned about the galloping strategy in a related context; see: 488 and its followup(s). An earlier paper called the same strategy 498 probably strongly related to this one in its galloping strategy.
|
/device/google/cuttlefish_common/guest/hals/audio/legacy/policy/ |
D | vsoc_audio_policy_hal.h | 209 audio_io_handle_t output, uint32_t strategy, int session, int id) { in RegisterEffect() argument
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | zlibmodule.c | 307 int wbits=MAX_WBITS, memLevel=DEF_MEM_LEVEL, strategy=0, err; in PyZlib_compressobj() local 310 &memLevel, &strategy)) in PyZlib_compressobj() 320 err = deflateInit2(&self->zst, level, method, wbits, memLevel, strategy); in PyZlib_compressobj()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | zlibmodule.c | 313 int wbits=MAX_WBITS, memLevel=DEF_MEM_LEVEL, strategy=0, err; in PyZlib_compressobj() local 316 &memLevel, &strategy)) in PyZlib_compressobj() 326 err = deflateInit2(&self->zst, level, method, wbits, memLevel, strategy); in PyZlib_compressobj()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_zlib.py | 183 strategy = zlib.Z_FILTERED 184 co = zlib.compressobj(level, method, wbits, memlevel, strategy)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/ |
D | README | 347 a different strategy that allows measuring the test
|