Lines Matching defs:ylen
122 unsigned int instructions,line,todo,ylen,chroma;
174 for (todo = ybpl; todo > 0; todo -= ylen) {
182 ylen = todo;
183 if (yoffset + ylen > sg_dma_len(ysg))
184 ylen = sg_dma_len(ysg) - yoffset;
195 if (uoffset + (ylen>>hshift) > sg_dma_len(usg))
196 ylen = (sg_dma_len(usg) - uoffset) << hshift;
197 if (voffset + (ylen>>hshift) > sg_dma_len(vsg))
198 ylen = (sg_dma_len(vsg) - voffset) << hshift;
205 if (ylen == todo)
209 *(rp++)=cpu_to_le32(ri | ylen);
210 *(rp++)=cpu_to_le32(((ylen >> hshift) << 16) |
211 (ylen >> hshift));
213 yoffset += ylen;
216 uoffset += ylen >> hshift;
218 voffset += ylen >> hshift;