Home | History | Annotate | Download | only in jni

Lines Matching defs:endX

202     // The line is defined by (startX, startY) -> (endX, endY), computed via the
208 int endX;
210 transform_.Map(output_width - 1, y, &endX, &endY);
212 // Clamp (startX, startY) and (endX, endY) to the valid bounds of the plane.
215 endX = min(endX, plane_.width - 1);
219 endX = max(endX, 0);
225 int dx = sgn(endX - startX);
230 // The index into plane_.data of (endX, endY)
231 int plane_end = endX * plane_.pixel_stride + endY * plane_.row_stride;
235 // In the degenerate-case of a 1x1 plane, startX and endX are equal, so