Home | History | Annotate | Download | only in libtiff

Lines Matching defs:llen

760 	int llen;
783 llen = sp->stride * td->td_imagewidth;
845 * if llen is not an exact multiple of nsamples, the decode operation
849 if (nsamples % llen) {
852 "%lu, data truncated.", (unsigned long) llen, (unsigned long) nsamples);
853 nsamples -= nsamples % llen;
856 for (i = 0; i < nsamples; i += llen, up += llen) {
859 horizontalAccumulateF(up, llen, sp->stride,
861 op += llen * sizeof(float);
864 horizontalAccumulate16(up, llen, sp->stride,
866 op += llen * sizeof(uint16);
869 horizontalAccumulate12(up, llen, sp->stride,
871 op += llen * sizeof(int16);
874 horizontalAccumulate11(up, llen, sp->stride,
876 op += llen * sizeof(uint16);
879 horizontalAccumulate8(up, llen, sp->stride,
881 op += llen * sizeof(unsigned char);
884 horizontalAccumulate8abgr(up, llen, sp->stride,
886 op += llen * sizeof(unsigned char);
1126 int llen;
1151 llen = sp->stride * td->td_imagewidth;
1153 if( n > (tmsize_t)(td->td_rowsperstrip * llen) )
1160 for (i = 0, up = sp->tbuf; i < n; i += llen, up += llen) {
1163 horizontalDifferenceF((float *)bp, llen,
1165 bp += llen * sizeof(float);
1168 horizontalDifference16((uint16 *)bp, llen,
1170 bp += llen * sizeof(uint16);
1173 horizontalDifference8((unsigned char *)bp, llen,
1175 bp += llen * sizeof(unsigned char);