Home
last modified time | relevance | path

Searched refs:prefix_code (Results 1 – 4 of 4) sorted by relevance

/external/webp/src/dsp/
Dlossless.h306 const VP8LPrefixCode prefix_code = kPrefixEncodeCode[distance]; in VP8LPrefixEncodeBits() local
307 *code = prefix_code.code_; in VP8LPrefixEncodeBits()
308 *extra_bits = prefix_code.extra_bits_; in VP8LPrefixEncodeBits()
318 const VP8LPrefixCode prefix_code = kPrefixEncodeCode[distance]; in VP8LPrefixEncode() local
319 *code = prefix_code.code_; in VP8LPrefixEncode()
320 *extra_bits = prefix_code.extra_bits_; in VP8LPrefixEncode()
/external/pdfium/core/src/fxcodec/codec/
Dfx_codec_flate.cpp91 void AddCode(FX_DWORD prefix_code, uint8_t append_char);
105 void CLZWDecoder::AddCode(FX_DWORD prefix_code, uint8_t append_char) { in AddCode() argument
109 m_CodeArray[m_nCodes++] = (prefix_code << 16) | append_char; in AddCode()
/external/pdfium/core/src/fxcodec/lgif/
Dfx_gif.h139 void AddCode(FX_WORD prefix_code, uint8_t append_char);
Dfx_gif.cpp50 void CGifLZWDecoder::AddCode(FX_WORD prefix_code, uint8_t append_char) { in AddCode() argument
54 code_table[code_next].prefix = prefix_code; in AddCode()