HomeSort by relevance Sort by last modified time
    Searched refs:y2 (Results 201 - 225 of 901) sorted by null

1 2 3 4 5 6 7 891011>>

  /bootable/recovery/minui/
minui.h 47 void gr_fill(int x1, int y1, int x2, int y2);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
IntrinsicColorMatrix.java 49 int x1 = 0, y1 = 0, x2 = w, y2 = h; local
54 y2 = h - 11;
60 mSi.forEach(mAllocSrc, mAllocDst, makeClipper(x1, y1, x2, y2));
64 mSr.invoke_reference(mat, add, mAllocSrc, mAllocRef, x1, y1, x2, y2);
intrinsic_colormatrix.rs 21 int x1, int y1, int x2, int y2) {
29 for (uint32_t y = y1; y < y2; y++) {
  /external/ImageMagick/coders/
pes.c 537 bounds.y2=(-65535.0);
610 if ((double) y > bounds.y2)
611 bounds.y2=(double) y;
642 bounds.y2-bounds.y1);
  /external/clang/test/SemaCXX/
dcl_init_aggr.cpp 92 float y2[4][3] = { { 1, 3, 5 }, { 2, 4, 6 }, { 3, 5, 7 } }; variable
  /external/clang/test/SemaTemplate/
instantiate-invalid.cpp 3 template<class Conv> class rasterizer_sl_clip Conv::xi(x2), Conv::yi(y2));
ms-sizeof-missing-typename.cpp 39 y2 = sizeof(typename T::template InnerTemplate<sizeof(T::InnerVar)>), enumerator in enum:nested_sizeof::Foo::__anon9726
  /external/freetype/src/cff/
cf2font.c 84 * | (x2,y2) \
97 * (x2, y2) = (1000, 275)
128 FT_Int y2 = darkenParams[3]; local
173 FT_Int ydelta = y2 - y1;
190 FT_Int ydelta = y3 - y2;
199 FT_DivFix( cf2_intToFixed( y2 ), ppem );
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/cff/
cf2font.c 84 * | (x2,y2) \
97 * (x2, y2) = (1000, 275)
128 FT_Int y2 = darkenParams[3]; local
173 FT_Int ydelta = y2 - y1;
190 FT_Int ydelta = y3 - y2;
199 FT_DivFix( cf2_intToFixed( y2 ), ppem );
  /external/libgdx/gdx/jni/
