Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/gif/
Dcfx_lzwdecompressor.cpp145 memset(code_table_, 0, sizeof(code_table_)); in ClearTable()
147 code_table_[i].suffix = static_cast<uint8_t>(i); in ClearTable()
156 code_table_[code_next_].prefix = prefix_code; in AddCode()
157 code_table_[code_next_].suffix = append_char; in AddCode()
169 if (code == code_table_[code].prefix || in DecodeString()
173 decompressed_[decompressed_next_++] = code_table_[code].suffix; in DecodeString()
174 code = code_table_[code].prefix; in DecodeString()
Dcfx_lzwdecompressor.h57 CodeEntry code_table_[GIF_MAX_LZW_CODE]; variable