HomeSort by relevance Sort by last modified time
    Searched refs:fW (Results 1 - 25 of 35) sorted by null

1 2

  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/univariate/
BracketFinder.java 158 double fW;
160 fW = eval(func, w);
162 fW < fC :
163 fW > fC) {
167 fB = fW;
170 fW > fB :
171 fW < fB) {
173 fC = fW;
177 fW = eval(func, w);
180 fW = eval(func, w)
    [all...]
  /external/skia/bench/
MipMapBench.cpp 15 const int fW, fH;
21 : fW(w), fH(h), fColorMode(colorMode), fHalfFoat(halfFloat)
37 SkImageInfo info = fHalfFoat ? SkImageInfo::Make(fW, fH, kRGBA_F16_SkColorType,
40 : SkImageInfo::MakeS32(fW, fH, kPremul_SkAlphaType);
GrMipMapBench.cpp 19 const int fW, fH;
22 GrMipMapBench(int w, int h) : fW(w), fH(h) {
41 SkImageInfo::Make(fW, fH, kRGBA_8888_SkColorType, kPremul_SkAlphaType, srgb);
HardStopGradientBench_SpecialHardStops.cpp 39 fW = w;
43 fName.printf("hardstop_special_%03dx%03d_%s", fW, fH, kindstr(fKind));
51 return SkIPoint::Make(fW, fH);
57 SkPoint::Make(fW+2.0f, fH/2.0f),
109 int fW;
PathBench.cpp 905 fRQ.fW = SkScalarCos(SK_ScalarPI/4);
982 conic->fW = rand.nextUScalar1();
984 conic->fW = 1 + rand.nextUScalar1() * 4;
    [all...]
  /external/skia/tests/
PathOpsConicIntersectionTest.cpp 48 SkASSERT(roughly_equal(chopped[0].fW, dChopped[0].fWeight));
49 SkASSERT(roughly_equal(chopped[1].fW, dChopped[1].fWeight));
84 conic.fW = c.fW;
85 chopped[0].fW = ch[0].fW;
86 chopped[1].fW = ch[1].fW;
101 path.conicTo(conic.fPts[1], conic.fPts[2], conic.fW);
106 path.conicTo(chopped[0].fPts[1], chopped[0].fPts[2], chopped[0].fW);
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTTrans.h 114 @param[in] fW W coordinate of input vector (e.g. use 1 for position, 0 for normal)
127 const VERTTYPE fW = f2vt(1.0f));
PVRTTrans.cpp 226 VERTTYPE fX, fY, fZ, fW;
252 fW = pMatrix->f[ 3]*pBoundingBox->Point[i].x +
257 if(fX < -fW)
259 else if(fX > fW)
262 if(fY < -fW)
264 else if(fY > fW)
352 @Input fW W coordinate of input vector (e.g. use 1 for position, 0 for normal)
365 const VERTTYPE fW)
375 VERTTYPEMUL(pMatrix->f[12], fW);
379 VERTTYPEMUL(pMatrix->f[13], fW);
    [all...]
  /external/skia/src/core/
SkGeometry.h 201 fW = w;
205 fW = w;
209 SkScalar fW;
213 fW = w;
220 fW = w;
322 Sk2s ww(conic.fW);
SkGeometry.cpp 1013 ratquad_mapTo3D(fPts, fW, tmp);
1034 dst[0].fW = tmp2[0].fZ / root;
1035 dst[1].fW = tmp2[2].fZ / root;
    [all...]
SkPathMeasure.cpp 85 dst->conicTo(conic.fPts[1], conic.fPts[2], conic.fW);
89 dst->conicTo(tmp[0].fPts[1], tmp[0].fPts[2], tmp[0].fW);
96 dst->conicTo(tmp1[1].fPts[1], tmp1[1].fPts[2], tmp1[1].fW);
101 dst->conicTo(tmp.fPts[1], tmp.fPts[2], tmp.fW);
377 fPts.append()->set(conic.fW, 0);
SkStrokerPriv.cpp 123 outer->conicTo(conics[i].fPts[1], conics[i].fPts[2], conics[i].fW);
  /external/skia/gm/
showmiplevels.cpp 238 const int fW, fH;
242 ShowMipLevels2(int w, int h) : fW(w), fH(h) { }
248 str.printf("showmiplevels2_%dx%d", fW, fH);
308 fBM[0] = sk_tool_utils::create_checkerboard_bitmap(fW, fH,
310 fBM[1] = make_bitmap(fW, fH);
311 fBM[2] = make_bitmap2(fW, fH);
312 fBM[3] = make_bitmap3(fW, fH);
beziereffects.cpp 437 int conicCnt2 = split_conic(dstTemp[0].fPts, dst, dstTemp[0].fW);
438 conicCnt = conicCnt2 + split_conic(dstTemp[1].fPts, &dst[conicCnt2], dstTemp[1].fW);
  /external/skia/samplecode/
SamplePatch.cpp 60 void setBounds(int w, int h) { fW = w; fH = h; }
67 int fW, fH;
165 const SkScalar ds = SK_Scalar1 * fW / nu;
178 colors[i*2 + 0] = make_color(s/fW, t/fH);
179 colors[i*2 + 1] = make_color(s/fW, (t + dt)/fH);
SampleFatBits.cpp 90 fW = width;
117 int fW, fH, fZoom;
172 for (int ix = 1; ix < fW; ++ix) {
201 for (int ix = 0; ix < fW; ++ix) {
  /prebuilts/ndk/r11/sources/android/ndk_helper/
vecmath.h 505 Vec4( const float fX, const float fY, const float fZ, const float fW )
510 w_ = fW;
521 Vec4( const Vec3& vec, const float fW )
526 w_ = fW;
733 void Value( float& fX, float& fY, float& fZ, float& fW )
738 fW = w_;
979 Quaternion( const float fX, const float fY, const float fZ, const float fW )
984 w_ = fW;
987 Quaternion( const Vec3 vec, const float fW )
992 w_ = fW;
    [all...]
  /prebuilts/ndk/r13/sources/android/ndk_helper/
vecmath.h 505 Vec4( const float fX, const float fY, const float fZ, const float fW )
510 w_ = fW;
521 Vec4( const Vec3& vec, const float fW )
526 w_ = fW;
733 void Value( float& fX, float& fY, float& fZ, float& fW )
738 fW = w_;
979 Quaternion( const float fX, const float fY, const float fZ, const float fW )
984 w_ = fW;
987 Quaternion( const Vec3 vec, const float fW )
992 w_ = fW;
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/
PVRTPrint3DAPI.cpp 249 float fW = m_fScreenScale[0] * 640.0f;
252 PVRTMat4 mxOrtho = PVRTMat4::Ortho(0.0f, 0.0f, fW, -fH, -1.0f, 1.0f, PVRTMat4::OGL, m_bRotate);
255 PVRTMat4 mxTrans = PVRTMat4::Translation(-fH,fW,0.0f);
  /external/skia/src/gpu/instanced/
InstancedRenderingTypes.h 108 float fX, fY, fZ, fW;
  /external/skia/src/pathops/
SkOpEdgeBuilder.cpp 254 fContourBuilder.addCurve(v1, curve1, pair[0].fW);
255 fContourBuilder.addCurve(v2, curve2, pair[1].fW);
SkReduceOrder.cpp 261 if (verb > SkPath::kLine_Verb && c.fW == 1) {
  /external/skia/src/gpu/ops/
GrAAHairLinePathRenderer.cpp 162 int conicCnt2 = split_conic(dstTemp[0].fPts, dst, dstTemp[0].fW);
163 conicCnt = conicCnt2 + split_conic(dstTemp[1].fPts, &dst[conicCnt2], dstTemp[1].fW);
297 conicWeights->push_back() = dst[i].fW;
    [all...]
  /external/skia/dm/
DMSrcSink.cpp     [all...]
DMSrcSink.h 457 const int fW, fH;

Completed in 592 milliseconds

1 2