HomeSort by relevance Sort by last modified time
    Searched refs:y1 (Results 626 - 650 of 1250) sorted by null

<<21222324252627282930>>

  /external/deqp/modules/egl/
teglBufferAgeTests.cpp 171 // (x1,y1) lie in the lower-left quadrant while (x2,y2) lie in the upper-right.
180 const int y1 = rnd.getInt(0, (dst->height-1)/8) * 4; local
186 const ColoredRect coloredRect (IVec2(x1, y1), IVec2(x2, y2), Color(r, g, b));
266 float y1 = windowToDeviceCoordinates(coloredRect.bottomLeft.y(), height); local
272 x1, y1, 0.0f, 1.0f,
277 x2, y1, 0.0f, 1.0f,
278 x1, y1, 0.0f, 1.0f
teglPartialUpdateTests.cpp 158 // (x1,y1) lie in the lower-left quadrant while (x2,y2) lie in the upper-right.
167 const int y1 = rnd.getInt(0, (dst.height-1)/8) * 4; local
173 const ColoredRect coloredRect (IVec2(x1, y1), IVec2(x2, y2), Color(r, g, b));
255 const float y1 = windowToDeviceCoordinates(coloredRect.bottomLeft.y(), height); local
261 x1, y1,
266 x2, y1,
267 x1, y1,
  /external/icu/icu4c/source/i18n/
