HomeSort by relevance Sort by last modified time
    Searched defs:fx (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/clang/test/CodeGenCXX/
debug-info-fn-template.cpp 9 T fx(XF<T> xi) { function
15 template int fx(XF<int>);
  /external/chromium_org/third_party/skia/src/core/
SkBitmapProcState_utils.h 14 * 2. [fx, fx+dx, fx+2dx, fx+3dx, ... fx+(count-1)dx] are all <= maxX
35 SkFixed fx = SkFractionalIntToFixed(frX); local
36 return (unsigned)SkFixedFloorToInt(fx) <= max &&
37 (unsigned)SkFixedFloorToInt(fx + dx * (count - 1)) < max;
SkBitmapProcState_matrix_template.h 23 SkFractionalInt fx; local
28 fx = SkScalarToFractionalInt(pt.fY);
30 *xy++ = TileProc::Y(s, SkFractionalIntToFixed(fx), maxY);
31 fx = SkScalarToFractionalInt(pt.fX);
42 if (tryDecal && can_truncate_to_fixed_for_decal(fx, dx, count, maxX)) {
43 decal_nofilter_scale(xy, SkFractionalIntToFixed(fx),
49 a = TileProc::X(s, SkFractionalIntToFixed(fx), maxX); fx += dx;
50 b = TileProc::X(s, SkFractionalIntToFixed(fx), maxX); fx += dx
88 SkFractionalInt fx = SkScalarToFractionalInt(srcPt.fX); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGRadialGradientElement.h 42 SVGAnimatedLength* fx() const { return m_fx.get(); } function in class:blink::FINAL
RadialGradientAttributes.h 49 SVGLength* fx() const { return m_fx.get(); } function in struct:blink::RadialGradientAttributes
  /external/chromium_org/third_party/skia/src/effects/gradients/
SkClampRange.cpp 36 void SkClampRange::initFor1(SkFixed fx) {
38 if (fx <= 0) {
40 } else if (fx < 0xFFFF) {
42 fFx1 = fx;
61 int64_t fx = fx0; local
64 int64_t ex = fx + (count - 1) * dx;
66 if ((uint64_t)(fx | ex) <= 0xFFFF) {
72 if (fx <= 0 && ex <= 0) {
77 if (fx >= 0xFFFF && ex >= 0xFFFF) {
94 fx = -fx
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_cbrtl.c 40 float ft, fx; local
92 fx = x;
93 GET_FLOAT_WORD(hx, fx);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_quad_depth_test_tmp.h 56 const float fx = (float) ix; local
60 const float z0 = quads[0]->posCoef->a0[2] + dzdx * fx + dzdy * fy;
  /external/chromium_org/third_party/skia/tests/
ClampRangeTest.cpp 35 const SkFixed fx, SkFixed dx, int count) {
38 // If dx is large, fx will overflow if updated naively. So we use more bits.
39 int64_t bigfx = fx;
58 static void test_range(SkFixed fx, SkFixed dx, int count) {
60 range.init(fx, dx, count, kV0, kV1);
61 slow_check(range, fx, dx, count);
89 SkFixed fx = rand.nextS() >> 1; local
92 SkFixed dx = (sx - fx) / count;
93 test_range(fx, dx, count);
100 SkFixed fx = rand.nextS()
    [all...]
PathOpsSimplifyTrianglesThreadedTest.cpp 35 int fx = f & 0x03; local
37 if ((ex - dx) * (fy - dy) == (ey - dy) * (fx - dx)) {
48 path.lineTo(SkIntToScalar(fx), SkIntToScalar(fy));
58 str += sprintf(str, " path.lineTo(%d, %d);\n", fx, fy);
PathOpsSimplifyDegenerateThreadedTest.cpp 31 int fx = f & 0x03; local
34 != (ey - dy) * (fx - dx)) {
45 path.lineTo(SkIntToScalar(fx), SkIntToScalar(fy));
55 str += sprintf(str, " path.lineTo(%d, %d);\n", fx, fy);
PathOpsSimplifyQuadThreadedTest.cpp 31 int fx = f & 0x03; local
47 path.lineTo(SkIntToScalar(fx), SkIntToScalar(fy));
59 str += sprintf(str, " path.lineTo(%d, %d);\n", fx, fy);
PathOpsSimplifyQuadralateralsThreadedTest.cpp 31 int fx = f & 0x03; local
47 path.lineTo(SkIntToScalar(fx), SkIntToScalar(fy));
60 str += sprintf(str, " path.lineTo(%d, %d);\n", fx, fy);
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_quad_depth_test_tmp.h 56 const float fx = (float) ix; local
60 const float z0 = quads[0]->posCoef->a0[2] + dzdx * fx + dzdy * fy;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pipe_cull.c 67 const float fx = v1[0] - v2[0]; local
71 header->det = ex * fy - ey * fx;
draw_pipe_offset.c 81 float fx = v1[0] - v2[0]; local
87 float b = ez*fx - ex*fz;
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_aalinetemp.h 40 const GLfloat fx = (GLfloat) ix; local
60 line->span.array->z[i] = (GLuint) solve_plane(fx, fy, line->zPlane);
62 line->span.array->rgba[i][RCOMP] = solve_plane_chan(fx, fy, line->rPlane);
63 line->span.array->rgba[i][GCOMP] = solve_plane_chan(fx, fy, line->gPlane);
64 line->span.array->rgba[i][BCOMP] = solve_plane_chan(fx, fy, line->bPlane);
65 line->span.array->rgba[i][ACOMP] = solve_plane_chan(fx, fy, line->aPlane);
73 const GLfloat invQ = solve_plane_recip(fx, fy, line->attrPlane[attr][3]);
76 attribArray[i][c] = solve_plane(fx, fy, line->attrPlane[attr][c]) * invQ;
85 const GLfloat invW = solve_plane_recip(fx, fy, line->wPlane);
88 attribArray[i][c] = solve_plane(fx, fy, line->attrPlane[attr][c]) * invW
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
CubicSubDivide.cpp 79 double fx = interp_cubic_coords(&src[0].x, (t1+t2*2)/3); local
85 double nx = fx * 27 - ax - dx * 8;
97 double fx = interp_cubic_coords(&src[0].x, (t1 + t2 * 2) / 3); local
101 double nx = fx * 27 - a.x - d.x * 8;
EdgeWalkerQuadratic4x4_Test.cpp 32 int fx = f & 0x03; local
47 path.lineTo(fx, fy);
57 str += sprintf(str, " path.lineTo(%d, %d);\n", fx, fy);
EdgeWalkerPolygon4x4_Test.cpp 29 int fx = f & 0x03; local
45 path.lineTo(fx, fy);
57 str += sprintf(str, " path.lineTo(%d, %d);\n", fx, fy);
127 int fx = f & 0x03; local
129 if ((ex - dx) * (fy - dy) == (ey - dy) * (fx - dx)) {
140 path.lineTo(fx, fy);
150 str += sprintf(str, " path.lineTo(%d, %d);\n", fx, fy);
221 int fx = f & 0x03; local
224 != (ey - dy) * (fx - dx)) {
235 path.lineTo(fx, fy)
    [all...]
EdgeWalkerPolygons_Mismatches.cpp 1602 int fx = miss.f & 0x03; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_cull.c 67 const float fx = v1[0] - v2[0]; local
71 header->det = ex * fy - ey * fx;
  /external/mesa3d/src/mesa/swrast/
s_aalinetemp.h 40 const GLfloat fx = (GLfloat) ix; local
60 line->span.array->z[i] = (GLuint) solve_plane(fx, fy, line->zPlane);
62 line->span.array->rgba[i][RCOMP] = solve_plane_chan(fx, fy, line->rPlane);
63 line->span.array->rgba[i][GCOMP] = solve_plane_chan(fx, fy, line->gPlane);
64 line->span.array->rgba[i][BCOMP] = solve_plane_chan(fx, fy, line->bPlane);
65 line->span.array->rgba[i][ACOMP] = solve_plane_chan(fx, fy, line->aPlane);
73 const GLfloat invQ = solve_plane_recip(fx, fy, line->attrPlane[attr][3]);
76 attribArray[i][c] = solve_plane(fx, fy, line->attrPlane[attr][c]) * invQ;
85 const GLfloat invW = solve_plane_recip(fx, fy, line->wPlane);
88 attribArray[i][c] = solve_plane(fx, fy, line->attrPlane[attr][c]) * invW
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast_setup/
ss_tritmp.h 55 GLfloat fx = v[1]->attrib[FRAG_ATTRIB_WPOS][0] - v[2]->attrib[FRAG_ATTRIB_WPOS][0]; local
57 GLfloat cc = ex*fy - ey*fx;
146 const GLfloat dzdy = FABSF((ez * fx - ex * fz) * oneOverArea);
  /external/chromium_org/third_party/skia/samplecode/
SamplePath.cpp 44 SkDebugf("--- %d [%g %g]\n", i, dst[i].fX, dst[i].fY);
62 int fx = (int)(x * 65536); local
64 SkDebugf("%g %x %x %x\n", x, ix, fx, ffx);

Completed in 938 milliseconds

1 2 3 4