Home
last modified time | relevance | path

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

/plugin/dw2pdf/vendor/mpdf/mpdf/src/Gif/
H A DLzw.php18 var $MAX_LZW_BITS; variable in Mpdf\\Gif\\Lzw
42 $this->MAX_LZW_BITS = 12;
49 $this->Next = range(0, (1 << $this->MAX_LZW_BITS) - 1);
50 $this->Vals = range(0, (1 << $this->MAX_LZW_BITS) - 1);
51 $this->Stack = range(0, (1 << ($this->MAX_LZW_BITS + 1)) - 1);
96 for (; $i < (1 << $this->MAX_LZW_BITS); $i++) {
129 for (; $i < (1 << $this->MAX_LZW_BITS); $i++) {
167 if (($Code = $this->MaxCode) < (1 << $this->MAX_LZW_BITS)) {
172 if (($this->MaxCode >= $this->MaxCodeSize) && ($this->MaxCodeSize < (1 << $this->MAX_LZW_BITS))) {
/plugin/photogallery/phpThumb/
H A Dphpthumb.gif.php166 public $MAX_LZW_BITS; variable in CGIFLZW
175 $this->MAX_LZW_BITS = 12;
181 $this->Next = range(0, (1 << $this->MAX_LZW_BITS) - 1);
182 $this->Vals = range(0, (1 << $this->MAX_LZW_BITS) - 1);
183 $this->Stack = range(0, (1 << ($this->MAX_LZW_BITS + 1)) - 1);
233 for (; $i < (1 << $this->MAX_LZW_BITS); $i++) {
265 for (; $i < (1 << $this->MAX_LZW_BITS); $i++) {
305 if (($Code = $this->MaxCode) < (1 << $this->MAX_LZW_BITS)) {
310 … if (($this->MaxCode >= $this->MaxCodeSize) && ($this->MaxCodeSize < (1 << $this->MAX_LZW_BITS))) {