HomeSort by relevance Sort by last modified time
    Searched refs:code_next_ (Results 1 - 2 of 2) sorted by null

  /external/pdfium/core/fxcodec/gif/
cfx_lzwdecompressor.cpp 35 code_next_(0),
104 if (code_next_ < GIF_MAX_LZW_CODE) {
105 if (code == code_next_) {
109 } else if (code > code_next_) {
143 code_next_ = code_end_ + 1;
148 decompressed_.resize(code_next_ - code_clear_ + 1);
153 if (code_next_ == GIF_MAX_LZW_CODE)
156 code_table_[code_next_].prefix = prefix_code;
157 code_table_[code_next_].suffix = append_char;
158 if (++code_next_ < GIF_MAX_LZW_CODE)
    [all...]
cfx_lzwdecompressor.h 53 uint16_t code_next_; member in class:CFX_LZWDecompressor

Completed in 70 milliseconds