Searched refs:point_y (Results 1 – 9 of 9) sorted by relevance
/external/pdfium/core/fxge/ |
D | cfx_pathdata.cpp | 25 float point_y; in UpdateLineEndPoints() local 27 point_y = end_pos.y - hw; in UpdateLineEndPoints() 29 point_y = end_pos.y + hw; in UpdateLineEndPoints() 31 rect->UpdateRect(CFX_PointF(end_pos.x + hw, point_y)); in UpdateLineEndPoints() 32 rect->UpdateRect(CFX_PointF(end_pos.x - hw, point_y)); in UpdateLineEndPoints() 78 float point_y = mid_pos.y + half_width * start_dir; in UpdateLineJoinPoints() local 79 rect->UpdateRect(CFX_PointF(mid_pos.x + half_width, point_y)); in UpdateLineJoinPoints() 80 rect->UpdateRect(CFX_PointF(mid_pos.x - half_width, point_y)); in UpdateLineJoinPoints()
|
/external/libmojo/ui/gfx/geometry/ |
D | rect_f.cc | 85 bool RectF::Contains(float point_x, float point_y) const { in Contains() 86 return (point_x >= x()) && (point_x < right()) && (point_y >= y()) && in Contains() 87 (point_y < bottom()); in Contains()
|
D | rect.cc | 162 bool Rect::Contains(int point_x, int point_y) const { in Contains() 163 return (point_x >= x()) && (point_x < right()) && (point_y >= y()) && in Contains() 164 (point_y < bottom()); in Contains()
|
D | rect_f.h | 113 bool Contains(float point_x, float point_y) const;
|
D | rect.h | 151 bool Contains(int point_x, int point_y) const;
|
/external/boringssl/src/crypto/fipsmodule/ec/ |
D | p256-x86_64.c | 392 BN_ULONG point_x[P256_LIMBS], point_y[P256_LIMBS], point_z[P256_LIMBS]; in ecp_nistz256_get_affine() local 400 !ecp_nistz256_bignum_to_field_elem(point_y, &point->Y) || in ecp_nistz256_get_affine() 427 ecp_nistz256_mul_mont(y_aff, z_inv3, point_y); in ecp_nistz256_get_affine()
|
/external/deqp/external/openglcts/modules/glesext/geometry_shader/ |
D | esextcGeometryShaderRendering.cpp | 1885 int point_y = 6 * instance_id; in verify() local 1912 t1[1] = point_y + 6; in verify() 1914 t1[3] = point_y; in verify() 1916 t1[5] = point_y + 6; in verify() 1919 t2[1] = point_y + 6; in verify() 1921 t2[3] = point_y; in verify() 1923 t2[5] = point_y; in verify() 1933 point_y = t1_center[1]; in verify() 1935 rendered_data = data + point_y * row_width + point_x * 4 /* components */; in verify() 1940 …m_testCtx.getLog() << tcu::TestLog::Message << "At (" << (int)point_x << ", " << (int)point_y << "… in verify() [all …]
|
/external/mesa3d/src/gallium/drivers/vc4/ |
D | vc4_qir.h | 456 struct qreg line_x, point_x, point_y; member
|
D | vc4_program.c | 1598 c->inputs[loc * 4 + 1] = c->point_y; in ntq_setup_inputs() 2207 c->point_y = emit_fragment_varying(c, ~0, 0); in vc4_shader_ntq()
|