Lines Matching full:cp0
37 static void horAcc8(TIFF* tif, uint8* cp0, tmsize_t cc);
38 static void horAcc16(TIFF* tif, uint8* cp0, tmsize_t cc);
39 static void horAcc32(TIFF* tif, uint8* cp0, tmsize_t cc);
40 static void swabHorAcc16(TIFF* tif, uint8* cp0, tmsize_t cc);
41 static void swabHorAcc32(TIFF* tif, uint8* cp0, tmsize_t cc);
42 static void horDiff8(TIFF* tif, uint8* cp0, tmsize_t cc);
43 static void horDiff16(TIFF* tif, uint8* cp0, tmsize_t cc);
44 static void horDiff32(TIFF* tif, uint8* cp0, tmsize_t cc);
45 static void swabHorDiff16(TIFF* tif, uint8* cp0, tmsize_t cc);
46 static void swabHorDiff32(TIFF* tif, uint8* cp0, tmsize_t cc);
47 static void fpAcc(TIFF* tif, uint8* cp0, tmsize_t cc);
48 static void fpDiff(TIFF* tif, uint8* cp0, tmsize_t cc);
268 horAcc8(TIFF* tif, uint8* cp0, tmsize_t cc)
272 unsigned char* cp = (unsigned char*) cp0;
318 swabHorAcc16(TIFF* tif, uint8* cp0, tmsize_t cc)
320 uint16* wp = (uint16*) cp0;
324 horAcc16(tif, cp0, cc);
328 horAcc16(TIFF* tif, uint8* cp0, tmsize_t cc)
331 uint16* wp = (uint16*) cp0;
346 swabHorAcc32(TIFF* tif, uint8* cp0, tmsize_t cc)
348 uint32* wp = (uint32*) cp0;
352 horAcc32(tif, cp0, cc);
356 horAcc32(TIFF* tif, uint8* cp0, tmsize_t cc)
359 uint32* wp = (uint32*) cp0;
377 fpAcc(TIFF* tif, uint8* cp0, tmsize_t cc)
383 uint8 *cp = (uint8 *) cp0;
397 _TIFFmemcpy(tmp, cp0, cc);
398 cp = (uint8 *) cp0;
463 horDiff8(TIFF* tif, uint8* cp0, tmsize_t cc)
467 unsigned char* cp = (unsigned char*) cp0;
510 horDiff16(TIFF* tif, uint8* cp0, tmsize_t cc)
514 uint16 *wp = (uint16*) cp0;
530 swabHorDiff16(TIFF* tif, uint8* cp0, tmsize_t cc)
532 uint16* wp = (uint16*) cp0;
535 horDiff16(tif, cp0, cc);
541 horDiff32(TIFF* tif, uint8* cp0, tmsize_t cc)
545 uint32 *wp = (uint32*) cp0;
561 swabHorDiff32(TIFF* tif, uint8* cp0, tmsize_t cc)
563 uint32* wp = (uint32*) cp0;
566 horDiff32(tif, cp0, cc);
575 fpDiff(TIFF* tif, uint8* cp0, tmsize_t cc)
581 uint8 *cp = (uint8 *) cp0;
589 _TIFFmemcpy(tmp, cp0, cc);
603 cp = (uint8 *) cp0;