com.badlogic.gdx.graphics.g2d.Gdx2DPixmap.cpp 90 JNIEXPORT void JNICALL Java_com_badlogic_gdx_graphics_g2d_Gdx2DPixmap_drawLine(JNIEnv* env, jclass clazz, jlong pixmap, jint x, jint y, jint x2, jint y2, jint color) {
95 gdx2d_draw_line((gdx2d_pixmap*)pixmap, x, y, x2, y2, color);
140 JNIEXPORT void JNICALL Java_com_badlogic_gdx_graphics_g2d_Gdx2DPixmap_fillTriangle(JNIEnv* env, jclass clazz, jlong pixmap, jint x1, jint y1, jint x2, jint y2, jint x3, jint y3, jint color) {
145 gdx2d_fill_triangle((gdx2d_pixmap*)pixmap, x1, y1, x2, y2, x3, y3, color);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
Pixmap.java 197 * @param y2 The y-coordinate of the first point */
198 public void drawLine (int x, int y, int x2, int y2) {
199 pixmap.drawLine(x, y, x2, y2, color);
282 /** Fills a triangle with vertices at x1,y1 and x2,y2 and x3,y3 using the current color.
287 * @param y2 The y-coordinate of vertex 2
290 public void fillTriangle (int x1, int y1, int x2, int y2, int x3, int y3) {
291 pixmap.fillTriangle(x1, y1, x2, y2, x3, y3, color);
  /external/opencv3/modules/cudaimgproc/src/
gftt.cpp 159 int y2 = y_cell + 1;
165 y2 = std::min(grid_height - 1, y2);
167 for (int yy = y1; yy <= y2; yy++)
  /external/opencv3/modules/videostab/include/opencv2/videostab/
fast_marching.hpp 96 float solve(int x1, int y1, int x2, int y2) const;
  /external/pdfium/third_party/freetype/src/cff/
cf2font.c 84 * | (x2,y2) \
97 * (x2, y2) = (1000, 275)
128 FT_Int y2 = darkenParams[3]; local
173 FT_Int ydelta = y2 - y1;
190 FT_Int ydelta = y3 - y2;
199 FT_DivFix( cf2_intToFixed( y2 ), ppem );
  /external/v8/test/mjsunit/harmony/
destructuring-assignment.js 12 y2: oy["value2"],
17 y2: "value of y2",
22 assertEquals("value of y2", oy.value2);
42 y2: y["value2"],
47 y2: "value of y2",
52 assertEquals("value of y2", y.value2);
16 y: "value of y1", property
46 y: "value of y1", property
  /frameworks/base/core/java/android/util/
MathUtils.java 94 public static float dist(float x1, float y1, float x2, float y2) {
96 final float y = (y2 - y1);
100 public static float dist(float x1, float y1, float z1, float x2, float y2, float z2) {
102 final float y = (y2 - y1);
  /frameworks/base/core/java/android/view/animation/
PathInterpolator.java 137 float y2 = a.getFloat(R.styleable.PathInterpolator_controlY2, 0); local
138 initCubic(x1, y1, x2, y2);
150 private void initCubic(float x1, float y1, float x2, float y2) {
153 path.cubicTo(x1, y1, x2, y2, 1f, 1f);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterGrad.java 125 int[] y2 = mParameters.getYPos2(); local
138 coord[1] = y2[i];
141 y2[i] = (int) coord[1];
148 mScript.set_yPos2(y2);
SplineMath.java 53 double y2 = next[1]; local
62 double tb = b * y2;
94 double y2 = next[1]; local
103 double tb = b * y2;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionOverlay.java 207 int y2 = r.y2() + 1; local
213 y2 -= insets.bottom;
216 gc.drawRect(x1, y1, x2, y2);
  /external/opencv3/modules/features2d/src/kaze/
KAZEFeatures.cpp 662 int x2 = 0, y2 = 0, kx = 0, ky = 0, i = 0, j = 0, dcount = 0; local
719 y2 = (int)(sample_y + 0.5f);
722 checkDescriptorLimits(x2, y2, options_.img_width, options_.img_height);
729 res3 = *(evolution[level].Lx.ptr<float>(y2)+x1);
730 res4 = *(evolution[level].Lx.ptr<float>(y2)+x2);
735 res3 = *(evolution[level].Ly.ptr<float>(y2)+x1);
736 res4 = *(evolution[level].Ly.ptr<float>(y2)+x2);
790 int x1 = 0, y1 = 0, x2 = 0, y2 = 0, sample_step = 0, pattern_size = 0; local
919 int x2 = 0, y2 = 0, kx = 0, ky = 0, i = 0, j = 0, dcount = 0; local
1073 int x1 = 0, y1 = 0, x2 = 0, y2 = 0, sample_step = 0, pattern_size = 0; local
    [all...]
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/graphics/
Pixmap.java 252 * @param y2 The y-coordinate of the first point */
253 public void drawLine (int x, int y, int x2, int y2) {
254 line(x, y, x2, y2, DrawType.STROKE);
339 /** Fills a triangle with vertices at x1,y1 and x2,y2 and x3,y3 using the current color.
344 * @param y2 The y-coordinate of vertex 2
347 public void fillTriangle (int x1, int y1, int x2, int y2, int x3, int y3) {
348 triangle(x1, y1, x2, y2, x3, y3, DrawType.FILL);
404 private void line(int x, int y, int x2, int y2, DrawType drawType) {
411 context.lineTo(x2, y2);
420 context.lineTo(x2, y2);
    [all...]
  /external/opencv/cv/src/
cvlinefit.cpp 48 double x = 0, y = 0, x2 = 0, y2 = 0, xy = 0, w = 0; local
63 y2 += points[i].y * points[i].y;
75 y2 += weights[i] * points[i].y * points[i].y;
84 y2 /= w;
88 dy2 = y2 - y * y;
107 float x2 = 0, y2 = 0, z2 = 0, xy = 0, yz = 0, xz = 0; local
129 y2 += y * y * w;
149 y2 += y * y;
162 y2 /= w0;
173 dy2 = y2 - y0 * y0
    [all...]
  /external/opencv3/modules/imgproc/src/
linefit.cpp 50 double x = 0, y = 0, x2 = 0, y2 = 0, xy = 0, w = 0; local
63 y2 += points[i].y * points[i].y;
75 y2 += weights[i] * points[i].y * points[i].y;
84 y2 /= w;
88 dy2 = y2 - y * y;
104 float x2 = 0, y2 = 0, z2 = 0, xy = 0, yz = 0, xz = 0; local
126 y2 += y * y * w;
146 y2 += y * y;
159 y2 /= w0;
170 dy2 = y2 - y0 * y0
    [all...]
  /frameworks/av/media/libstagefright/colorconversion/
ColorConverter.cpp 164 signed y2 = (signed)src_ptr[2 * x + 3] - 16; local
178 signed tmp2 = y2 * 298;
279 signed y2 = (signed)src_y[x + 1] - 16; local
294 signed tmp2 = y2 * 298;
352 signed y2 = (signed)src_y[x + 1] - 16; local
367 signed tmp2 = y2 * 298;
426 signed y2 = (signed)src_y[x + 1] - 16; local
441 signed tmp2 = y2 * 298;
496 signed y2 = (signed)src_y[x + 1] - 16; local
511 signed tmp2 = y2 * 298
    [all...]

Completed in 2698 milliseconds

1 2 3 4 5 6 7 891011>>