Home
last modified time | relevance | path

Searched refs:code_next_ (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/core/fxcodec/gif/
Dcfx_lzwdecompressor.cpp35 code_next_(0), in CFX_LZWDecompressor()
104 if (code_next_ < GIF_MAX_LZW_CODE) { in Decode()
105 if (code == code_next_) { in Decode()
109 } else if (code > code_next_) { in Decode()
143 code_next_ = code_end_ + 1; in ClearTable()
148 decompressed_.resize(code_next_ - code_clear_ + 1); in ClearTable()
153 if (code_next_ == GIF_MAX_LZW_CODE) in AddCode()
156 code_table_[code_next_].prefix = prefix_code; in AddCode()
157 code_table_[code_next_].suffix = append_char; in AddCode()
158 if (++code_next_ < GIF_MAX_LZW_CODE) { in AddCode()
[all …]
Dcfx_lzwdecompressor.h53 uint16_t code_next_; variable