Lines Matching defs:row

169  * row in the dest image.  It's legal for the two source rows to point
793 * row in the dest image. It's legal for the two source rows to point
800 * \param srcWidth Width of a row in the source data
805 * \param dstWidth Width of a row in the destination data
806 * \param srcRowA Pointer to the row of destination data
1454 /* we just duplicate the input row, kind of hack, saves code */
1484 GLint row, srcRowStep;
1494 /* sample from one source row */
1501 for (row = 0; row < dstHeightNB; row++) {
1539 for (row = 1; row < srcHeight; row++) {
1540 memcpy(dstPtr + dstWidth * row * bpt,
1541 srcPtr + srcWidth * row * bpt, bpt);
1542 memcpy(dstPtr + (dstWidth * row + dstWidth - 1) * bpt,
1543 srcPtr + (srcWidth * row + srcWidth - 1) * bpt, bpt);
1548 for (row = 0; row < dstHeightNB; row += 2) {
1550 srcPtr + (srcWidth * (row * 2 + 1)) * bpt,
1551 srcPtr + (srcWidth * (row * 2 + 2)) * bpt,
1552 1, dstPtr + (dstWidth * row + 1) * bpt);
1554 srcPtr + (srcWidth * (row * 2 + 1) + srcWidth - 1) * bpt,
1555 srcPtr + (srcWidth * (row * 2 + 2) + srcWidth - 1) * bpt,
1556 1, dstPtr + (dstWidth * row + 1 + dstWidth - 1) * bpt);
1576 GLint img, row;
1596 * 3. take the two averaged rows and average them for the final dst row.
1616 /* setup the four source row pointers and the dest row pointer */
1623 for (row = 0; row < dstHeightNB; row++) {
1657 /* do border along [img][row=0][col=0] */
1662 /* do border along [img][row=dstHeight-1][col=0] */
1667 /* do border along [img][row=0][col=dstWidth-1] */
1672 /* do border along [img][row=dstHeight-1][col=dstWidth-1] */
1685 /* do border along [img][row=0][col=0] */
1691 /* do border along [img][row=dstHeight-1][col=0] */
1699 /* do border along [img][row=0][col=dstWidth-1] */
1705 /* do border along [img][row=dstHeight-1][col=dstWidth-1] */