Searched refs:y0 (Results 1 - 25 of 431) sorted by relevance

1234567891011>>

/external/mesa3d/src/gallium/auxiliary/util/
H A Du_rect.h41 int y0, y1; member in struct:u_rect
53 a->y1 < b->y0 ||
54 b->y1 < a->y0 ||
56 a->y1 < a->y0 ||
58 b->y1 < b->y0));
71 if (b->y0 < a->y0) b->y0 = a->y0;
79 return (r->x1 - r->x0) * (r->y1 - r->y0);
[all...]
/external/libhevc/decoder/
H A Dihevcd_intra_pred_mode_prediction.h43 WORD32 y0);
H A Dihevcd_parse_residual.h40 WORD32 x0, WORD32 y0,
/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/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowLinearGradient.java12 private float y0; field in class:ShadowLinearGradient
21 float x0, float y0, float x1, float y1, int color0, int color1, Shader.TileMode tile) {
23 this.y0 = y0;
36 return y0;
20 __constructor__( float x0, float y0, float x1, float y1, int color0, int color1, Shader.TileMode tile) argument
/external/libvpx/libvpx/vp8/encoder/x86/
H A Dquantize_sse4.c34 __m128i sz0, x0, sz1, x1, y0, y1, x_minus_zbin0, x_minus_zbin1, dqcoeff0, local
81 y0 = _mm_mulhi_epi16(x0, quant0);
84 y0 = _mm_add_epi16(y0, x0);
89 y0 = _mm_mulhi_epi16(y0, quant_shift0);
93 y0 = _mm_xor_si128(y0, sz0);
95 y0 = _mm_sub_epi16(y0, sz
[all...]
H A Dvp8_quantize_sse2.c40 __m128i sz0, x0, sz1, x1, y0, y1, x_minus_zbin0, x_minus_zbin1; local
89 y0 = _mm_mulhi_epi16(x0, quant0);
92 y0 = _mm_add_epi16(y0, x0);
97 y0 = _mm_mulhi_epi16(y0, quant_shift0);
101 y0 = _mm_xor_si128(y0, sz0);
103 y0 = _mm_sub_epi16(y0, sz
156 __m128i sz0, sz1, x0, x1, y0, y1, xdq0, xdq1, zeros, ones; local
[all...]
/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/ltp/testcases/misc/math/float/
H A Dfloat_bessel.c33 {FUNC_NORMAL, 30, y0, "y0", "y0_inp.ref", "y0_out.ref2",
/external/dng_sdk/source/
H A Ddng_1d_table.cpp88 real64 y0 = fTable [lower]; local
91 real64 delta = (y1 - y0) / (real64) range;
96 y0 += delta;
98 fTable [j] = (real32) y0;
161 real64 y0 = fTable [0]; local
164 real64 base = y0 * 65535.0 + 0.5;
165 real64 slope = (y1 - y0) * 65535.0;
183 y0 = y1;
186 base = y0 * 65535.0 + 0.5;
187 slope = (y1 - y0) * 65535.
[all...]
/external/skia/src/core/
H A DSkEdge.cpp35 SkFDot6 x0, y0, x1, y1; local
40 y0 = SkScalarRoundToFDot6(p0.fY, shift);
46 y0 = int(p0.fY * scale);
54 if (y0 > y1) {
56 SkTSwap(y0, y1);
60 int top = SkFDot6Round(y0);
72 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0);
73 const SkFDot6 dy = SkEdge_Compute_DY(top, y0);
90 int SkEdge::updateLine(SkFixed x0, SkFixed y0, SkFixed x1, SkFixed y1) argument
96 y0 >>
182 SkFDot6 x0, y0, x1, y1, x2, y2; local
351 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; local
[all...]
/external/skqp/src/core/
H A DSkEdge.cpp35 SkFDot6 x0, y0, x1, y1; local
40 y0 = SkScalarRoundToFDot6(p0.fY, shift);
46 y0 = int(p0.fY * scale);
54 if (y0 > y1) {
56 SkTSwap(y0, y1);
60 int top = SkFDot6Round(y0);
72 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0);
73 const SkFDot6 dy = SkEdge_Compute_DY(top, y0);
90 int SkEdge::updateLine(SkFixed x0, SkFixed y0, SkFixed x1, SkFixed y1) argument
96 y0 >>
182 SkFDot6 x0, y0, x1, y1, x2, y2; local
351 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; local
[all...]
/external/tensorflow/tensorflow/contrib/integrate/python/ops/
H A Dodes.py88 y0,
99 y0: Tensor initial value for the state.
100 f0: Tensor initial value for the derivative, computed from `func(y0, t0)`.
113 with ops.name_scope(name, 'runge_kutta_step', [y0, f0, t0, dt]) as scope:
114 y0 = ops.convert_to_tensor(y0, name='y0')
118 dt_cast = math_ops.cast(dt, y0.dtype)
123 yi = y0 + _scaled_dot_product(dt_cast, beta_i, k)
128 yi = y0
[all...]
/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...]
/external/pdfium/third_party/libopenjpeg20/
H A Dsparse_array.h75 * @param y0 top x coordinate of the region.
77 * @param y1 bottom y coordinate (not included) of the region. Must be greater than y0.
82 OPJ_UINT32 y0,
93 * @param y0 top x coordinate of the region to read in the sparse array.
95 * @param y1 bottom y coordinate (not included) of the region to read in the sparse array. Must be greater than y0.
96 * @param dest user buffer to fill. Must be at least sizeof(int32) * ( (y1 - y0 - 1) * dest_line_stride + (x1 - x0 - 1) * dest_col_stride + 1) bytes large.
104 OPJ_UINT32 y0,
120 * @param y0 top x coordinate of the region to write into the sparse array.
122 * @param y1 bottom y coordinate (not included) of the region to write into the sparse array. Must be greater than y0.
123 * @param src user buffer to fill. Must be at least sizeof(int32) * ( (y1 - y0
[all...]
/external/skia/include/c/
H A Dsk_path.h38 point (x0,y0), and ending at (x1,y1). If no sk_path_move_to() call
42 SK_API void sk_path_quad_to(sk_path_t*, float x0, float y0, float x1, float y1);
49 SK_API void sk_path_conic_to(sk_path_t*, float x0, float y0, float x1, float y1, float w);
52 (x0,y0) and (x1,y1), and ending at (x2,y2). If no
57 float x0, float y0,
/external/skqp/include/c/
H A Dsk_path.h38 point (x0,y0), and ending at (x1,y1). If no sk_path_move_to() call
42 SK_API void sk_path_quad_to(sk_path_t*, float x0, float y0, float x1, float y1);
49 SK_API void sk_path_conic_to(sk_path_t*, float x0, float y0, float x1, float y1, float w);
52 (x0,y0) and (x1,y1), and ending at (x2,y2). If no
57 float x0, float y0,
/external/skia/samplecode/
H A DSampleDash.cpp63 SkScalar y0 = SkIntToScalar(10); local
74 canvas->drawLine(x0, y0, x1, y0, paint);
77 y0 += paint.getStrokeWidth() * 3;
81 canvas->drawLine(x0, y0, x1, y0, paint);
/external/skqp/samplecode/
H A DSampleDash.cpp63 SkScalar y0 = SkIntToScalar(10); local
74 canvas->drawLine(x0, y0, x1, y0, paint);
77 y0 += paint.getStrokeWidth() * 3;
81 canvas->drawLine(x0, y0, x1, y0, paint);
/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/libvpx/libvpx/vp8/encoder/arm/neon/
H A Dfastquantizeb_neon.c27 int16x8_t x0, x1, sz0, sz1, y0, y1; local
46 y0 = vqdmulhq_s16(x0, quant0);
50 y0 = vshrq_n_s16(y0, 1);
54 y0 = veorq_s16(y0, sz0);
56 x0 = vsubq_s16(y0, sz0);
/external/python/cpython2/Modules/
H A Dyuv.h24 unsigned int y0:8; member in struct:yuv411::__anon19555
33 #define YUV411_Y00(y) (y).v[0].y0
34 #define YUV411_Y01(y) (y).v[1].y0
35 #define YUV411_Y02(y) (y).v[2].y0
36 #define YUV411_Y03(y) (y).v[3].y0
69 unsigned int y0:8; member in struct:yuv422
73 #define YUV422_Y0(y) (y).y0
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
H A DSecantSolver.java172 double y0 = f.value(x0);
176 if (y0 * y1 >= 0) {
178 LocalizedFormats.SAME_SIGN_AT_ENDPOINTS, min, max, y0, y1);
182 double y2 = y0;
190 y0 = y1;
192 y2 = y0;
204 if (FastMath.abs(y1) > FastMath.abs(y0)) {
208 delta = (x0 - x1) / (1 - y0 / y1);
216 y0 = y1;
222 y2 = y0;
[all...]

Completed in 6967 milliseconds

1234567891011>>