HomeSort by relevance Sort by last modified time
    Searched refs:fx1 (Results 1 - 24 of 24) sorted by null

  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
PolygonRegionTest.java 123 float fx1, fx2, fx3, px1, px2, px3; local
136 fx1 = vertices[p1] * sX;
143 fx1 -= originX;
151 fx1 *= scaleX;
159 px1 = cos * fx1 - sin * fy1;
160 py1 = sin * fx1 + cos * fy1;
189 fx1 = -originX;
196 fx1 *= scaleX;
203 final float p1x = fx1;
205 final float p2x = fx1;
    [all...]
  /external/deqp/framework/common/
tcuBilinearImageCompare.cpp 74 inline deUint8 interpolateChannel (deUint32 fx1, deUint32 fy1, deUint8 p00, deUint8 p01, deUint8 p10, deUint8 p11)
76 const deUint32 fx0 = (1u<<NUM_SUBPIXEL_BITS) - fx1;
79 const deUint32 sum = fx0*fy0*p00 + fx1*fy0*p10 + fx0*fy1*p01 + fx1*fy1*p11;
96 deUint32 fx1 = u-(x0<<NUM_SUBPIXEL_BITS);
106 res |= interpolateChannel(fx1, fy1, getChannel<0>(p00), getChannel<0>(p01), getChannel<0>(p10), getChannel<0>(p11)) << RGBA::RED_SHIFT;
107 res |= interpolateChannel(fx1, fy1, getChannel<1>(p00), getChannel<1>(p01), getChannel<1>(p10), getChannel<1>(p11)) << RGBA::GREEN_SHIFT;
108 res |= interpolateChannel(fx1, fy1, getChannel<2>(p00), getChannel<2>(p01), getChannel<2>(p10), getChannel<2>(p11)) << RGBA::BLUE_SHIFT;
109 res |= interpolateChannel(fx1, fy1, getChannel<3>(p00), getChannel<3>(p01), getChannel<3>(p10), getChannel<3>(p11)) << RGBA::ALPHA_SHIFT;
  /external/v8/test/mjsunit/harmony/
