HomeSort by relevance Sort by last modified time
    Searched refs:y0 (Results 76 - 100 of 684) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
MullerSolver.java 206 double y0 = f.value(x0); local
213 if (y0 == 0.0) {
227 final double d01 = (y1 - y0) / (x1 - x0);
260 y0 = x < x1 ? y0 : y1;
268 if (MathUtils.sign(y0) + MathUtils.sign(ym) == 0.0) {
271 x0 = xm; y0 = ym;
349 double y0 = f.value(x0); local
356 if (y0 == 0.0) { return min; }
364 final double a = q * (y2 - (1 + q) * y1 + q * y0);
    [all...]
BrentSolver.java 292 * @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;
  /external/speex/libspeex/
ltp_arm4.h 101 spx_word32_t y0, y1, y2, y3; local
102 y0=*y++;
173 : "+r" (y0), "+r" (y1), "+r" (y2), "+r" (y3),
  /hardware/bsp/intel/peripheral/libupm/src/st7735/
gfx.h 63 * @param y0 First coordinate
67 virtual void setAddrWindow (uint8_t x0, uint8_t y0, uint8_t x1, uint8_t y1) = 0;
144 * @param y0 First coordinate
149 void drawLine (int16_t x0, int16_t y0, int16_t x1, int16_t y1, uint16_t color);
155 * @param y0 First coordinate
162 void drawTriangle (int16_t x0, int16_t y0, int16_t x1, int16_t y1, int16_t x2, int16_t y2, uint16_t color);
  /external/clang/test/Index/
load-exprs.c 30 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/
nv30_transfer.h 16 unsigned y0; member in struct:nv30_rect
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_quad.h 64 int x0, y0; /**< quad window pos, always even */ member in struct:quad_header_input
  /external/opencv3/samples/python2/
feature_homography.py 65 x0, y0, x1, y1 = target.rect
66 cv2.rectangle(vis, (x0+w, y0), (x1+w, y1), (0, 255, 0), 2)
73 for (x0, y0), (x1, y1) in zip(np.int32(tracked.p0), np.int32(tracked.p1)):
74 cv2.line(vis, (x0+w, y0), (x1, y1), (0, 255, 0))
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
LinearGradient_Delegate.java 60 float x0, float y0, float x1, float y1,
62 LinearGradient_Delegate newDelegate = new LinearGradient_Delegate(x0, y0, x1, y1,
69 float x0, float y0, float x1, float y1,
72 x0, y0, x1, y1, new int[] { color0, color1}, null /*positions*/,
82 * @param y0 The y-coordinate for the start of the gradient line
91 private LinearGradient_Delegate(float x0, float y0, float x1, float y1,
94 mJavaPaint = new LinearGradientPaint(x0, y0, x1, y1, mColors, mPositions, tile);
111 public LinearGradientPaint(float x0, float y0, float x1, float y1, int colors[],
115 mY0 = y0;
117 mDy = y1 - y0;
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/
err-sh4al-dsp.s 15 movx.l @r1+,y0 nopx ! { dg-error "multiple movx" }
16 movy.w @r7,y1 movy.l @r2,y0 ! { dg-error "multiple movy" }
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_reconstruct.c 99 y0 integer y-coordinate for prediction
114 i32 y0,
138 (y0 < 0) || ((u32)y0+chromaPartHeight > height))
140 h264bsdFillBlock(pRef, block, x0, y0, width, height,
144 x0, y0, width, height, chromaPartWidth + 1,
149 y0 = 0;
159 ptrA = pRef + (comp * height + (u32)y0) * width + x0;
210 i32 y0,
234 (y0 < 0) || ((u32)y0+chromaPartHeight+1 > height)
1984 i32 xInt, yInt, x0, y0; local
    [all...]
  /frameworks/base/tests/touchlag/
touchlag.cpp 106 size_t x0, size_t y0, size_t radius, bool filled = false) {
113 drawHLine(buf, pixel, x0-radius, y0, 2*radius);
115 drawTwoPixels(buf, pixel, x0-radius, y0, 2*radius);
127 drawHLine(buf, pixel, x0-x, y0+y, 2*x);
128 drawHLine(buf, pixel, x0-x, y0-y, 2*x);
129 drawHLine(buf, pixel, x0-y, y0+x, 2*y);
130 drawHLine(buf, pixel, x0-y, y0-x, 2*y);
132 drawTwoPixels(buf, pixel, x0-x, y0+y, 2*x);
133 drawTwoPixels(buf, pixel, x0-x, y0-y, 2*x);
134 drawTwoPixels(buf, pixel, x0-y, y0+x, 2*y)
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
DormandPrince54Integrator.java 135 final double[] y0, final double[] y1,
145 final double yScale = FastMath.max(FastMath.abs(y0[j]), FastMath.abs(y1[j]));
HighamHall54Integrator.java 108 final double[] y0, final double[] y1,
119 final double yScale = FastMath.max(FastMath.abs(y0[j]), FastMath.abs(y1[j]));
AdaptiveStepsizeIntegrator.java 174 * @param y0 state vector at t0
181 final double t0, final double[] y0,
185 super.sanityChecks(equations, t0, y0, t, y);
211 * @param y0 state vector at t0
212 * @param yDot0 first time derivative of y0
221 final double t0, final double[] y0, final double[] yDot0,
236 ratio = y0[j] / scale[j];
249 for (int j = 0; j < y0.length; ++j) {
250 y1[j] = y0[j] + h * yDot0[j];
319 double t0, double[] y0,
    [all...]
  /external/libvncserver/libvncserver/
scale.h 5 void rfbScaledScreenUpdateRect(rfbScreenInfoPtr screen, rfbScreenInfoPtr ptr, int x0, int y0, int w0, int h0);
  /external/pdfium/third_party/libopenjpeg20/
image.c 63 comp->y0 = cmptparms[compno].y0;
117 l_y0 = opj_uint_max(p_cp->ty0 , p_image_header->y0);
134 l_img_comp->y0 = l_comp_y0;
157 p_image_dest->y0 = p_image_src->y0;
234 comp->y0 = cmptparms[compno].y0;
  /developers/build/prebuilts/gradle/MediaEffects/Application/src/main/java/com/example/android/mediaeffects/
TextureRenderer.java 147 float x0, y0, x1, y1; local
150 y0 = -1.0f;
155 y0 = -relativeAspectRatio;
159 float[] coords = new float[] { x0, y0, x1, y0, x0, y1, x1, y1 };
  /developers/samples/android/media/MediaEffects/Application/src/main/java/com/example/android/mediaeffects/
TextureRenderer.java 147 float x0, y0, x1, y1; local
150 y0 = -1.0f;
155 y0 = -relativeAspectRatio;
159 float[] coords = new float[] { x0, y0, x1, y0, x0, y1, x1, y1 };
  /development/samples/HelloEffects/src/com/example/android/mediafx/
TextureRenderer.java 147 float x0, y0, x1, y1; local
150 y0 = -1.0f;
155 y0 = -relativeAspectRatio;
159 float[] coords = new float[] { x0, y0, x1, y0, x0, y1, x1, y1 };
  /development/samples/browseable/MediaEffects/src/com.example.android.mediaeffects/
TextureRenderer.java 147 float x0, y0, x1, y1; local
150 y0 = -1.0f;
155 y0 = -relativeAspectRatio;
159 float[] coords = new float[] { x0, y0, x1, y0, x0, y1, x1, y1 };
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
MultistepIntegrator.java 205 * @param y0 initial value of the state vector at t0
212 protected void start(final double t0, final double[] y0, final double t)
222 starter.addStepHandler(new NordsieckInitializer(y0.length));
226 starter.integrate(new CountingDifferentialEquations(y0.length),
227 t0, y0, t, new double[y0.length]);
  /packages/apps/Launcher3/src/com/android/launcher3/accessibility/
WorkspaceAccessibilityHelper.java 72 int y0 = y - n; local
74 if (x0 < 0 || y0 < 0) continue;
78 for (int j = y0; j < y0 + spanY; j++) {
86 return x0 + mCountX * y0;
  /external/mesa3d/src/mesa/swrast/
s_aaline.c 44 GLfloat x0, y0; /* start */ member in struct:LineInfo
79 * Input: (x0, y0) and (x1,y1) are the endpoints of the line.
89 compute_plane(GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1,
95 const GLfloat py = y1 - y0;
103 const GLfloat d = -(a * x0 + b * y0 + c * z0);
111 const GLfloat py = y1 - y0;
116 const GLfloat d = -(a * x0 + b * y0 + c * z0);
344 const GLfloat y0 = line->y0 + t0 * line->dy; local
346 const GLfloat y1 = line->y0 + t1 * line->dy
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmsintrp.c 190 cmsUInt16Number y1, y0; local
208 y0 = LutTable[cell0];
212 Output[0] = LinearInterp(rest, y0, y1);
227 cmsFloat32Number y1, y0; local
248 y0 = LutTable[cell0] ;
251 Output[0] = y0 + (y1 - y0) * rest;
293 cmsFloat32Number y1, y0; local
320 y0 = LutTable[cell0 + OutChan] ;
323 Output[OutChan] = y0 + (y1 - y0) * rest
339 int x0, y0, local
394 int x0, y0; local
451 int x0, y0, z0, local
525 int x0, y0, z0; local
598 int x0, y0, z0, local
700 int x0, y0, z0; local
837 int x0, y0, z0; local
1047 cmsFloat32Number y0 = Tmp1[i]; local
1135 cmsFloat32Number y0 = Tmp1[i]; local
1222 cmsFloat32Number y0 = Tmp1[i]; local
1308 cmsFloat32Number y0 = Tmp1[i]; local
1393 cmsFloat32Number y0 = Tmp1[i]; local
    [all...]

Completed in 1069 milliseconds

1 2 34 5 6 7 8 91011>>