Searched refs:code_next_ (Results 1 – 2 of 2) sorted by relevance
34 code_next_(0), in CFX_LZWDecompressor()103 if (code_next_ < GIF_MAX_LZW_CODE) { in Decode()104 if (code == code_next_) { in Decode()108 } else if (code > code_next_) { in Decode()142 code_next_ = code_end_ + 1; in ClearTable()147 decompressed_.resize(code_next_ - code_clear_ + 1); in ClearTable()152 if (code_next_ == GIF_MAX_LZW_CODE) in AddCode()155 code_table_[code_next_].prefix = prefix_code; in AddCode()156 code_table_[code_next_].suffix = append_char; in AddCode()157 if (++code_next_ < GIF_MAX_LZW_CODE) { in AddCode()[all …]
52 uint16_t code_next_; variable