| /src/external/public-domain/xz/dist/src/liblzma/lz/ |
| lz_decoder.c | 241 if (lz_options.dict_size < 4096) 242 lz_options.dict_size = 4096; 251 if (lz_options.dict_size > SIZE_MAX - 15) 254 lz_options.dict_size = (lz_options.dict_size + 15) & ~((size_t)(15)); 257 if (coder->dict.size != lz_options.dict_size) { 260 = lzma_alloc(lz_options.dict_size, allocator); 264 coder->dict.size = lz_options.dict_size; 275 lz_options.dict_size);
|
| lz_encoder.c | 199 if (lz_options->dict_size < LZMA_DICT_SIZE_MIN 200 || lz_options->dict_size 205 mf->keep_size_before = lz_options->before_size + lz_options->dict_size; 221 uint32_t reserve = lz_options->dict_size / 2; 257 mf->cyclic_size = lz_options->dict_size + 1; 310 hs = lz_options->dict_size - 1;
|
| lz_decoder.h | 48 size_t dict_size; member in struct:__anon24623
|
| lz_encoder.h | 135 size_t dict_size; member in struct:__anon24627 165 // before_size + dict_size + after_size + match_len_max 168 // memmove() calls reasonable. The bigger the dict_size is, the bigger 177 // amount of extra buffer needed after dict_size becomes
|
| /src/usr.bin/gzip/ |
| unlz.c | 283 off_t pos, ppos, spos, dict_size; member in struct:lz_decoder 304 lz->wrapped = lz->pos >= lz->dict_size; 356 lz_create(struct lz_decoder *lz, int fin, int fdout, int dict_size, 387 lz->dict_size = dict_size; 390 lz->obuf = malloc(dict_size); 411 return lz->obuf[lz->dict_size + diff]; 420 if (lz->dict_size == lz->pos) 570 if (rep[0] >= lz->dict_size || 592 lz_decode(int fin, int fdout, unsigned dict_size, off_t *insize 657 unsigned dict_size = 1 << (c & 0x1f); local 700 unsigned dict_size = lz_get_dict_size(header[5]); local [all...] |
| /src/external/public-domain/xz/dist/src/liblzma/common/ |
| alone_decoder.c | 74 coder->options.dict_size 78 if (coder->picky && coder->options.dict_size 85 uint32_t d = coder->options.dict_size - 1; 93 if (d != coder->options.dict_size) 223 coder->options.dict_size = 0;
|
| alone_encoder.c | 109 if (options->dict_size < LZMA_DICT_SIZE_MIN) 116 uint32_t d = options->dict_size - 1;
|
| block_buffer_encoder.c | 96 .dict_size = LZMA_DICT_SIZE_MIN,
|
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_write_add_filter_xz.c | 124 uint32_t dict_size; member in struct:option_value 248 int dict_size = data->lzma_opt.dict_size; local 252 if (dict_size < (1 << 12) || dict_size > (1 << 29)) { 255 dict_size); 259 if (dict_size & (1 << log2dic)) 262 if (dict_size > (1 << log2dic)) { 265 ((1 << log2dic) - dict_size) / (1 << (log2dic - 4)); 337 data->lzma_opt.dict_size = val->dict_size [all...] |
| archive_write_set_format_zip.c | 258 archive_le32enc(out + 1, options->dict_size);
|
| /src/external/public-domain/xz/dist/src/xz/ |
| coder.c | 327 const uint32_t orig_dict_size = opt->dict_size; 328 opt->dict_size &= ~((UINT32_C(1) << 20) - 1); 336 if (opt->dict_size < (UINT32_C(1) << 20)) 349 // dict_size is very big. 350 opt->dict_size -= UINT32_C(1) << 20; 360 uint64_to_str(opt->dict_size >> 20, 1), 398 const uint32_t dict_size = opt->dict_size; local 401 if (dict_size != UINT32_MAX) { 402 uint32_t d = dict_size - 1 [all...] |
| options.c | 282 opt->dict_size = value;
|
| message.c | 968 uint32_to_optstr(opt->dict_size));
|
| /src/external/public-domain/xz/dist/src/liblzma/api/lzma/ |
| lzma12.h | 54 * reality when dict_size is a power of two. The formulas are more complex 66 * - dict_size <= 16 MiB: dict_size * 7.5 67 * - dict_size > 16 MiB: dict_size * 5.5 + 64 MiB 77 * - dict_size <= 32 MiB: dict_size * 7.5 78 * - dict_size > 32 MiB: dict_size * 6.5 87 * Memory usage: dict_size * 9. 217 uint32_t dict_size; member in struct:__anon24576 [all...] |
| /src/external/public-domain/xz/dist/src/liblzma/lzma/ |
| lzma_encoder_presets.c | 36 options->dict_size = UINT32_C(1) << dict_pow2[level];
|
| lzma2_encoder.c | 350 if (lz_options->before_size + lz_options->dict_size < LZMA2_CHUNK_MAX) 352 = LZMA2_CHUNK_MAX - lz_options->dict_size; 382 uint32_t d = my_max(opt->dict_size, LZMA_DICT_SIZE_MIN); 409 return my_max((uint64_t)(opt->dict_size) * 3, UINT64_C(1) << 20);
|
| lzma2_decoder.c | 298 opt->dict_size = UINT32_MAX; 300 opt->dict_size = 2 | (props[0] & 1); 301 opt->dict_size <<= props[0] / 2 + 11;
|
| lzma_encoder.c | 440 lz_options->dict_size = options->dict_size; 577 while ((UINT32_C(1) << log_size) < options->dict_size) 666 unaligned_write32le(out + 1, opt->dict_size);
|
| lzma_decoder.c | 958 lz_options->dict_size = options->dict_size; 1020 + lzma_lz_decoder_memusage(opt->dict_size); 1052 opt->dict_size = unaligned_read32le(props + 1);
|
| /src/external/public-domain/xz/dist/src/lzmainfo/ |
| lzmainfo.c | 162 (opt->dict_size + 512 * 1024) / (1024 * 1024), 163 my_log2(opt->dict_size), opt->lc, opt->lp, opt->pb);
|
| /src/external/bsd/zstd/dist/contrib/diagnose_corruption/ |
| check_flipped_bits.c | 35 size_t dict_size; member in struct:__anon8530 224 stuff->dict_size = 0; 249 stuff->ddict = readDictByID(stuff, dict_id, &stuff->dict, &stuff->dict_size); 258 stuff->ddict = readDict(stuff->dict_file_name, &stuff->dict, &stuff->dict_size, &stuff->dict_id);
|
| /src/external/gpl3/gcc/dist/libcpp/ |
| makeuname2c.cc | 111 static size_t dict_size, tree_size, max_entry_len; variable 634 dict_size = key_idx; 638 dict = (char *) xmalloc (dict_size + 1); 642 dict[dict_size] = '\0'; 717 printf ("static const char uname2c_dict[%ld] =\n", (long) (dict_size + 1)); 718 for (i = 0; i < dict_size; i += 77) 719 printf ("\"%.77s\"%s\n", dict + i, i + 76 > dict_size ? ";" : "");
|
| /src/external/bsd/zstd/dist/tests/fuzz/ |
| fuzz.py | 783 dict_size = 1 << dict_size_log 788 '--maxdict={}'.format(dict_size), 789 '-o', abs_join(dict, '{}.zstd-dict'.format(dict_size))
|
| /src/external/gpl3/gdb/dist/gdb/ |
| dictionary.c | 501 dict_size (const struct dictionary *dict) function 1287 size += dict_size (mdict->dictionaries[idx]);
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| dictionary.c | 501 dict_size (const struct dictionary *dict) function 1287 size += dict_size (mdict->dictionaries[idx]);
|