Lines Matching defs:llen
730 int llen;
753 llen = sp->stride * td->td_imagewidth;
802 * if llen is not an exact multiple of nsamples, the decode operation
806 if (nsamples % llen) {
809 "%lu, data truncated.", (unsigned long) llen, (unsigned long) nsamples);
810 nsamples -= nsamples % llen;
813 for (i = 0; i < nsamples; i += llen, up += llen) {
816 horizontalAccumulateF(up, llen, sp->stride,
818 op += llen * sizeof(float);
821 horizontalAccumulate16(up, llen, sp->stride,
823 op += llen * sizeof(uint16);
826 horizontalAccumulate12(up, llen, sp->stride,
828 op += llen * sizeof(int16);
831 horizontalAccumulate11(up, llen, sp->stride,
833 op += llen * sizeof(uint16);
836 horizontalAccumulate8(up, llen, sp->stride,
838 op += llen * sizeof(unsigned char);
841 horizontalAccumulate8abgr(up, llen, sp->stride,
843 op += llen * sizeof(unsigned char);
1092 int llen;
1117 llen = sp->stride * td->td_imagewidth;
1119 for (i = 0, up = sp->tbuf; i < n; i += llen, up += llen) {
1122 horizontalDifferenceF((float *)bp, llen,
1124 bp += llen * sizeof(float);
1127 horizontalDifference16((uint16 *)bp, llen,
1129 bp += llen * sizeof(uint16);
1132 horizontalDifference8((unsigned char *)bp, llen,
1134 bp += llen * sizeof(unsigned char);