HomeSort by: relevance | last modified time | path
    Searched defs:dist_slot (Results 1 - 9 of 9) sorted by relevancy

  /src/external/public-domain/xz/dist/src/liblzma/lzma/
lzma_encoder.c 150 const uint32_t dist_slot = get_dist_slot(distance); local
152 rc_bittree(&coder->rc, coder->dist_slot[dist_state],
153 DIST_SLOT_BITS, dist_slot);
155 if (dist_slot >= DIST_MODEL_START) {
156 const uint32_t footer_bits = (dist_slot >> 1) - 1;
157 const uint32_t base = (2 | (dist_slot & 1)) << footer_bits;
160 if (dist_slot < DIST_MODEL_END) {
161 // Careful here: base - dist_slot - 1 can be -1, but
164 coder->dist_special + base - dist_slot - 1,
567 bittree_reset(coder->dist_slot[i], DIST_SLOT_BITS)
    [all...]
lzma_encoder_private.h 128 probability dist_slot[DIST_STATES][DIST_SLOTS]; member in struct:lzma_lzma1_encoder_s
lzma_encoder_optimum_normal.c 120 const uint32_t dist_slot = get_dist_slot_2(dist); local
121 price = coder->dist_slot_prices[dist_state][dist_slot]
139 // Price to encode the dist_slot.
140 for (uint32_t dist_slot = 0;
141 dist_slot < coder->dist_table_size; ++dist_slot)
142 dist_slot_prices[dist_slot] = rc_bittree_price(
143 coder->dist_slot[dist_state],
144 DIST_SLOT_BITS, dist_slot);
149 for (uint32_t dist_slot = DIST_MODEL_END
167 const uint32_t dist_slot = get_dist_slot(i); local
    [all...]
lzma_decoder.c 138 probability dist_slot[DIST_STATES][DIST_SLOTS]; member in struct:__anon398
428 probs = coder->dist_slot[get_dist_state(len)];
775 probs = coder->dist_slot[get_dist_state(len)];
1077 bittree_reset(coder->dist_slot[i], DIST_SLOT_BITS);
  /src/external/gpl3/gcc/dist/libbacktrace/
elf.c 5976 uint32_t dist_slot; local
5997 dist_slot = elf_lzma_integer (compressed,
6002 if (dist_slot < LZMA_DIST_MODEL_START)
6003 dist[0] = dist_slot;
6008 limit = (dist_slot >> 1) - 1;
6009 dist[0] = 2 + (dist_slot & 1);
6010 if (dist_slot < LZMA_DIST_MODEL_END)
6015 - dist_slot
  /src/external/gpl3/gcc.old/dist/libbacktrace/
elf.c 3454 uint32_t dist_slot; local
3475 dist_slot = elf_lzma_integer (compressed,
3480 if (dist_slot < LZMA_DIST_MODEL_START)
3481 dist[0] = dist_slot;
3486 limit = (dist_slot >> 1) - 1;
3487 dist[0] = 2 + (dist_slot & 1);
3488 if (dist_slot < LZMA_DIST_MODEL_END)
3493 - dist_slot
  /src/external/gpl3/gdb/dist/libbacktrace/
elf.c 5976 uint32_t dist_slot; local
5997 dist_slot = elf_lzma_integer (compressed,
6002 if (dist_slot < LZMA_DIST_MODEL_START)
6003 dist[0] = dist_slot;
6008 limit = (dist_slot >> 1) - 1;
6009 dist[0] = 2 + (dist_slot & 1);
6010 if (dist_slot < LZMA_DIST_MODEL_END)
6015 - dist_slot
  /src/external/gpl3/gdb.old/dist/libbacktrace/
elf.c 5976 uint32_t dist_slot; local
5997 dist_slot = elf_lzma_integer (compressed,
6002 if (dist_slot < LZMA_DIST_MODEL_START)
6003 dist[0] = dist_slot;
6008 limit = (dist_slot >> 1) - 1;
6009 dist[0] = 2 + (dist_slot & 1);
6010 if (dist_slot < LZMA_DIST_MODEL_END)
6015 - dist_slot
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_support_format_rar5.c 3196 uint16_t dist_slot; local
3210 &dist_slot))
3219 if(dist_slot < 4) {
3221 dist += dist_slot;
3223 dbits = dist_slot / 2 - 1;
3230 (dist_slot & 1)) << dbits;

Completed in 31 milliseconds