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

  /external/pdfium/testing/libfuzzer/
pdf_lzw_fuzzer.cc 18 uint8_t code_exp) {
20 CFX_LZWDecompressor::Create(color_exp, code_exp);
45 uint8_t code_exp = data[1]; local
55 LZWFuzz(lzw_data, lzw_data_size, color_exp, code_exp);
  /external/pdfium/core/fxcodec/gif/
cfx_lzwdecompressor.cpp 20 uint8_t code_exp) {
21 // color_exp generates 2^(n + 1) codes, where as the code_exp reserves 2^n.
23 if (code_exp > GIF_MAX_LZW_EXP || code_exp < color_exp + 1)
26 new CFX_LZWDecompressor(color_exp, code_exp));
29 CFX_LZWDecompressor::CFX_LZWDecompressor(uint8_t color_exp, uint8_t code_exp)
30 : code_size_(code_exp),
33 code_clear_(static_cast<uint16_t>(1 << code_exp)),
34 code_end_(static_cast<uint16_t>((1 << code_exp) + 1)),
cfx_lzwdecompressor.h 24 uint8_t code_exp);
42 CFX_LZWDecompressor(uint8_t color_exp, uint8_t code_exp);
cfx_lzwdecompressor_unittest.cpp 18 uint8_t code_exp = 0x2; local
19 auto decompressor = CFX_LZWDecompressor::Create(palette_exp, code_exp);
81 uint8_t code_exp = 0x2; local
82 auto decompressor = CFX_LZWDecompressor::Create(palette_exp, code_exp);
110 uint8_t code_exp = 0x2; local
111 auto decompressor = CFX_LZWDecompressor::Create(palette_exp, code_exp);
132 uint8_t code_exp = 0x2; local
133 auto decompressor = CFX_LZWDecompressor::Create(palette_exp, code_exp);
164 uint8_t code_exp = 0x2; local
165 auto decompressor = CFX_LZWDecompressor::Create(palette_exp, code_exp);
200 uint8_t code_exp = 0x4; local
    [all...]
cfx_gif.h 122 uint8_t code_exp; member in struct:__anon31096
cfx_gifcontext.cpp 225 if (gif_image->code_exp > GIF_MAX_LZW_EXP) {
251 gif_image->code_exp);
288 gif_image->code_exp);
546 gif_image->code_exp = *code_size;

Completed in 2652 milliseconds