HomeSort by: relevance | last modified time | path
    Searched refs:match_len_max (Results 1 - 5 of 5) sorted by relevancy

  /src/external/public-domain/xz/dist/src/liblzma/lz/
lz_encoder.h 120 /// mf_find() tries to expand it up to match_len_max bytes.
121 uint32_t match_len_max; member in struct:lzma_mf_s
151 size_t match_len_max; member in struct:__anon391
154 /// This must be less than or equal to match_len_max.
176 // before_size + dict_size + after_size + match_len_max
187 // lzma_mf.buffer[lzma_mf.read_pos + match_len_max - 1], the total
189 // after_size + match_len_max.
lz_encoder.c 199 || lz_options->nice_len > lz_options->match_len_max)
205 + lz_options->match_len_max;
222 reserve += (lz_options->before_size + lz_options->match_len_max
236 mf->match_len_max = lz_options->match_len_max;
lz_encoder_mf.c 57 if (limit > mf->match_len_max)
58 limit = mf->match_len_max;
  /src/external/public-domain/xz/dist/src/liblzma/lzma/
lzma2_encoder.c 171 if (left < mf->match_len_max) {
180 + left - mf->match_len_max;
lzma_encoder.c 109 assert(len <= MATCH_LEN_MAX);
369 // - [MATCH_LEN_MIN, MATCH_LEN_MAX]
480 && options->nice_len <= MATCH_LEN_MAX
494 lz_options->match_len_max = MATCH_LEN_MAX;

Completed in 18 milliseconds