nfrs.cpp 83 int64_t y1 = y; local
86 while ((x1 & 1) == 0 && (y1 & 1) == 0) {
89 y1 >>= 1;
94 t = -y1;
106 y1 = -t;
108 t = x1 - y1;
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
Quaternion.java 561 * @param y1 The base vectors y value, which should be normalized.
567 public Quaternion setFromCross (final float x1, final float y1, final float z1, final float x2, final float y2, final float z2) {
568 final float dot = MathUtils.clamp(Vector3.dot(x1, y1, z1, x2, y2, z2), -1f, 1f);
570 return setFromAxisRad(y1 * z2 - z1 * y2, z1 * x2 - x1 * z2, x1 * y2 - y1 * x2, angle);
711 * @param y1 the y component of the first quaternion
719 public final static float dot (final float x1, final float y1, final float z1, final float w1, final float x2, final float y2,
721 return x1 * x2 + y1 * y2 + z1 * z2 + w1 * w2;
    [all...]
Vector3.java 248 public static float dst (final float x1, final float y1, final float z1, final float x2, final float y2, final float z2) {
250 final float b = y2 - y1;
272 public static float dst2 (final float x1, final float y1, final float z1, final float x2, final float y2, final float z2) {
274 final float b = y2 - y1;
307 public static float dot (float x1, float y1, float z1, float x2, float y2, float z2) {
308 return x1 * x2 + y1 * y2 + z1 * z2;
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_common.c 112 int x1, y1, x2, y2; local
123 y1 = ctx->DrawBuffer->Height - (y + h);
125 y2 = y1 + h - 1;
128 y1 = y;
135 rmesa->state.scissor.rect.y1 = CLAMP(y1, min_y, max_y);
  /external/opencv3/modules/stitching/src/
seam_finders.cpp 126 int y1 = roi.y - tl1.y + y; local
128 if (y1 >= 0 && x1 >= 0 && y1 < img1.height && x1 < img1.width)
129 submask1.at<uchar>(y + gap, x + gap) = mask1.at<uchar>(y1, x1);
465 int y0 = tls_[c[i]].y, y1 = brs_[c[i]].y;
471 for (int y = y0; y < y1; ++y)
690 float diffL2Square3(const Mat &image1, int y1, int x1, const Mat &image2, int y2, int x2)
692 const T *r1 = image1.ptr<T>(y1);
700 float diffL2Square4(const Mat &image1, int y1, int x1, const Mat &image2, int y2, int x2)
702 const T *r1 = image1.ptr<T>(y1);
    [all...]
  /external/opencv3/modules/videoio/src/
cap_dc1394.cpp 932 register int y0, y1, u, v; local
958 register int y0, y1, y2, y3, u, v; local
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page.cpp 964 int x0, y0, x1, y1, x2, y2; local
971 y1 = yPos;
979 y1 = yPos;
987 y1 = yPos + ySize;
995 y1 = yPos + ySize;
1003 FXSYS_Div((FX_FLOAT)(y1 - y0), m_PageHeight), (FX_FLOAT)x0,
  /external/skia/src/c/
sk_surface.cpp 273 void sk_path_quad_to(sk_path_t* cpath, float x0, float y0, float x1, float y1) {
274 as_path(cpath)->quadTo(x0, y0, x1, y1);
277 void sk_path_conic_to(sk_path_t* cpath, float x0, float y0, float x1, float y1, float w) {
278 as_path(cpath)->conicTo(x0, y0, x1, y1, w);
281 void sk_path_cubic_to(sk_path_t* cpath, float x0, float y0, float x1, float y1, float x2, float y2) {
282 as_path(cpath)->cubicTo(x0, y0, x1, y1, x2, y2);
  /frameworks/base/core/jni/android/graphics/
Path.cpp 133 static void quadTo__FFFF(JNIEnv* env, jobject clazz, jlong objHandle, jfloat x1, jfloat y1, jfloat x2, jfloat y2) {
135 obj->quadTo(x1, y1, x2, y2);
143 static void cubicTo__FFFFFF(JNIEnv* env, jobject clazz, jlong objHandle, jfloat x1, jfloat y1, jfloat x2, jfloat y2, jfloat x3, jfloat y3) {
145 obj->cubicTo(x1, y1, x2, y2, x3, y3);
148 static void rCubicTo(JNIEnv* env, jobject clazz, jlong objHandle, jfloat x1, jfloat y1, jfloat x2, jfloat y2, jfloat x3, jfloat y3) {
150 obj->rCubicTo(x1, y1, x2, y2, x3, y3);
  /frameworks/base/core/jni/android/opengl/
util.cpp 355 float y1 = y0; local
374 else if (y > y1) {
375 y1 = y;
393 float dy = y1 - y0;
410 static inline float dot3(float x0, float y0, float z0, float x1, float y1, float z1) {
411 return x0 * x1 + y0 * y1 + z0 * z1;
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_zlib.py 173 y1 = dco.decompress(x1 + x2)
175 self.assertEqual(data, y1 + y2)
188 y1 = dco.decompress(x1 + x2)
190 self.assertEqual(HAMLET_SCENE, y1 + y2)
203 y1 = dco.decompress(''.join(bufs))
205 self.assertEqual(data, y1 + y2)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_zlib.py 173 y1 = dco.decompress(x1 + x2)
175 self.assertEqual(data, y1 + y2)
188 y1 = dco.decompress(x1 + x2)
190 self.assertEqual(HAMLET_SCENE, y1 + y2)
203 y1 = dco.decompress(''.join(bufs))
205 self.assertEqual(data, y1 + y2)
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/
arith.go 63 y1 := y >> _W2
68 w1 += x0 * y1
69 z1 = x1*y1 + w2 + w1>>_W2
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/
arith.go 63 y1 := y >> _W2
68 w1 += x0 * y1
69 z1 = x1*y1 + w2 + w1>>_W2
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_zlib.py 173 y1 = dco.decompress(x1 + x2)
175 self.assertEqual(data, y1 + y2)
188 y1 = dco.decompress(x1 + x2)
190 self.assertEqual(HAMLET_SCENE, y1 + y2)
203 y1 = dco.decompress(''.join(bufs))
205 self.assertEqual(data, y1 + y2)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_zlib.py 173 y1 = dco.decompress(x1 + x2)
175 self.assertEqual(data, y1 + y2)
188 y1 = dco.decompress(x1 + x2)
190 self.assertEqual(HAMLET_SCENE, y1 + y2)
203 y1 = dco.decompress(''.join(bufs))
205 self.assertEqual(data, y1 + y2)
  /external/opencv3/doc/pattern_tools/
svgfig.py 104 >>> svg = SVG("g", SVG("g", SVG("line", x1=0, y1=0, x2=1, y2=1)), \
111 (0, 0) <line x2=1 y1=0 x1=0 y2=1 />
113 (0, 0, 'y1') 0
125 [0, 0] <line x2=1 y1=0 x1=0 y2=1 />
    [all...]
  /external/opencv/cvaux/src/
cvscanlines.cpp 183 int x1, y1, x2, y2, dx, dy; local
192 y1 = scanlines[curr++];
197 dy = abs( y1 - y2 ) + 1;
213 int x1, y1, x2, y2; local
227 y1 = (int) (scanlines_1[curr] * alpha + scanlines_2[curr] * (1.0 - alpha));
229 scanlines_a[curr++] = y1;
240 dy = abs( y1 - y2 ) + 1;
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
GradientDrawable.java     [all...]
  /prebuilts/devtools/tools/lib/
traceview.jar 
  /prebuilts/gradle-plugin/com/android/tools/traceview/24.4.0-beta6/
traceview-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/traceview/24.5.0/
traceview-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/traceview/25.0.0-alpha1/
traceview-25.0.0-alpha1.jar 

Completed in 1734 milliseconds

<<21222324252627282930>>