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.cpp144 memset(code_table_, 0, sizeof(code_table_)); in ClearTable()
146 code_table_[i].suffix = static_cast<uint8_t>(i); in ClearTable()
155 code_table_[code_next_].prefix = prefix_code; in AddCode()
156 code_table_[code_next_].suffix = append_char; in AddCode()
168 if (code == code_table_[code].prefix || in DecodeString()
172 decompressed_[decompressed_next_++] = code_table_[code].suffix; in DecodeString()
173 code = code_table_[code].prefix; in DecodeString()
Dcfx_lzwdecompressor.h61 CodeEntry code_table_[GIF_MAX_LZW_CODE]; variable