Searched defs:x1 (Results 176 - 200 of 673) sorted by relevance

1234567891011>>

/external/pdfium/core/src/fxge/agg/agg23/
H A Dfx_agg_curves.cpp28 void curve4_div::init(FX_FLOAT x1, FX_FLOAT y1, argument
36 bezier(x1, y1, x2, y2, x3, y3, x4, y4);
39 void curve4_div::recursive_bezier(FX_FLOAT x1, FX_FLOAT y1, argument
48 FX_FLOAT x12 = (x1 + x2) / 2;
60 FX_FLOAT dx = x4 - x1;
67 if(FXSYS_fabs(x1 + x3 - x2 - x2) +
97 recursive_bezier(x1, y1, x12, y12, x123, y123, x1234, y1234, level + 1);
100 void curve4_div::bezier(FX_FLOAT x1, FX_FLOAT y1, argument
105 m_points.add(point_type(x1, y1));
106 recursive_bezier(x1, y
[all...]
/external/pdfium/core/src/fxge/agg/include/
H A Dfx_agg_driver.h65 virtual FX_BOOL DrawCosmeticLine(FX_FLOAT x1, FX_FLOAT y1, FX_FLOAT x2, FX_FLOAT y2, FX_DWORD color, argument
/external/pixman/demos/
H A Dradial-test.c96 double x0, x1, radius0, radius1, left, right, center; local
99 x1 = 1;
104 left = MIN (x0 - radius0, x1 - radius1);
105 right = MAX (x0 + radius0, x1 + radius1);
108 x1 -= center;
110 /* scale to make it fit within a 1x1 rect centered in (0,0) */
112 x1 *= 0.25;
119 p1.x = pixman_double_to_fixed (x1);
156 * origin and whose interesting part fits a 1x1 square. We want to
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPath.java40 public void quadTo(float x1, float y1, float x2, float y2) { argument
41 quadDescription = "Add a quadratic bezier from last point, approaching (" + x1 + "," + y1 + "), " +
/external/skia/experimental/
H A DSkSetPoly3To3.cpp20 SkScalar x1 = pts1[i].fX - ave1.fX; local
22 op[0] += SkScalarMul(x0, x1);
24 op[2] += SkScalarMul(y0, x1);
H A DSkSetPoly3To3_A.cpp33 SkScalar x1 = pts1[i].fX - ave1.fX; local
35 op[0] += SkScalarMul(x0, x1);
37 op[2] += SkScalarMul(y0, x1);
H A DSkSetPoly3To3_D.cpp35 SkScalar x1 = pts1[i].fX - ave1.fX; local
37 tmp[0] += SkDScalar_setMul(x0, x1);
39 tmp[2] += SkDScalar_setMul(y0, x1);
/external/skia/src/animator/
H A DSkPathParts.h71 SkScalar x1; member in class:SkQuadTo
89 SkScalar x1; member in class:SkCubicTo
/external/skia/src/core/
H A DSkBitmapFilter.cpp45 int x1 = SkClampMax(SkScalarFloorToInt(srcPt.fX+s.getBitmapFilter()->width())+1, maxX); local
50 for (int srcX = x0; srcX < x1 ; srcX++) {
H A DSkBitmapProcState_shaderproc.h61 unsigned x1 = TILEX_PROCF((fx + oneX), maxX); local
65 SRC_TO_FILTER(row0[x1]),
67 SRC_TO_FILTER(row1[x1]),
/external/srtp/tables/
H A Daes_tables.c94 uint32_t x1, x2, x3; local
102 x1 = aes_sbox[i];
103 x2 = gf2_8_shift(x1);
104 x3 = x2 ^ x1;
107 tmp.v8[1] = x1;
108 tmp.v8[2] = x1;
114 tmp.v8[2] = x1;
115 tmp.v8[3] = x1;
118 tmp.v8[0] = x1;
121 tmp.v8[3] = x1;
[all...]
/external/tremolo/Tremolo/
H A Dasm_arm.h73 int x1, y1, l; local
79 : "=&r" (l), "=&r" (x1), "=&r" (y1), "=r" (a)
82 *x = x1;
92 int x1, y1, l; local
98 : "=&r" (l), "=&r" (x1), "=&r" (y1), "=r" (a)
101 *x = x1 << 1;
111 int x1, y1, l; local
117 : "=&r" (l), "=&r" (x1), "=&r" (y1)
120 *x = x1 << 1;
/external/valgrind/main/memcheck/tests/
H A Dmempool2.c118 char *x1, *x2; local
130 x1 = allocate(p1, 10);
135 res += x1[-1];
136 res += x1[10];
145 VALGRIND_MEMPOOL_FREE(p1, x1);
146 res += x1[5];
155 VALGRIND_MEMPOOL_FREE(p1, x1);
/external/aac/libFDK/src/
H A Dmdct.cpp345 FIXP_DBL x0, x1; local
347 cplxMult(&x1, &x0, *pCurr++, - *pOvl--, pWindow[i]);
349 *pOut1 = IMDCT_SCALE_DBL(-x1);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DECFieldElement.java388 protected BigInteger modAdd(BigInteger x1, BigInteger x2) argument
390 BigInteger x3 = x1.add(x2);
408 protected BigInteger modMult(BigInteger x1, BigInteger x2) argument
410 return modReduce(x1.multiply(x2));
/external/ceres-solver/examples/
H A Dlibmv_homography.cc105 // forward_error = D(H * x1, x2)
106 // backward_error = D(H^-1 * x2, x1)
111 const Eigen::Matrix<T, 2, 1> &x1,
116 Vec3 x(x1(0), x1(1), T(1.0));
133 // D(H * x1, x2)^2 + D(H^-1 * x2, x1)^2
136 const Vec2 &x1,
140 x1,
188 // | 1 0 -x1| * |
110 SymmetricGeometricDistanceTerms(const Eigen::Matrix<T, 3, 3> &H, const Eigen::Matrix<T, 2, 1> &x1, const Eigen::Matrix<T, 2, 1> &x2, T forward_error[2], T backward_error[2]) argument
135 SymmetricGeometricDistance(const Mat3 &H, const Vec2 &x1, const Vec2 &x2) argument
197 Homography2DFromCorrespondencesLinearEuc( const Mat &x1, const Mat &x2, Mat3 *H, double expected_precision) argument
281 TerminationCheckingCallback(const Mat &x1, const Mat &x2, const EstimateHomographyOptions &options, Mat3 *H) argument
316 EstimateHomography2DFromCorrespondences( const Mat &x1, const Mat &x2, const EstimateHomographyOptions &options, Mat3 *H) argument
[all...]
/external/ceres-solver/internal/ceres/
H A Devaluator_test.cc572 double x1 = parameters[0][0]; local
574 residuals[0] = x1 * x1;
580 jacobian[0] = 2.0 * x1;
H A Dproblem.cc66 double* x0, double* x1) {
69 x0, x1);
75 double* x0, double* x1, double* x2) {
78 x0, x1, x2);
84 double* x0, double* x1, double* x2, double* x3) {
87 x0, x1, x2, x3);
93 double* x0, double* x1, double* x2, double* x3, double* x4) {
96 x0, x1, x2, x3, x4);
102 double* x0, double* x1, double* x2, double* x3, double* x4, double* x5) {
105 x0, x1, x
63 AddResidualBlock( CostFunction* cost_function, LossFunction* loss_function, double* x0, double* x1) argument
72 AddResidualBlock( CostFunction* cost_function, LossFunction* loss_function, double* x0, double* x1, double* x2) argument
81 AddResidualBlock( CostFunction* cost_function, LossFunction* loss_function, double* x0, double* x1, double* x2, double* x3) argument
90 AddResidualBlock( CostFunction* cost_function, LossFunction* loss_function, double* x0, double* x1, double* x2, double* x3, double* x4) argument
99 AddResidualBlock( CostFunction* cost_function, LossFunction* loss_function, double* x0, double* x1, double* x2, double* x3, double* x4, double* x5) argument
108 AddResidualBlock( CostFunction* cost_function, LossFunction* loss_function, double* x0, double* x1, double* x2, double* x3, double* x4, double* x5, double* x6) argument
118 AddResidualBlock( CostFunction* cost_function, LossFunction* loss_function, double* x0, double* x1, double* x2, double* x3, double* x4, double* x5, double* x6, double* x7) argument
128 AddResidualBlock( CostFunction* cost_function, LossFunction* loss_function, double* x0, double* x1, double* x2, double* x3, double* x4, double* x5, double* x6, double* x7, double* x8) argument
138 AddResidualBlock( CostFunction* cost_function, LossFunction* loss_function, double* x0, double* x1, double* x2, double* x3, double* x4, double* x5, double* x6, double* x7, double* x8, double* x9) argument
[all...]
H A Dtrust_region_minimizer_test.cc91 const double x1 = state[0]; local
97 << "x1=" << x1 << ", "
102 const double f1 = x1 + 10.0 * x2;
105 const double f4 = sqrt(10.0) * pow(x1 - x4, 2.0);
138 sqrt(10.0) * 2.0 * (x1 - x4) * (1.0 - x4);
161 sqrt(10.0) * 2.0 * (x1 - x4) * (x1 - 1.0);
169 gradient[column_index++] = f1 + f4 * sqrt(10.0) * 2.0 * (x1 - x4);
183 -f2 * sqrt(5.0) + f4 * sqrt(10.0) * 2.0 * (x4 - x1);
[all...]
/external/chromium_org/chrome/browser/devtools/device/usb/
H A Dandroid_rsa.cc40 uint64 x1 = 0, x2 = 1, y1 = 1, y2 = 0; local
45 *x = x2 - q * x1;
49 x2 = x1;
50 x1 = *x;
/external/chromium_org/content/browser/renderer_host/
H A Dcompositing_iosurface_mac.h153 void set_rect(float x1, float y1, float x2, float y2) { argument
154 verts_[0].set_position(x1, y1);
155 verts_[1].set_position(x1, y2);
/external/chromium_org/content/renderer/pepper/
H A Dpepper_graphics_2d_host_unittest.cc103 int x1; member in struct:content::__anon7796
151 gfx::Rect r1(tests[i].x1, tests[i].y1, tests[i].w1, tests[i].h1);
/external/chromium_org/media/tools/player_x11/
H A Dgl_video_renderer.cc240 float x1 = static_cast<float>(visible_rect.right()) / coded_size.width(); local
244 verts[4] = x1; verts[5] = y0;
245 verts[6] = x1; verts[7] = y1;
/external/chromium_org/native_client_sdk/src/examples/api/mouse_cursor/
H A Dmouse_cursor.cc101 void DrawHorizontalLine(int x1, int x2, int y, argument
105 for (int x = x1; x <= x2; ++x) {
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasPathMethods.cpp110 void CanvasPathMethods::arcTo(float x1, float y1, float x2, float y2, float r, ExceptionState& exceptionState) argument
112 if (!std::isfinite(x1) || !std::isfinite(y1) || !std::isfinite(x2) || !std::isfinite(y2) || !std::isfinite(r))
123 FloatPoint p1 = FloatPoint(x1, y1);
129 lineTo(x1, y1);

Completed in 447 milliseconds

1234567891011>>