Searched defs:y0 (Results 1 - 25 of 178) sorted by relevance

12345678

/external/clang/test/PCH/
H A Dfunctions.c8 int f0(int x0, int y0, ...) { return x0 + y0; } argument
H A Dpr4489.c25 struct y0 { int i; } y0[1] = {}; variable in typeref:struct:y0
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
H A DFirstOrderIntegrator.java45 * @param y0 initial value of the state vector at t0
49 * step (and hence at the end of integration), can be the same object as y0
58 double t0, double[] y0,
57 integrate(FirstOrderDifferentialEquations equations, double t0, double[] y0, double t, double[] y) argument
H A DSecondOrderIntegrator.java41 * @param y0 initial value of the state vector at t0
48 * same object as y0
56 double t0, double[] y0, double[] yDot0,
55 integrate(SecondOrderDifferentialEquations equations, double t0, double[] y0, double[] yDot0, double t, double[] y, double[] yDot) argument
/external/clang/test/SemaCXX/
H A Dwarn-literal-conversion.cpp8 int y0 = 1.2222F; // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2222 to 1}} local
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_rect.h36 int y0, y1; member in struct:u_rect
47 a->y1 < b->y0 ||
48 b->y1 < a->y0));
61 if (b->y0 < a->y0) b->y0 = a->y0;
74 b->x0 = b->x1 = b->y0 = b->y1 = 0;
H A Du_draw_quad.c100 float x0, float y0, float x1, float y1, float z)
123 v[1] = y0;
128 v[9] = y0;
99 util_draw_texquad(struct pipe_context *pipe, struct cso_context *cso, float x0, float y0, float x1, float y1, float z) argument
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
H A DRungeKuttaIntegrator.java96 final double t0, final double[] y0,
100 sanityChecks(equations, t0, y0, t, y);
107 if (y != y0) {
108 System.arraycopy(y0, 0, y, 0, y0.length);
112 yDotK [i] = new double[y0.length];
114 final double[] yTmp = new double[y0.length];
115 final double[] yDotTmp = new double[y0.length];
148 for (int j = 0; j < y0.length; ++j) {
161 for (int j = 0; j < y0
95 integrate(final FirstOrderDifferentialEquations equations, final double t0, final double[] y0, final double t, final double[] y) argument
[all...]
H A DAdamsBashforthIntegrator.java189 final double t0, final double[] y0,
193 final int n = y0.length;
194 sanityChecks(equations, t0, y0, t, y);
200 if (y != y0) {
201 System.arraycopy(y0, 0, y, 0, n);
259 System.arraycopy(interpolator.getInterpolatedState(), 0, y, 0, y0.length);
265 final double[] predictedScaled = new double[y0.length];
266 for (int j = 0; j < y0.length; ++j) {
188 integrate(final FirstOrderDifferentialEquations equations, final double t0, final double[] y0, final double t, final double[] y) argument
H A DHighamHall54Integrator.java108 final double[] y0, final double[] y1,
119 final double yScale = FastMath.max(FastMath.abs(y0[j]), FastMath.abs(y1[j]));
107 estimateError(final double[][] yDotK, final double[] y0, final double[] y1, final double h) argument
/external/clang/test/CXX/temp/temp.spec/
H A Dno-body.cpp26 template<typename T> struct y0 { }; struct
33 template struct y0 { }; // expected-error {{class cannot be defined in an explicit instantiation; if this declaration is meant to be a class definition, remove the 'template' keyword}} struct in namespace:noargs_body
/external/clang/test/Index/
H A Dload-exprs.c30 struct Y y0 = { .array[StartIndex].b = bval, .array[StartIndex].a = aval }; local
67 // CHECK: load-exprs.c:30:12: VarDecl=y0:30:12 (Definition) Extent=[30:3 - 30:77]
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnv30_transfer.h16 unsigned y0; member in struct:nv30_rect
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_quad_stipple.c32 const int y0 = quad->input.y0; local
33 const int y1 = y0 + 1;
34 const uint stipple0 = softpipe->poly_stipple.stipple[y0 % 32];
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
H A DBrentSolver.java292 * @param y0 function value at the approximation for the root
304 double x0, double y0,
319 y0 = y1;
321 y2 = y0;
338 (FastMath.abs(y0) <= FastMath.abs(y1))) {
343 double r3 = y1 / y0;
355 double r1 = y0 / y2;
379 y0 = y1;
391 y2 = y0;
303 solve(final UnivariateRealFunction f, double x0, double y0, double x1, double y1, double x2, double y2) argument
/external/clang/test/CXX/over/over.over/
H A Dp1.cpp89 Y0<f0> y0; variable
/external/libhevc/decoder/
H A Dihevcd_intra_pred_mode_prediction.c108 WORD32 y0)
149 pu1_pic_intra_flag += ((y0 - 8) / 8) * numbytes_row;
174 pu1_pic_intra_flag += (y0 / 8) * numbytes_row;
105 ihevcd_intra_pred_mode_prediction(codec_t *ps_codec, WORD32 log2_cb_size, WORD32 x0, WORD32 y0) argument
/external/libvpx/libvpx/vp8/common/
H A Dtextblit.c61 void vp8_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, const int pitch) argument
63 int steep = abs(y1 - y0) > abs(x1 - x0);
71 x0 = y0;
72 y0 = t;
86 t = y0;
87 y0 = y1;
92 deltay = abs(y1 - y0);
95 y = y0;
97 if (y0 < y1)
/external/libvpx/libvpx/vp8/encoder/arm/neon/
H A Dfastquantizeb_neon.c33 int16x8_t x0, x1, sz0, sz1, y0, y1; local
52 y0 = vqdmulhq_s16(x0, quant0);
56 y0 = vshrq_n_s16(y0, 1);
60 y0 = veorq_s16(y0, sz0);
62 x0 = vsubq_s16(y0, sz0);
/external/libvpx/libvpx/vp8/encoder/x86/
H A Dquantize_ssse3.c54 __m128i sz0, sz1, x, x0, x1, y0, y1, zeros, abs0, abs1; local
73 y0 = _mm_mulhi_epi16(x0, quant_fast0);
79 abs0 = y0;
83 y0 = _mm_xor_si128(y0, sz0);
85 x0 = _mm_sub_epi16(y0, sz0);
/external/libvpx/libvpx/vp9/common/
H A Dvp9_textblit.c60 void vp9_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, argument
62 int steep = abs(y1 - y0) > abs(x1 - x0);
69 x0 = y0;
70 y0 = t;
83 t = y0;
84 y0 = y1;
89 deltay = abs(y1 - y0);
92 y = y0;
94 if (y0 < y1)
/external/mesa3d/src/mesa/drivers/x11/
H A Dxm_line.c427 int y0 = YFLIP(xrb, (GLint) vert0->attrib[FRAG_ATTRIB_WPOS][1]); local
434 XDrawLine(dpy, xrb->pixmap, gc, x0, y0, x1, y1);
/external/skia/bench/
H A DShaderMaskBench.cpp69 const SkScalar y0 = SkIntToScalar(-10); local
74 SkScalar y = y0 + rand.nextUScalar1() * dim.fY;
81 SkScalar y = y0 + rand.nextUScalar1() * dim.fY;
/external/skia/samplecode/
H A DSampleDash.cpp64 SkScalar y0 = SkIntToScalar(10); local
75 canvas->drawLine(x0, y0, x1, y0, paint);
78 y0 += paint.getStrokeWidth() * 3;
82 canvas->drawLine(x0, y0, x1, y0, paint);
/external/skia/tests/
H A DClipCubicTest.cpp57 static SkPoint* SetCurve(float x0, float y0, argument
62 crv[0].fX = x0; crv[0].fY = y0;

Completed in 871 milliseconds

12345678