Lines Matching refs:crow
1037 int crow[MAX_COMPONENTS]; in tjCompressFromYUVPlanes() local
1042 crow[i] = row * compptr->v_samp_factor / cinfo->max_v_samp_factor; in tjCompressFromYUVPlanes()
1046 for (j = 0; j < MIN(th[i], ph[i] - crow[i]); j++) { in tjCompressFromYUVPlanes()
1047 memcpy(tmpbuf[i][j], inbuf[i][crow[i] + j], pw[i]); in tjCompressFromYUVPlanes()
1053 for (j = ph[i] - crow[i]; j < th[i]; j++) in tjCompressFromYUVPlanes()
1054 memcpy(tmpbuf[i][j], tmpbuf[i][ph[i] - crow[i] - 1], iw[i]); in tjCompressFromYUVPlanes()
1057 yuvptr[i] = &inbuf[i][crow[i]]; in tjCompressFromYUVPlanes()
1692 int crow[MAX_COMPONENTS]; in tjDecompressToYUVPlanes() local
1714 crow[i] = row * compptr->v_samp_factor / dinfo->max_v_samp_factor; in tjDecompressToYUVPlanes()
1716 else yuvptr[i] = &outbuf[i][crow[i]]; in tjDecompressToYUVPlanes()
1724 for (j = 0; j < MIN(th[i], ph[i] - crow[i]); j++) { in tjDecompressToYUVPlanes()
1725 memcpy(outbuf[i][crow[i] + j], tmpbuf[i][j], pw[i]); in tjDecompressToYUVPlanes()