Lines Matching refs:crow
1167 int crow[MAX_COMPONENTS]; in tjCompressFromYUVPlanes() local
1171 crow[i]=row*compptr->v_samp_factor/cinfo->max_v_samp_factor; in tjCompressFromYUVPlanes()
1175 for(j=0; j<min(th[i], ph[i]-crow[i]); j++) in tjCompressFromYUVPlanes()
1177 memcpy(tmpbuf[i][j], inbuf[i][crow[i]+j], pw[i]); in tjCompressFromYUVPlanes()
1182 for(j=ph[i]-crow[i]; j<th[i]; j++) in tjCompressFromYUVPlanes()
1183 memcpy(tmpbuf[i][j], tmpbuf[i][ph[i]-crow[i]-1], iw[i]); in tjCompressFromYUVPlanes()
1187 yuvptr[i]=&inbuf[i][crow[i]]; in tjCompressFromYUVPlanes()
1852 int crow[MAX_COMPONENTS]; in tjDecompressToYUVPlanes() local
1874 crow[i]=row*compptr->v_samp_factor/dinfo->max_v_samp_factor; in tjDecompressToYUVPlanes()
1876 else yuvptr[i]=&outbuf[i][crow[i]]; in tjDecompressToYUVPlanes()
1885 for(j=0; j<min(th[i], ph[i]-crow[i]); j++) in tjDecompressToYUVPlanes()
1887 memcpy(outbuf[i][crow[i]+j], tmpbuf[i][j], pw[i]); in tjDecompressToYUVPlanes()