/external/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 …]
|
/external/skia/gm/ |
D | circularclips.cpp | 21 SkScalar fX1, fX2, fY, fR; member in CircularClipsGM 29 fR = 40; in onOnceBeforeDraw() 31 fCircle1 = SkPath::Circle(fX1, fY, fR, SkPathDirection::kCW); in onOnceBeforeDraw() 32 fCircle2 = SkPath::Circle(fX2, fY, fR, SkPathDirection::kCW); in onOnceBeforeDraw() 52 SkRect rect = SkRect::MakeLTRB(fX1 - fR, fY - fR, fX2 + fR, fY + fR); in onDraw() 60 canvas->translate(-((fX1 + fX2)/2 - fR), -(fY - 2*fR/3)); in onDraw()
|
/external/skqp/gm/ |
D | circularclips.cpp | 13 SkScalar fX1, fX2, fY, fR; member in CircularClipsGM 21 fR = 40; in onOnceBeforeDraw() 23 fCircle1.addCircle(fX1, fY, fR, SkPath::kCW_Direction); in onOnceBeforeDraw() 24 fCircle2.addCircle(fX2, fY, fR, SkPath::kCW_Direction); in onOnceBeforeDraw() 48 SkRect rect = SkRect::MakeLTRB(fX1 - fR, fY - fR, fX2 + fR, fY + fR); in onDraw() 56 canvas->translate(-((fX1 + fX2)/2 - fR), -(fY - 2*fR/3)); in onDraw()
|
/external/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 …]
|
/external/skqp/include/core/ |
D | SkColor.h | 242 float fR; //!< red component member 253 return fA == other.fA && fR == other.fR && fG == other.fG && fB == other.fB; 271 return { fR * scale, fG * scale, fB * scale, fA * scale }; 280 return { fR * scale.fR, fG * scale.fG, fB * scale.fB, fA * scale.fA }; 287 const float* vec() const { return &fR; } in vec() 293 float* vec() { return &fR; } in vec() 351 return { fR * fA, fG * fA, fB * fA, fA }; in premul() 366 return { fR * invAlpha, fG * invAlpha, fB * invAlpha, fA }; in unpremul() 375 return { fR, fG, fB, 1.0f }; in makeOpaque()
|
/external/skia/src/gpu/effects/generated/ |
D | GrColorMatrixFragmentProcessor.h | 27 color.fR = input.fR; in constantOutputForConstantInput() 32 auto v4 = m.map(color.fR, color.fG, color.fB, color.fA) + v; 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 | GrOverrideInputFragmentProcessor.cpp | 43 _outer.literalColor.fR, in emitCode() 75 uint16_t red = SkFloatToHalf(literalColor.fR); in onGetGLSLProcessorKey() 108 uniformColor.fR, in onDumpInfo() 112 literalColor.fR, in onDumpInfo()
|
D | GrRGBToHSLFilterEffect.h | 27 q = (c.fR < p[0]) ? SkPMColor4f{p[0], c.fR, p[1], p[3]} in constantOutputForConstantInput() 28 : SkPMColor4f{c.fR, p[0], p[1], p[2]}; in constantOutputForConstantInput()
|
/external/skia/src/gpu/gradients/generated/ |
D | GrUnrolledBinaryGradientColorizer.cpp | 368 scale0_1.fR, in onDumpInfo() 372 scale2_3.fR, in onDumpInfo() 376 scale4_5.fR, in onDumpInfo() 380 scale6_7.fR, in onDumpInfo() 384 scale8_9.fR, in onDumpInfo() 388 scale10_11.fR, in onDumpInfo() 392 scale12_13.fR, in onDumpInfo() 396 scale14_15.fR, in onDumpInfo() 400 bias0_1.fR, in onDumpInfo() 404 bias2_3.fR, in onDumpInfo() [all …]
|
D | GrDualIntervalGradientColorizer.cpp | 149 scale01.fR, in onDumpInfo() 153 bias01.fR, in onDumpInfo() 157 scale23.fR, in onDumpInfo() 161 bias23.fR, in onDumpInfo()
|
/external/skqp/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 | 42 SkRect fR; member in ArcsView::MyDrawable 45 MyDrawable(const SkRect& r) : fR(r), fSweep(0) {} in MyDrawable() 61 canvas->drawArc(fR, 0, fSweep, true, paint); in onDraw() 64 canvas->drawArc(fR, 0, fSweep, false, paint); in onDraw() 68 canvas->drawArc(fR, 0, fSweep, true, paint); in onDraw() 72 canvas->drawArc(fR, 0, fSweep, false, paint); in onDraw() 76 SkRect r(fR); in onGetBounds()
|
/external/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()
|
/external/skia/src/gpu/effects/ |
D | GrColorMatrixFragmentProcessor.fp | 43 color.fR = input.fR; 48 auto v4 = m.map(color.fR, color.fG, color.fB, color.fA) + v; 52 color.fR = SkTPin(color.fR, 0.f, 1.f); 59 return {color.fR, color.fG, color.fB, color.fA};
|
D | GrDistanceFieldGeoProc.h | 211 SkScalar fR, fG, fB; member 214 result.fR = r; result.fG = g; result.fB = b; in Make() 218 return (fR == wa.fR && fG == wa.fG && fB == wa.fB);
|
/external/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() 917 fR = localQuad->w4f(); in reset() [all …]
|
/external/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()
|
/external/skqp/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
|
/external/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()
|
/external/skqp/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()
|
/external/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::__anond08eb4970111::ShiftChannelsEffectAdapter
|
/external/skia/tests/sksl/dslfp/ |
D | GrDSLFPTest_Ternary.dsl.cpp | 130 …fR, colorGreen.fG, colorGreen.fB, colorGreen.fA, colorRed.fR, colorRed.fG, colorRed.fB, colorRed.f… in onDumpInfo()
|
D | GrDSLFPTest_ForStatement.dsl.cpp | 28 Var _colorWhite(kConst_Modifier, DSLType(kHalf4_Type), "colorWhite", Half4(colorWhite.fR, colorWhit… in emitCode() 52 uint16_t red = SkFloatToHalf(colorWhite.fR); in onGetGLSLProcessorKey() 75 …return SkStringPrintf("(colorWhite=half4(%f, %f, %f, %f))", colorWhite.fR, colorWhite.fG, colorWhi… in onDumpInfo()
|
/external/skqp/docs/ |
D | SkColor4f_Reference.bmh | 17 fA Alpha is may be greater or smaller than fG green, fB blue, or fR red. 21 fA Alpha is equal to or larger than fG green, fB blue, and fR red. The values 22 stored in fG, fB, and fR combine the color component with the Alpha component. 27 #Member float fR 144 SkDebugf("red=%g green=%g blue=%g alpha=%g\n", color.fR, color.fG, color.fB, color.fA); 169 SkDebugf("red=%g green=%g blue=%g alpha=%g\n", color.fR, color.fG, color.fB, color.fA); 249 SkDebugf("red=%g green=%g blue=%g alpha=%g\n", color4f.fR, color4f.fG, color4f.fB, color4f.fA); 280 SkDebugf("red=%g green=%g blue=%g alpha=%g\n", fromSkColor.fR, fromSkColor.fG,
|