Lines Matching refs:uint8
37 static int horAcc8(TIFF* tif, uint8* cp0, tmsize_t cc);
38 static int horAcc16(TIFF* tif, uint8* cp0, tmsize_t cc);
39 static int horAcc32(TIFF* tif, uint8* cp0, tmsize_t cc);
40 static int swabHorAcc16(TIFF* tif, uint8* cp0, tmsize_t cc);
41 static int swabHorAcc32(TIFF* tif, uint8* cp0, tmsize_t cc);
42 static int horDiff8(TIFF* tif, uint8* cp0, tmsize_t cc);
43 static int horDiff16(TIFF* tif, uint8* cp0, tmsize_t cc);
44 static int horDiff32(TIFF* tif, uint8* cp0, tmsize_t cc);
45 static int swabHorDiff16(TIFF* tif, uint8* cp0, tmsize_t cc);
46 static int swabHorDiff32(TIFF* tif, uint8* cp0, tmsize_t cc);
47 static int fpAcc(TIFF* tif, uint8* cp0, tmsize_t cc);
48 static int fpDiff(TIFF* tif, uint8* cp0, tmsize_t cc);
49 static int PredictorDecodeRow(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s);
50 static int PredictorDecodeTile(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s);
51 static int PredictorEncodeRow(TIFF* tif, uint8* bp, tmsize_t cc, uint16 s);
52 static int PredictorEncodeTile(TIFF* tif, uint8* bp0, tmsize_t cc0, uint16 s);
277 horAcc8(TIFF* tif, uint8* cp0, tmsize_t cc) in horAcc8()
334 swabHorAcc16(TIFF* tif, uint8* cp0, tmsize_t cc) in swabHorAcc16()
344 horAcc16(TIFF* tif, uint8* cp0, tmsize_t cc) in horAcc16()
368 swabHorAcc32(TIFF* tif, uint8* cp0, tmsize_t cc) in swabHorAcc32()
378 horAcc32(TIFF* tif, uint8* cp0, tmsize_t cc) in horAcc32()
405 fpAcc(TIFF* tif, uint8* cp0, tmsize_t cc) in fpAcc()
411 uint8 *cp = (uint8 *) cp0; in fpAcc()
412 uint8 *tmp; in fpAcc()
421 tmp = (uint8 *)_TIFFmalloc(cc); in fpAcc()
432 cp = (uint8 *) cp0; in fpAcc()
452 PredictorDecodeRow(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s) in PredictorDecodeRow()
474 PredictorDecodeTile(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s) in PredictorDecodeTile()
503 horDiff8(TIFF* tif, uint8* cp0, tmsize_t cc) in horDiff8()
556 horDiff16(TIFF* tif, uint8* cp0, tmsize_t cc) in horDiff16()
582 swabHorDiff16(TIFF* tif, uint8* cp0, tmsize_t cc) in swabHorDiff16()
595 horDiff32(TIFF* tif, uint8* cp0, tmsize_t cc) in horDiff32()
621 swabHorDiff32(TIFF* tif, uint8* cp0, tmsize_t cc) in swabHorDiff32()
637 fpDiff(TIFF* tif, uint8* cp0, tmsize_t cc) in fpDiff()
643 uint8 *cp = (uint8 *) cp0; in fpDiff()
644 uint8 *tmp; in fpDiff()
653 tmp = (uint8 *)_TIFFmalloc(cc); in fpDiff()
671 cp = (uint8 *) cp0; in fpDiff()
679 PredictorEncodeRow(TIFF* tif, uint8* bp, tmsize_t cc, uint16 s) in PredictorEncodeRow()
694 PredictorEncodeTile(TIFF* tif, uint8* bp0, tmsize_t cc0, uint16 s) in PredictorEncodeTile()
698 uint8 *working_copy; in PredictorEncodeTile()
711 working_copy = (uint8*) _TIFFmalloc(cc0); in PredictorEncodeTile()