Home | History | Annotate | Download | only in libtiff

Lines Matching defs:llen

746 	int llen;
769 llen = sp->stride * td->td_imagewidth;
818 * if llen is not an exact multiple of nsamples, the decode operation
822 if (nsamples % llen) {
825 "%lu, data truncated.", (unsigned long) llen, (unsigned long) nsamples);
826 nsamples -= nsamples % llen;
829 for (i = 0; i < nsamples; i += llen, up += llen) {
832 horizontalAccumulateF(up, llen, sp->stride,
834 op += llen * sizeof(float);
837 horizontalAccumulate16(up, llen, sp->stride,
839 op += llen * sizeof(uint16);
842 horizontalAccumulate12(up, llen, sp->stride,
844 op += llen * sizeof(int16);
847 horizontalAccumulate11(up, llen, sp->stride,
849 op += llen * sizeof(uint16);
852 horizontalAccumulate8(up, llen, sp->stride,
854 op += llen * sizeof(unsigned char);
857 horizontalAccumulate8abgr(up, llen, sp->stride,
859 op += llen * sizeof(unsigned char);
1108 int llen;
1133 llen = sp->stride * td->td_imagewidth;
1135 for (i = 0, up = sp->tbuf; i < n; i += llen, up += llen) {
1138 horizontalDifferenceF((float *)bp, llen,
1140 bp += llen * sizeof(float);
1143 horizontalDifference16((uint16 *)bp, llen,
1145 bp += llen * sizeof(uint16);
1148 llen,
1150 bp += llen * sizeof(unsigned char);