Searched refs:occ0 (Results 1 – 2 of 2) sorted by relevance
/external/pdfium/third_party/libtiff/ |
D | tif_predict.c | 47 static int PredictorDecodeRow(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s); 48 static int PredictorDecodeTile(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s); 457 PredictorDecodeRow(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s) in PredictorDecodeRow() argument 465 if ((*sp->decoderow)(tif, op0, occ0, s)) { in PredictorDecodeRow() 466 return (*sp->decodepfunc)(tif, op0, occ0); in PredictorDecodeRow() 479 PredictorDecodeTile(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s) in PredictorDecodeTile() argument 486 if ((*sp->decodetile)(tif, op0, occ0, s)) { in PredictorDecodeTile() 489 if((occ0%rowsize) !=0) in PredictorDecodeTile() 496 while (occ0 > 0) { in PredictorDecodeTile() 499 occ0 -= rowsize; in PredictorDecodeTile()
|
D | tif_lzw.c | 160 static int LZWDecode(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s); 162 static int LZWDecodeCompat(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s); 363 LZWDecode(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s) in LZWDecode() argument 368 long occ = (long) occ0; in LZWDecode() 384 if ((tmsize_t) occ != occ0) in LZWDecode() 603 LZWDecodeCompat(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s) in LZWDecodeCompat() argument 608 long occ = (long) occ0; in LZWDecodeCompat() 622 if ((tmsize_t) occ != occ0) in LZWDecodeCompat()
|