debug-step-destructuring-bind.js 34 function fx1([ function in function:test
40 fx1([1, 2, 3]); // B1
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/smooth/
ftgrays.c 705 TCoord ex1, ex2, fx1, fx2, delta, mod;
714 fx1 = (TCoord)( x1 - SUBPIXELS( ex1 ) );
729 ras.area += (TArea)(( fx1 + fx2 ) * delta);
737 p = ( ONE_PIXEL - fx1 ) * ( y2 - y1 );
743 p = fx1 * ( y2 - y1 );
751 ras.area += (TArea)(( fx1 + first ) * delta);
935 TPos dx, dy, fx1, fy1, fx2, fy2; local
952 fx1 = ras.x - SUBPIXELS( ex1 );
969 ras.area += ( fy2 - fy1 ) * fx1 * 2;
979 ras.area += ( fy2 - fy1 ) * fx1 * 2
    [all...]
  /external/pdfium/third_party/agg23/
agg_rasterizer_scanline_aa.cpp 166 int fx1 = x1 & poly_base_mask; local
176 m_cur_cell.add_cover(delta, (fx1 + fx2) * delta);
179 p = (poly_base_size - fx1) * (y2 - y1);
184 p = fx1 * (y2 - y1);
195 m_cur_cell.add_cover(delta, (fx1 + first) * delta);
  /external/deqp/modules/gles3/functional/
es3fInstancedRenderingTests.cpp 359 float fx1 = -1.0f + (float)(x+1) / (float)QUAD_GRID_SIZE * 2.0f / (float)m_numInstances; local
363 // Vertices of a quad's lower-left triangle: (fx0, fy0), (fx1, fy0) and (fx0, fy1)
366 m_gridVertexPositions.push_back(fx1);
371 // Vertices of a quad's upper-right triangle: (fx1, fy1), (fx0, fy1) and (fx1, fy0)
372 m_gridVertexPositions.push_back(fx1);
376 m_gridVertexPositions.push_back(fx1);
es3fVertexTextureTests.cpp 290 float fx1 = (float)(x+1) / gridSizeFloat; local
294 Vec2 quadVertices[4] = { Vec2(fx0, fy0), Vec2(fx1, fy0), Vec2(fx0, fy1), Vec2(fx1, fy1) };
    [all...]
  /external/skia/src/opts/
SkBitmapProcState_matrix_neon.h 70 SkFractionalInt fx1, fx2, fx3; local
74 fx1 = fx+dx;
75 fx2 = fx1+dx;
79 lbase = vsetq_lane_s32(SkFractionalIntToFixed(fx1), lbase, 1);
  /external/deqp/modules/gles2/functional/
es2fBufferTestUtil.cpp 328 float fx1 = 2.0f * sx1 - 1.0f; local
334 positions[baseNdx+2] = tcu::Vec2(fx1, fy0);
335 positions[baseNdx+3] = tcu::Vec2(fx1, fy1);
es2fVertexTextureTests.cpp 240 float fx1 = (float)(x+1) / gridSizeFloat; local
244 Vec2 quadVertices[4] = { Vec2(fx0, fy0), Vec2(fx1, fy0), Vec2(fx0, fy1), Vec2(fx1, fy1) };
    [all...]
  /external/libvncserver/libvncserver/
selbox.c 218 int fx1,fy1,fx2,fy2; /* for font bbox */ local
223 rfbWholeFontBBox(font, &fx1, &fy1, &fx2, &fy2);
228 selData.xhot = -fx1;
  /external/deqp/modules/glshared/
glsShaderRenderCase.cpp 705 float fx1 = deFloatClamp((sfx - sx0) * oosx, 0.0f, 1.0f); local
709 bool tri = fx1 + fy1 <= 1.0f;
710 float tx = tri ? fx1 : (1.0f-fx1);
glsBufferTestUtil.cpp 489 float fx1 = 2.0f * sx1 - 1.0f; local
495 positions[baseNdx+2] = tcu::Vec2(fx1, fy0);
496 positions[baseNdx+3] = tcu::Vec2(fx1, fy1);
  /external/pdfium/xfa/include/fwl/theme/
widgettp.h 88 FX_FLOAT fx1,
  /external/freetype/src/smooth/
ftgrays.c 698 TCoord ex1, ex2, fx1, fx2, delta, mod; local
707 fx1 = (TCoord)( x1 - SUBPIXELS( ex1 ) );
722 ras.area += (TArea)(( fx1 + fx2 ) * delta);
730 p = ( ONE_PIXEL - fx1 ) * ( y2 - y1 );
736 p = fx1 * ( y2 - y1 );
744 ras.area += (TArea)(( fx1 + first ) * delta);
    [all...]
  /external/pdfium/third_party/freetype/src/smooth/
ftgrays.c 693 TCoord ex1, ex2, fx1, fx2, delta, mod; local
702 fx1 = (TCoord)( x1 - SUBPIXELS( ex1 ) );
717 ras.area += (TArea)(( fx1 + fx2 ) * delta);
725 p = ( ONE_PIXEL - fx1 ) * ( y2 - y1 );
731 p = fx1 * ( y2 - y1 );
739 ras.area += (TArea)(( fx1 + first ) * delta);
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_aaline.c 291 const GLfloat fx1 = sx - info->qx1; local
299 GLfloat cross1 = (info->ex1 * fy1 - info->ey1 * fx1);
  /external/opencv3/modules/imgproc/src/
undistort.cpp 446 double fx1 = iR/std::sqrt(1 - x1*x1); local
448 *J = Vec4d(fx1*(kx*x + k), fx1*ky*x, fy1*kx*y, fy1*(ky*y + k));
imgwarp.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRender.cpp 1809 const float fx1 = deFloatClamp((sfx - sx0) * oosx, 0.0f, 1.0f); local
    [all...]
  /external/pdfium/xfa/src/fwl/src/theme/
widgettp.cpp 435 FX_FLOAT fx1,
449 begPoint.Set(fx1, fy1);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
FastMath.java 1488 double fx1 = xpb\/xpa; local
    [all...]
  /external/deqp/modules/egl/
teglGLES2SharingTests.cpp 434 float fx1 = 0.125f * (float)(i % 16) - 1.0f; local
441 int x1 = deRoundFloatToInt32(((float)width * fx1 / 2.0f) + (float)ox);
    [all...]
  /external/opencv3/modules/calib3d/src/
calibration.cpp     [all...]

Completed in 1538 milliseconds