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

  /external/pdfium/core/fxcodec/gif/
cfx_lzwdecompressor.cpp 145 memset(code_table_, 0, sizeof(code_table_));
147 code_table_[i].suffix = static_cast<uint8_t>(i);
156 code_table_[code_next_].prefix = prefix_code;
157 code_table_[code_next_].suffix = append_char;
169 if (code == code_table_[code].prefix ||
173 decompressed_[decompressed_next_++] = code_table_[code].suffix;
174 code = code_table_[code].prefix;
cfx_lzwdecompressor.h 57 CodeEntry code_table_[GIF_MAX_LZW_CODE]; member in class:CFX_LZWDecompressor

Completed in 217 milliseconds