Searched defs:MAX_LENGTH_BITS (Results 1 - 1 of 1) sorted by relevance

/external/webp/src/enc/
H A Dbackward_references_enc.h111 // If you change this, you need MAX_LENGTH_BITS + WINDOW_SIZE_BITS <= 32 as it
113 #define MAX_LENGTH_BITS 12 macro
115 // We want the max value to be attainable and stored in MAX_LENGTH_BITS bits.
116 #define MAX_LENGTH ((1 << MAX_LENGTH_BITS) - 1)
117 #if MAX_LENGTH_BITS + WINDOW_SIZE_BITS > 32
118 #error "MAX_LENGTH_BITS + WINDOW_SIZE_BITS > 32"
144 return p->offset_length_[base_position] >> MAX_LENGTH_BITS;
149 return p->offset_length_[base_position] & ((1U << MAX_LENGTH_BITS) - 1);

Completed in 76 milliseconds