Lines Matching refs:crow
1067 int crow[MAX_COMPONENTS]; in tjCompressFromYUVPlanes() local
1072 crow[i] = row * compptr->v_samp_factor / cinfo->max_v_samp_factor; in tjCompressFromYUVPlanes()
1076 for (j = 0; j < MIN(th[i], ph[i] - crow[i]); j++) { in tjCompressFromYUVPlanes()
1077 memcpy(tmpbuf[i][j], inbuf[i][crow[i] + j], pw[i]); in tjCompressFromYUVPlanes()
1083 for (j = ph[i] - crow[i]; j < th[i]; j++) in tjCompressFromYUVPlanes()
1084 memcpy(tmpbuf[i][j], tmpbuf[i][ph[i] - crow[i] - 1], iw[i]); in tjCompressFromYUVPlanes()
1087 yuvptr[i] = &inbuf[i][crow[i]]; in tjCompressFromYUVPlanes()
1743 int crow[MAX_COMPONENTS]; in tjDecompressToYUVPlanes() local
1765 crow[i] = row * compptr->v_samp_factor / dinfo->max_v_samp_factor; in tjDecompressToYUVPlanes()
1767 else yuvptr[i] = &outbuf[i][crow[i]]; in tjDecompressToYUVPlanes()
1775 for (j = 0; j < MIN(th[i], ph[i] - crow[i]); j++) { in tjDecompressToYUVPlanes()
1776 memcpy(outbuf[i][crow[i] + j], tmpbuf[i][j], pw[i]); in tjDecompressToYUVPlanes()