Home
last modified time | relevance | path

Searched refs:nextBits (Results 1 – 25 of 119) sorted by relevance

12345

/dports/finance/frontaccounting/frontaccounting/reporting/includes/fpdi/decoders/
H A DLZWDecode.php29 var $nextBits = 0; variable in LZWDecode
56 $this->nextBits = 0;
135 $this->nextBits += 8;
137 if ($this->nextBits < $this->bitsToGet) {
139 $this->nextBits += 8;
142 …$code = ($this->nextData >> ($this->nextBits - $this->bitsToGet)) & $this->andTable[$this->bitsToG…
143 $this->nextBits -= $this->bitsToGet;
/dports/www/groupoffice/groupoffice-6.4.231-php-71/vendor/setasign/fpdi/src/PdfParser/Filter/
H A DLzw.php56 protected $nextBits = 0; variable in setasign\\Fpdi\\PdfParser\\Filter\\Lzw
88 $this->nextBits = 0;
175 $this->nextBits += 8;
177 if ($this->nextBits < $this->bitsToGet) {
179 $this->nextBits += 8;
182 …$code = ($this->nextData >> ($this->nextBits - $this->bitsToGet)) & $this->andTable[$this->bitsToG…
183 $this->nextBits -= $this->bitsToGet;
/dports/www/moodle310/moodle/mod/assign/feedback/editpdf/fpdi/PdfParser/Filter/
H A DLzw.php57 protected $nextBits = 0; variable in setasign\\Fpdi\\PdfParser\\Filter\\Lzw
89 $this->nextBits = 0;
177 $this->nextBits += 8;
179 if ($this->nextBits < $this->bitsToGet) {
181 $this->nextBits += 8;
184 …$code = ($this->nextData >> ($this->nextBits - $this->bitsToGet)) & $this->andTable[$this->bitsToG…
185 $this->nextBits -= $this->bitsToGet;
/dports/www/moodle311/moodle/mod/assign/feedback/editpdf/fpdi/PdfParser/Filter/
H A DLzw.php56 protected $nextBits = 0; variable in setasign\\Fpdi\\PdfParser\\Filter\\Lzw
88 $this->nextBits = 0;
175 $this->nextBits += 8;
177 if ($this->nextBits < $this->bitsToGet) {
179 $this->nextBits += 8;
182 …$code = ($this->nextData >> ($this->nextBits - $this->bitsToGet)) & $this->andTable[$this->bitsToG…
183 $this->nextBits -= $this->bitsToGet;
/dports/www/moodle39/moodle/mod/assign/feedback/editpdf/fpdi/PdfParser/Filter/
H A DLzw.php57 protected $nextBits = 0; variable in setasign\\Fpdi\\PdfParser\\Filter\\Lzw
89 $this->nextBits = 0;
177 $this->nextBits += 8;
179 if ($this->nextBits < $this->bitsToGet) {
181 $this->nextBits += 8;
184 …$code = ($this->nextData >> ($this->nextBits - $this->bitsToGet)) & $this->andTable[$this->bitsToG…
185 $this->nextBits -= $this->bitsToGet;
/dports/devel/itext/itext-4.2.0/core/com/lowagie/text/pdf/
H A DLZWDecoder.java65 int nextBits = 0; field in LZWDecoder
99 nextBits = 0; in decode()
227 nextBits += 8; in getNextCode()
229 if (nextBits < bitsToGet) { in getNextCode()
231 nextBits += 8; in getNextCode()
235 (nextData >> (nextBits - bitsToGet)) & andTable[bitsToGet-9]; in getNextCode()
236 nextBits -= bitsToGet; in getNextCode()
/dports/print/pdftk/pdftk-7d2ac3c1fa858f2c247c809fc6ef43f71f241098/java/com/gitlab/pdftk_java/com/lowagie/text/pdf/
H A DTIFFLZWDecoder.java46 int nextBits = 0; field in TIFFLZWDecoder
90 nextBits = 0; in decode()
244 nextBits += 8; in getNextCode()
246 if (nextBits < bitsToGet) { in getNextCode()
248 nextBits += 8; in getNextCode()
252 (nextData >> (nextBits - bitsToGet)) & andTable[bitsToGet-9]; in getNextCode()
253 nextBits -= bitsToGet; in getNextCode()
/dports/games/gogui/Quaqua/src/ch/randelshofer/quaqua/ext/batik/ext/awt/image/codec/tiff/
H A DTIFFLZWDecoder.java38 int nextBits = 0; field in TIFFLZWDecoder
79 nextBits = 0; in decode()
226 nextBits += 8; in getNextCode()
228 if (nextBits < bitsToGet) { in getNextCode()
230 nextBits += 8; in getNextCode()
234 (nextData >> (nextBits - bitsToGet)) & andTable[bitsToGet-9]; in getNextCode()
235 nextBits -= bitsToGet; in getNextCode()
/dports/devel/itext/itext-4.2.0/core/com/lowagie/text/pdf/codec/
H A DTIFFLZWDecoder.java64 int nextBits = 0; field in TIFFLZWDecoder
105 nextBits = 0; in decode()
254 nextBits += 8; in getNextCode()
256 if (nextBits < bitsToGet) { in getNextCode()
258 nextBits += 8; in getNextCode()
262 (nextData >> (nextBits - bitsToGet)) & andTable[bitsToGet-9]; in getNextCode()
263 nextBits -= bitsToGet; in getNextCode()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFLZWUtil.java44 int nextBits = 0; field in TIFFLZWUtil
62 this.nextBits = 0; in decode()
211 nextBits += 8; in getNextCode()
213 if (nextBits < bitsToGet) { in getNextCode()
215 nextBits += 8; in getNextCode()
219 (nextData >> (nextBits - bitsToGet)) & andTable[bitsToGet - 9]; in getNextCode()
220 nextBits -= bitsToGet; in getNextCode()
H A DTIFFLZWDecompressor.java60 private int nextBits = 0; field in TIFFLZWDecompressor
146 this.nextBits = 0; in decode()
287 nextBits += 8; in getNextCode()
289 if (nextBits < bitsToGet) { in getNextCode()
291 nextBits += 8; in getNextCode()
295 (nextData >> (nextBits - bitsToGet)) & andTable[bitsToGet - 9]; in getNextCode()
296 nextBits -= bitsToGet; in getNextCode()
/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/extsrc/com/lightcrafts/media/jai/codecimpl/
H A DTIFFLZWDecoder.java30 int nextBits = 0; field in TIFFLZWDecoder
71 nextBits = 0; in decode()
224 nextBits += 8; in getNextCode()
226 if (nextBits < bitsToGet) { in getNextCode()
228 nextBits += 8; in getNextCode()
232 (nextData >> (nextBits - bitsToGet)) & andTable[bitsToGet-9]; in getNextCode()
233 nextBits -= bitsToGet; in getNextCode()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFLZWUtil.java44 int nextBits = 0; field in TIFFLZWUtil
62 this.nextBits = 0; in decode()
211 nextBits += 8; in getNextCode()
213 if (nextBits < bitsToGet) { in getNextCode()
215 nextBits += 8; in getNextCode()
219 (nextData >> (nextBits - bitsToGet)) & andTable[bitsToGet - 9]; in getNextCode()
220 nextBits -= bitsToGet; in getNextCode()
H A DTIFFLZWDecompressor.java60 private int nextBits = 0; field in TIFFLZWDecompressor
146 this.nextBits = 0; in decode()
287 nextBits += 8; in getNextCode()
289 if (nextBits < bitsToGet) { in getNextCode()
291 nextBits += 8; in getNextCode()
295 (nextData >> (nextBits - bitsToGet)) & andTable[bitsToGet - 9]; in getNextCode()
296 nextBits -= bitsToGet; in getNextCode()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFLZWUtil.java44 int nextBits = 0; field in TIFFLZWUtil
62 this.nextBits = 0; in decode()
211 nextBits += 8; in getNextCode()
213 if (nextBits < bitsToGet) { in getNextCode()
215 nextBits += 8; in getNextCode()
219 (nextData >> (nextBits - bitsToGet)) & andTable[bitsToGet - 9]; in getNextCode()
220 nextBits -= bitsToGet; in getNextCode()
H A DTIFFLZWDecompressor.java60 private int nextBits = 0; field in TIFFLZWDecompressor
146 this.nextBits = 0; in decode()
287 nextBits += 8; in getNextCode()
289 if (nextBits < bitsToGet) { in getNextCode()
291 nextBits += 8; in getNextCode()
295 (nextData >> (nextBits - bitsToGet)) & andTable[bitsToGet - 9]; in getNextCode()
296 nextBits -= bitsToGet; in getNextCode()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFLZWUtil.java44 int nextBits = 0; field in TIFFLZWUtil
62 this.nextBits = 0; in decode()
211 nextBits += 8; in getNextCode()
213 if (nextBits < bitsToGet) { in getNextCode()
215 nextBits += 8; in getNextCode()
219 (nextData >> (nextBits - bitsToGet)) & andTable[bitsToGet - 9]; in getNextCode()
220 nextBits -= bitsToGet; in getNextCode()
H A DTIFFLZWDecompressor.java60 private int nextBits = 0; field in TIFFLZWDecompressor
146 this.nextBits = 0; in decode()
287 nextBits += 8; in getNextCode()
289 if (nextBits < bitsToGet) { in getNextCode()
291 nextBits += 8; in getNextCode()
295 (nextData >> (nextBits - bitsToGet)) & andTable[bitsToGet - 9]; in getNextCode()
296 nextBits -= bitsToGet; in getNextCode()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFLZWUtil.java44 int nextBits = 0; field in TIFFLZWUtil
62 this.nextBits = 0; in decode()
211 nextBits += 8; in getNextCode()
213 if (nextBits < bitsToGet) { in getNextCode()
215 nextBits += 8; in getNextCode()
219 (nextData >> (nextBits - bitsToGet)) & andTable[bitsToGet - 9]; in getNextCode()
220 nextBits -= bitsToGet; in getNextCode()
H A DTIFFLZWDecompressor.java60 private int nextBits = 0; field in TIFFLZWDecompressor
146 this.nextBits = 0; in decode()
287 nextBits += 8; in getNextCode()
289 if (nextBits < bitsToGet) { in getNextCode()
291 nextBits += 8; in getNextCode()
295 (nextData >> (nextBits - bitsToGet)) & andTable[bitsToGet - 9]; in getNextCode()
296 nextBits -= bitsToGet; in getNextCode()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFLZWUtil.java44 int nextBits = 0; field in TIFFLZWUtil
62 this.nextBits = 0; in decode()
211 nextBits += 8; in getNextCode()
213 if (nextBits < bitsToGet) { in getNextCode()
215 nextBits += 8; in getNextCode()
219 (nextData >> (nextBits - bitsToGet)) & andTable[bitsToGet - 9]; in getNextCode()
220 nextBits -= bitsToGet; in getNextCode()
H A DTIFFLZWDecompressor.java60 private int nextBits = 0; field in TIFFLZWDecompressor
146 this.nextBits = 0; in decode()
287 nextBits += 8; in getNextCode()
289 if (nextBits < bitsToGet) { in getNextCode()
291 nextBits += 8; in getNextCode()
295 (nextData >> (nextBits - bitsToGet)) & andTable[bitsToGet - 9]; in getNextCode()
296 nextBits -= bitsToGet; in getNextCode()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFLZWUtil.java44 int nextBits = 0; field in TIFFLZWUtil
62 this.nextBits = 0; in decode()
211 nextBits += 8; in getNextCode()
213 if (nextBits < bitsToGet) { in getNextCode()
215 nextBits += 8; in getNextCode()
219 (nextData >> (nextBits - bitsToGet)) & andTable[bitsToGet - 9]; in getNextCode()
220 nextBits -= bitsToGet; in getNextCode()
H A DTIFFLZWDecompressor.java60 private int nextBits = 0; field in TIFFLZWDecompressor
146 this.nextBits = 0; in decode()
287 nextBits += 8; in getNextCode()
289 if (nextBits < bitsToGet) { in getNextCode()
291 nextBits += 8; in getNextCode()
295 (nextData >> (nextBits - bitsToGet)) & andTable[bitsToGet - 9]; in getNextCode()
296 nextBits -= bitsToGet; in getNextCode()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFLZWUtil.java44 int nextBits = 0; field in TIFFLZWUtil
62 this.nextBits = 0; in decode()
211 nextBits += 8; in getNextCode()
213 if (nextBits < bitsToGet) { in getNextCode()
215 nextBits += 8; in getNextCode()
219 (nextData >> (nextBits - bitsToGet)) & andTable[bitsToGet - 9]; in getNextCode()
220 nextBits -= bitsToGet; in getNextCode()

12345