/external/opencv3/modules/core/include/opencv2/core/cuda/ |
filters.hpp | 97 const int y1 = __float2int_rd(y); local 99 const int y2 = y1 + 1; 101 elem_type src_reg = src(y1, x1); 104 src_reg = src(y1, x2); 108 out = out + src_reg * ((x2 - x) * (y - y1)); 111 out = out + src_reg * ((x - x1) * (y - y1));
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/ |
DormandPrince853Integrator.java | 249 final double[] y0, final double[] y1, 264 final double yScale = FastMath.max(FastMath.abs(y0[j]), FastMath.abs(y1[j]));
|
/external/boringssl/src/crypto/poly1305/ |
poly1305_arm.c | 47 uint32_t y1; local 67 y1 = x1 + (y0 >> 26); 69 y2 = x2 + (y1 >> 26); 70 y1 &= 0x3ffffff; 79 y1 ^= x1; 85 y1 &= swap; 91 y1 ^= x1; 97 r->v[2] = y1;
|
/external/drm_hwcomposer/ |
separate_rects.h | 34 TFloat x1, y1, x2, y2; member in struct:separate_rects::Rect::__anon11458::__anon11460 45 : x1(xx1), y1(yy1), x2(xx2), y2(yy2) {
|
/external/fonttools/Lib/fontTools/pens/ |
reportLabPen.py | 26 (x1,y1) = p1 29 self.path.curveTo(x1, y1, x2, y2, x3, y3)
|
/external/libdrm/tests/ |
updatedraw.c | 69 rects[0].y1 = 0; 74 rects[1].y1 = 10;
|
/external/libgdx/gdx/src/com/badlogic/gdx/math/ |
DelaunayTriangulator.java | 125 float x1, y1, x2, y2, x3, y3;
local 129 y1 = superTriangle[i + 1];
132 y1 = points[p1 + 1];
150 switch (circumCircle(x, y, x1, y1, x2, y2, x3, y3)) {
223 /** Returns INSIDE if point xp,yp is inside the circumcircle made up of the points x1,y1, x2,y2, x3,y3. Returns COMPLETE if xp
226 private int circumCircle (float xp, float yp, float x1, float y1, float x2, float y2, float x3, float y3) {
228 float y1y2 = Math.abs(y1 - y2);
238 float m1 = -(x2 - x1) / (y2 - y1);
240 float my1 = (y1 + y2) / 2f;
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_blorp.cpp | 147 y1(0), 192 y1 = depth.height;
|
/external/opencv3/modules/features2d/src/kaze/ |
KAZEFeatures.cpp | 661 int x1 = 0, y1 = 0, sample_step = 0, pattern_size = 0; local 714 y1 = (int)(sample_y - 0.5f); 717 checkDescriptorLimits(x1, y1, options_.img_width, options_.img_height); 725 fy = sample_y - y1; 727 res1 = *(evolution[level].Lx.ptr<float>(y1)+x1); 728 res2 = *(evolution[level].Lx.ptr<float>(y1)+x2); 733 res1 = *(evolution[level].Ly.ptr<float>(y1)+x1); 734 res2 = *(evolution[level].Ly.ptr<float>(y1)+x2); 790 int x1 = 0, y1 = 0, x2 = 0, y2 = 0, sample_step = 0, pattern_size = 0; local 918 int x1 = 0, y1 = 0, sample_step = 0, pattern_size = 0; local 1073 int x1 = 0, y1 = 0, x2 = 0, y2 = 0, sample_step = 0, pattern_size = 0; local [all...] |
/external/opencv3/modules/imgproc/src/ |
featureselect.cpp | 199 int y1 = y_cell - 1; local 205 y1 = std::max(0, y1); 209 for( int yy = y1; yy <= y2; yy++ ) 343 int y1 = y_cell - 1; local 349 y1 = std::max(0, y1); 353 for( int yy = y1; yy <= y2; yy++ )
|
/external/opencv3/samples/python2/ |
contours.py | 26 x1, y1 = np.int32([dx+100+j*10-80*c, dy+100-90*s]) 28 cv2.line(img, (x1, y1), (x2, y2), white)
|
/external/pdfium/core/src/fxge/dib/ |
dib_int.h | 30 inline void Transform(int x, int y, int& x1, int& y1) { 32 y1 = (b * x + d * y + f + base / 2) / base;
|
/external/pdfium/third_party/agg23/ |
agg_renderer_base.h | 74 return m_clip_box.y1; 94 return m_clip_box.y1;
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowPath.java | 40 public void quadTo(float x1, float y1, float x2, float y2) { 41 quadDescription = "Add a quadratic bezier from last point, approaching (" + x1 + "," + y1 + "), " +
|
/external/skia/src/animator/ |
SkPathParts.h | 72 SkScalar y1; member in class:SkQuadTo 90 SkScalar y1; member in class:SkCubicTo
|
/external/skia/src/core/ |
SkBitmapProcState_shaderproc.h | 40 int y1 = TILEY_PROCF((fy + s.fFilterOneY), maxY); local 45 row1 = (const SRCTYPE*)(srcAddr + y1 * rb);
|
/external/v8/test/webkit/ |
for-in-cached.js | 57 forIn3({ __proto__: { y1: 2 } }); 58 forIn3({ __proto__: { y1: 2 } }); 59 shouldBe("forIn3({ __proto__: { y1: 2 } })", "['x', 'y1']");
|
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/ |
GLCanvas.java | 81 // Draws a line using the specified paint from (x1, y1) to (x2, y2). 83 public abstract void drawLine(float x1, float y1, float x2, float y2, GLPaint paint); 85 // Draws a rectangle using the specified paint from (x1, y1) to (x2, y2). 87 public abstract void drawRect(float x1, float y1, float x2, float y2, GLPaint paint);
|
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/ |
GLCanvas.java | 83 // Draws a line using the specified paint from (x1, y1) to (x2, y2). 85 public abstract void drawLine(float x1, float y1, float x2, float y2, GLPaint paint); 87 // Draws a rectangle using the specified paint from (x1, y1) to (x2, y2). 89 public abstract void drawRect(float x1, float y1, float x2, float y2, GLPaint paint);
|
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/ |
GLCanvas.java | 81 // Draws a line using the specified paint from (x1, y1) to (x2, y2). 83 public abstract void drawLine(float x1, float y1, float x2, float y2, GLPaint paint); 85 // Draws a rectangle using the specified paint from (x1, y1) to (x2, y2). 87 public abstract void drawRect(float x1, float y1, float x2, float y2, GLPaint paint);
|
/packages/apps/Messaging/src/com/android/messaging/util/ |
CubicBezierInterpolator.java | 31 public CubicBezierInterpolator(final float x1, final float y1, final float x2, final float y2) { 33 mY1 = y1;
|
/prebuilts/go/darwin-x86/src/image/jpeg/ |
idct.go | 147 y1 := src[8*4+x] << 8 164 y8 = y0 + y1 165 y0 -= y1 166 y1 = w6*(y3+y2) + 4 167 y2 = (y1 - w2pw6*y2) >> 3 168 y3 = (y1 + w2mw6*y3) >> 3 169 y1 = y4 + y6 183 src[8*0+x] = (y7 + y1) >> 14 190 src[8*7+x] = (y7 - y1) >> 14
|
/prebuilts/go/linux-x86/src/image/jpeg/ |
idct.go | 147 y1 := src[8*4+x] << 8 164 y8 = y0 + y1 165 y0 -= y1 166 y1 = w6*(y3+y2) + 4 167 y2 = (y1 - w2pw6*y2) >> 3 168 y3 = (y1 + w2mw6*y3) >> 3 169 y1 = y4 + y6 183 src[8*0+x] = (y7 + y1) >> 14 190 src[8*7+x] = (y7 - y1) >> 14
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
ImageUtils.java | 241 int x1, y1, x2, y2; local 244 y1 = initialCrop.y; 249 y1 = 0; 255 if (x1 == x2 || y1 == y2) { 269 topEdge: for (; y1 < y2; y1++) { 271 if (!filter.crop(image, x, y1)) { 277 if (y1 == image.getHeight()) { 284 for (int y = y1; y < y2; y++) { 293 for (int y = y1; y < y2; y++) [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/ |
CpuSpriteBatch.java | 322 float y1; local 336 y1 = sin * p1x + cos * p1y; 345 y4 = y3 - (y2 - y1); 348 y1 = p1y; 361 y1 += worldOriginY; 382 vertices[idx + 0] = t.m00 * x1 + t.m01 * y1 + t.m02; 383 vertices[idx + 1] = t.m10 * x1 + t.m11 * y1 + t.m12; 444 float y1; local 458 y1 = sin * p1x + cos * p1y; 467 y4 = y3 - (y2 - y1); 552 float y1 = t.m12; local [all...] |