/third_party/libxml2/VxWorks/ |
D | build.sh | 17 rm -fR src 24 find . -name '*.in' -exec rm -fR {} + 25 find . -name '*.am' -exec rm -fR {} + 26 rm -fR *.m4 27 rm -fR *.pc 28 rm -fR *.pl 29 rm -fR *.py 30 rm -fR *.spec 31 rm -fR .deps 32 rm -fR AUTHORS [all …]
|
/third_party/skia/gm/ |
D | circularclips.cpp | 20 SkScalar fX1, fX2, fY, fR; member in CircularClipsGM 28 fR = 40; in onOnceBeforeDraw() 30 fCircle1 = SkPath::Circle(fX1, fY, fR, SkPathDirection::kCW); in onOnceBeforeDraw() 31 fCircle2 = SkPath::Circle(fX2, fY, fR, SkPathDirection::kCW); in onOnceBeforeDraw() 51 SkRect rect = SkRect::MakeLTRB(fX1 - fR, fY - fR, fX2 + fR, fY + fR); in onDraw() 59 canvas->translate(-((fX1 + fX2)/2 - fR), -(fY - 2*fR/3)); in onDraw()
|
/third_party/flutter/skia/gm/ |
D | circularclips.cpp | 21 SkScalar fX1, fX2, fY, fR; member in CircularClipsGM 29 fR = 40; in onOnceBeforeDraw() 31 fCircle1.addCircle(fX1, fY, fR, SkPath::kCW_Direction); in onOnceBeforeDraw() 32 fCircle2.addCircle(fX2, fY, fR, SkPath::kCW_Direction); in onOnceBeforeDraw() 56 SkRect rect = SkRect::MakeLTRB(fX1 - fR, fY - fR, fX2 + fR, fY + fR); in onDraw() 64 canvas->translate(-((fX1 + fX2)/2 - fR), -(fY - 2*fR/3)); in onDraw()
|
/third_party/flutter/skia/include/core/ |
D | SkColor.h | 244 float fR; //!< red component member 255 return fA == other.fA && fR == other.fR && fG == other.fG && fB == other.fB; 273 return { fR * scale, fG * scale, fB * scale, fA * scale }; 282 return { fR * scale.fR, fG * scale.fG, fB * scale.fB, fA * scale.fA }; 289 const float* vec() const { return &fR; } in vec() 295 float* vec() { return &fR; } in vec() 330 return fR >= 0.0f && fR <= 1.0f && in fitsInBytes() 361 return { fR * fA, fG * fA, fB * fA, fA }; in premul() 376 return { fR * invAlpha, fG * invAlpha, fB * invAlpha, fA }; in unpremul() 385 return { fR, fG, fB, 1.0f }; in makeOpaque()
|
/third_party/skia/include/core/ |
D | SkColor.h | 261 float fR; //!< red component member 272 return fA == other.fA && fR == other.fR && fG == other.fG && fB == other.fB; 290 return { fR * scale, fG * scale, fB * scale, fA * scale }; 299 return { fR * scale.fR, fG * scale.fG, fB * scale.fB, fA * scale.fA }; 306 const float* vec() const { return &fR; } in vec() 312 float* vec() { return &fR; } in vec() 315 std::array<float, 4> array() const { return {fR, fG, fB, fA}; } in array() 350 return fR >= 0.0f && fR <= 1.0f && in fitsInBytes() 385 return { fR * fA, fG * fA, fB * fA, fA }; in premul() 400 return { fR * invAlpha, fG * invAlpha, fB * invAlpha, fA }; in unpremul() [all …]
|
/third_party/flutter/skia/src/gpu/effects/generated/ |
D | GrColorMatrixFragmentProcessor.h | 24 color.fR = input.fR; in constantOutputForConstantInput() 30 color.fR += v.fData[0]; in constantOutputForConstantInput() 36 color.fR = SkTPin(color.fR, 0.f, 1.f); in constantOutputForConstantInput() 43 return {color.fR, color.fG, color.fB, color.fA}; in constantOutputForConstantInput()
|
D | GrMixerEffect.h | 33 return {c0.fR + (c1.fR - c0.fR) * weight, c0.fG + (c1.fG - c0.fG) * weight, in constantOutputForConstantInput()
|
/third_party/flutter/skia/samplecode/ |
D | SampleHT.cpp | 47 SkRect fR; member in HTDrawable 54 fR = SkRect::MakeXYWH(rand.nextRangeF(0, 640), rand.nextRangeF(0, 480), in HTDrawable() 81 return oval_contains(fR, x, y); in hitTest() 98 canvas->rotate(values[4], fR.centerX(), fR.centerY()); in onDraw() 110 canvas->drawRect(fR, paint); in onDraw() 113 SkRect onGetBounds() override { return fR; } in onGetBounds()
|
D | SampleArc.cpp | 41 SkRect fR; member in ArcsView::MyDrawable 44 MyDrawable(const SkRect& r) : fR(r), fSweep(0) {} in MyDrawable() 60 canvas->drawArc(fR, 0, fSweep, true, paint); in onDraw() 63 canvas->drawArc(fR, 0, fSweep, false, paint); in onDraw() 67 canvas->drawArc(fR, 0, fSweep, true, paint); in onDraw() 71 canvas->drawArc(fR, 0, fSweep, false, paint); in onDraw() 75 SkRect r(fR); in onGetBounds()
|
/third_party/skia/samplecode/ |
D | SampleArc.cpp | 41 SkRect fR; member in ArcsView::MyDrawable 44 MyDrawable(const SkRect& r) : fR(r), fSweep(0) {} in MyDrawable() 60 canvas->drawArc(fR, 0, fSweep, true, paint); in onDraw() 63 canvas->drawArc(fR, 0, fSweep, false, paint); in onDraw() 67 canvas->drawArc(fR, 0, fSweep, true, paint); in onDraw() 71 canvas->drawArc(fR, 0, fSweep, false, paint); in onDraw() 75 SkRect r(fR); in onGetBounds()
|
/third_party/flutter/skia/src/gpu/effects/ |
D | GrColorMatrixFragmentProcessor.fp | 43 color.fR = input.fR; 49 color.fR += v.fData[0]; 55 color.fR = SkTPin(color.fR, 0.f, 1.f); 62 return {color.fR, color.fG, color.fB, color.fA};
|
D | GrMixerEffect.fp | 31 c0.fR + (c1.fR - c0.fR) * weight,
|
D | GrDistanceFieldGeoProc.h | 212 SkScalar fR, fG, fB; member 215 result.fR = r; result.fG = g; result.fB = b; in Make() 219 return (fR == wa.fR && fG == wa.fG && fB == wa.fB);
|
/third_party/skia/src/gpu/geometry/ |
D | GrQuadUtils.cpp | 436 clip.fR = (t * next_ccw(v.fR) + (1.f - t) * v.fR); in ClipToW0() 463 v.fR = if_then_else(validW, v.fR, in ClipToW0() 464 if_then_else((!ccwValid) & (!cwValid), next_ccw(clip.fR), in ClipToW0() 465 if_then_else(ccwValid, clip.fR, /* cwValid */ next_cw(clip.fR)))); in ClipToW0() 482 mid.fR = 0.5f * (v.fR + next_ccw(v.fR)); in ClipToW0() 499 v2.fR = if_then_else((!validW) | (!ccwValid), clip.fR, in ClipToW0() 500 if_then_else(cwValid, next_cw(mid.fR), v.fR)); in ClipToW0() 521 v.fR = if_then_else(!validW, next_cw(clip.fR), in ClipToW0() 522 if_then_else(!cwValid, mid.fR, v.fR)); in ClipToW0() 941 fR = localQuad->w4f(); in reset() [all …]
|
/third_party/flutter/skia/src/core/ |
D | SkMaskGamma.h | 181 : fParent(std::move(parent)), fR(r), fG(g), fB(b) { } in SkTMaskPreBlend() 187 SkTMaskPreBlend() : fParent(), fR(nullptr), fG(nullptr), fB(nullptr) { } in SkTMaskPreBlend() 194 : fParent(that.fParent), fR(that.fR), fG(that.fG), fB(that.fB) { } in SkTMaskPreBlend() 201 const uint8_t* fR; variable
|
/third_party/skia/src/core/ |
D | SkMaskGamma.h | 181 : fParent(std::move(parent)), fR(r), fG(g), fB(b) { } in SkTMaskPreBlend() 187 SkTMaskPreBlend() : fParent(), fR(nullptr), fG(nullptr), fB(nullptr) { } in SkTMaskPreBlend() 194 : fParent(that.fParent), fR(that.fR), fG(that.fG), fB(that.fB) { } in SkTMaskPreBlend() 201 const uint8_t* fR; variable
|
D | SkCompressedDataUtils.cpp | 75 int fR, fG, fB; member 79 int r8 = SkTPin(col.fR + delta, 0, 255); in add_delta_and_clamp() 104 colors[0].fR = extend_5To8bits(high >> 27); in decompress_etc1() 105 colors[1].fR = extend_5plus3To8Bits(high >> 27, high >> 24); in decompress_etc1() 111 colors[0].fR = extend_4To8bits(high >> 28); in decompress_etc1() 112 colors[1].fR = extend_4To8bits(high >> 24); in decompress_etc1()
|
/third_party/skia/tests/ |
D | SRGBTest.cpp | 120 rgba[i].fR, rgba[i].fG, rgba[i].fB, in DEF_TEST() 121 want.fR, want.fG, want.fB); in DEF_TEST() 123 REPORTER_ASSERT(r, close(rgba[i].fR, want.fR)); in DEF_TEST()
|
D | ProcessorTest.cpp | 466 SkASSERT(inf[i].fR == 0 && inf[i].fG == 0 && inf[i].fB == 0); in legal_modulation() 490 inf[i].fR, inf[i].fG, inf[i].fB, inf[i].fA, in legal_modulation() 491 outf[i].fR, outf[i].fG, outf[i].fB, outf[i].fA, in legal_modulation() 492 expectedForColorModulation[i].fR, expectedForColorModulation[i].fG, in legal_modulation() 505 inf[i].fR, inf[i].fG, inf[i].fB, inf[i].fA, in legal_modulation() 506 outf[i].fR, outf[i].fG, outf[i].fB, outf[i].fA, in legal_modulation() 507 expectedForAlphaModulation[i].fR, expectedForAlphaModulation[i].fG, in legal_modulation() 689 float rDiff = fabsf(output4f.fR - expected4f.fR); in DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS() 704 kTol, input4f.fR, input4f.fG, input4f.fB, input4f.fA, in DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS() 705 output4f.fR, output4f.fG, output4f.fB, output4f.fA, in DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS() [all …]
|
/third_party/flutter/skia/tests/ |
D | SRGBTest.cpp | 125 rgba[i].fR, rgba[i].fG, rgba[i].fB, in test_roundtripping() 126 want.fR, want.fG, want.fB); in test_roundtripping() 128 REPORTER_ASSERT(r, close(rgba[i].fR, want.fR)); in test_roundtripping()
|
/third_party/skia/modules/skottie/src/effects/ |
D | ShiftChannelsEffect.cpp | 54 .bind( kTakeRedFrom_Index, fR) in ShiftChannelsEffectAdapter() 99 const float* rc = coeffs(fR); in onSync() 116 ScalarValue fR = static_cast<float>(Source::kRed), member in skottie::internal::__anon250410030111::ShiftChannelsEffectAdapter
|
/third_party/flutter/skia/modules/particles/src/ |
D | SkCurve.cpp | 19 return { c1.fR + c2.fR, c1.fG + c2.fG, c1.fB + c2.fB, c1.fA + c2.fA }; in operator +() 23 return { c1.fR - c2.fR, c1.fG - c2.fG, c1.fB - c2.fB, c1.fA - c2.fA }; in operator -()
|
/third_party/skia/src/gpu/effects/ |
D | GrDistanceFieldGeoProc.h | 198 SkScalar fR, fG, fB; member 201 result.fR = r; result.fG = g; result.fB = b; in Make() 205 return (fR == wa.fR && fG == wa.fG && fB == wa.fB);
|
/third_party/flutter/skia/bench/ |
D | MatrixBench.cpp | 305 SkRect fR; member in MapRectMatrixBench 316 fR.set(10, 10, 100, 200); in MapRectMatrixBench() 323 fM.mapRectScaleTranslate(&dst, fR); in performTest() 327 fM.mapRect(&dst, fR); in performTest()
|
/third_party/skia/bench/ |
D | MatrixBench.cpp | 305 SkRect fR; member in MapRectMatrixBench 316 fR.setLTRB(10, 10, 100, 200); in MapRectMatrixBench() 323 fM.mapRectScaleTranslate(&dst, fR); in performTest() 327 fM.mapRect(&dst, fR); in performTest()
|