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

  /src/external/public-domain/xz/dist/src/liblzma/lzma/
lzma_encoder.c 24 uint32_t match_byte, uint32_t symbol)
30 match_byte <<= 1;
31 const uint32_t match_bit = match_byte & offset;
38 offset &= ~(match_byte ^ symbol);
64 const uint8_t match_byte = mf->buffer[ local
67 literal_matched(&coder->rc, subcoder, match_byte, cur_byte);
lzma_encoder_optimum_normal.c 23 uint32_t match_byte, uint32_t symbol)
38 match_byte <<= 1;
40 const uint32_t match_bit = match_byte & offset;
47 offset &= ~(match_byte ^ symbol);
330 const uint8_t match_byte = *(buf - coder->reps[0] - 1); local
332 if (len_main < 2 && current_byte != match_byte
347 match_byte, current_byte);
356 if (match_byte == current_byte) {
519 const uint8_t match_byte = *(buf - reps[0] - 1); local
526 !is_literal_state(state), match_byte, current_byte)
    [all...]

Completed in 23 milliseconds