/external/clang/test/CodeGenCXX/ |
debug-info-fn-template.cpp | 9 T fx(XF<T> xi) { function 15 template int fx(XF<int>);
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue6703a.go | 11 func fx() int { func 16 var x = fx // ERROR "initialization loop|depends upon itself"
|
issue6703b.go | 11 func fx() int { func 16 var x = fx() // ERROR "initialization loop|depends upon itself"
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue6703a.go | 11 func fx() int { func 16 var x = fx // ERROR "initialization loop|depends upon itself"
|
issue6703b.go | 11 func fx() int { func 16 var x = fx() // ERROR "initialization loop|depends upon itself"
|
/external/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 = mapper.fractionalIntX(); 39 if (tryDecal && can_truncate_to_fixed_for_decal(fx, dx, count, maxX)) { 40 decal_nofilter_scale(xy, SkFractionalIntToFixed(fx), 46 a = TileProc::X(s, SkFractionalIntToFixed(fx), maxX); fx += dx; 47 b = TileProc::X(s, SkFractionalIntToFixed(fx), maxX); fx += dx; 53 a = TileProc::X(s, SkFractionalIntToFixed(fx), maxX); fx += dx 82 SkFractionalInt fx = mapper.fractionalIntX(); local [all...] |
SkBitmapProcState_matrix.h | 61 SkFractionalInt fx; local 69 // now initialize fx 70 fx = mapper.fractionalIntX(); 74 if (can_truncate_to_fixed_for_decal(fx, dx, count, maxX)) { 75 decal_filter_scale(xy, SkFractionalIntToFixed(fx), 81 SkFixed fixedFx = SkFractionalIntToFixed(fx); 83 fx += dx; 100 SkFixed fx = mapper.fixedX(); local 110 *xy++ = PACK_FILTER_X_NAME(fx, maxX, oneX PREAMBLE_ARG_X); 111 fx += dx [all...] |
/external/opencv3/modules/calib3d/src/ |
p3p.h | 10 p3p(double fx, double fy, double cx, double cy); 30 fx = cameraMatrix.at<T> (0, 0); 40 points[i*5] = ipoints.at<IpointType>(i).x*fx + cx; 57 double fx, fy, cx, cy; member in class:p3p
|
/external/skia/src/effects/gradients/ |
SkClampRange.cpp | 56 void SkClampRange::initFor1(SkGradFixed fx) { 58 if (fx <= 0) { 60 } else if (fx < kFracMax_SkGradFixed) { 62 fFx1 = fx; 81 int64_t fx = fx0; local 93 int64_t ex = fx + (count - 1) * dx; 95 if ((uint64_t)(fx | ex) <= kFracMax_SkGradFixed) { 101 if (fx <= 0 && ex <= 0) { 106 if (fx >= kFracMax_SkGradFixed && ex >= kFracMax_SkGradFixed) { 119 fx -= dx [all...] |
/prebuilts/go/darwin-x86/test/ken/ |
slicearray.go | 13 var fx [10]float64 var 26 fy = fx[0:] 95 fy = fx[lb:hb] 97 fy = fx[lb:10] 99 fy = fx[lb:] 101 fy = fx[:hb] 103 fy = fx[0:hb] 105 fy = fx[0:10] 107 fy = fx[0:] 109 fy = fx[:10 [all...] |
sliceslice.go | 13 var fx []float64 var 86 fy = fx[lb:hb] 88 fy = fx[lb:10] 90 fy = fx[lb:] 92 fy = fx[:hb] 94 fy = fx[0:hb] 96 fy = fx[0:10] 98 fy = fx[0:] 100 fy = fx[:10] 102 fy = fx[: [all...] |
/prebuilts/go/linux-x86/test/ken/ |
slicearray.go | 13 var fx [10]float64 var 26 fy = fx[0:] 95 fy = fx[lb:hb] 97 fy = fx[lb:10] 99 fy = fx[lb:] 101 fy = fx[:hb] 103 fy = fx[0:hb] 105 fy = fx[0:10] 107 fy = fx[0:] 109 fy = fx[:10 [all...] |
sliceslice.go | 13 var fx []float64 var 86 fy = fx[lb:hb] 88 fy = fx[lb:10] 90 fy = fx[lb:] 92 fy = fx[:hb] 94 fy = fx[0:hb] 96 fy = fx[0:10] 98 fy = fx[0:] 100 fy = fx[:10] 102 fy = 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/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/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/ |
resize.hpp | 66 float fx, fy; member in struct:cv::cudev::ResizePtr 71 const float xn = static_cast<float>(x * fx); 89 __host__ ResizePtrSz<typename PtrTraits<SrcPtr>::ptr_type> resizePtr(const SrcPtr& src, float fx, float fy) 93 r.fx = 1.0f / fx; 96 r.cols = cv::saturate_cast<int>(getCols(src) * fx);
|
/external/skia/tests/ |
ClampRangeTest.cpp | 35 const SkGradFixed fx, SkGradFixed 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) { 59 const SkGradFixed gfx = SkFixedToGradFixed(fx); 91 SkFixed fx = rand.nextS() >> 1; local 94 SkFixed dx = (sx - fx) / count; 95 test_range(fx, dx, count); 102 SkFixed fx = rand.nextS(); 105 test_range(fx, dx, count) [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)); 62 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/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/pdfium/xfa/src/fwl/src/basewidget/ |
fwl_pictureboximp.cpp | 115 FX_FLOAT fx = (FX_FLOAT)pPicture->GetWidth();
local 117 if (fx > m_rtClient.width) {
118 fx = m_rtClient.width;
124 pt.Set((m_rtClient.width - fx) / 2, (m_rtClient.height - fy) / 2);
|