/external/freetype/src/truetype/ |
D | ttgxvar.c | 284 GX_Blend blend = face->blend; in ft_var_load_avar() local 295 blend->avar_checked = TRUE; in ft_var_load_avar() 306 axisCount != (FT_Long)blend->mmvar->num_axis ) in ft_var_load_avar() 309 if ( FT_NEW_ARRAY( blend->avar_segment, axisCount ) ) in ft_var_load_avar() 312 segment = &blend->avar_segment[0]; in ft_var_load_avar() 322 FT_FREE( blend->avar_segment[j].correspondence ); in ft_var_load_avar() 324 FT_FREE( blend->avar_segment ); in ft_var_load_avar() 325 blend->avar_segment = NULL; in ft_var_load_avar() 376 GX_Blend blend = face->blend; in ft_var_load_gvar() local 408 blend->tuplecount = gvar_head.globalCoordCount; in ft_var_load_gvar() [all …]
|
/external/webkit/Source/WebCore/platform/graphics/transforms/ |
D | TranslateTransformOperation.cpp | 28 PassRefPtr<TransformOperation> TranslateTransformOperation::blend(const TransformOperation* from, d… in blend() function in WebCore::TranslateTransformOperation 34 …return TranslateTransformOperation::create(Length(m_x.type()).blend(m_x, narrowPrecisionToFloat(pr… in blend() 35 … Length(m_y.type()).blend(m_y, narrowPrecisionToFloat(progress)), in blend() 36 … Length(m_z.type()).blend(m_z, narrowPrecisionToFloat(progress)), m_type); in blend() 42 …Operation::create(m_x.blend(fromX, narrowPrecisionToFloat(progress)), m_y.blend(fromY, narrowPreci… in blend()
|
D | Matrix3DTransformOperation.cpp | 35 PassRefPtr<TransformOperation> Matrix3DTransformOperation::blend(const TransformOperation* from, do… in blend() function in WebCore::Matrix3DTransformOperation 52 toT.blend(fromT, progress); in blend()
|
D | MatrixTransformOperation.cpp | 31 PassRefPtr<TransformOperation> MatrixTransformOperation::blend(const TransformOperation* from, doub… in blend() function in WebCore::MatrixTransformOperation 48 toT.blend(fromT, progress); in blend()
|
D | PerspectiveTransformOperation.cpp | 35 PassRefPtr<TransformOperation> PerspectiveTransformOperation::blend(const TransformOperation* from,… in blend() function in WebCore::PerspectiveTransformOperation 54 toT.blend(fromT, progress); in blend()
|
D | RotateTransformOperation.cpp | 32 PassRefPtr<TransformOperation> RotateTransformOperation::blend(const TransformOperation* from, doub… in blend() function in WebCore::RotateTransformOperation 69 toT.blend(fromT, progress); in blend()
|
D | SkewTransformOperation.cpp | 27 PassRefPtr<TransformOperation> SkewTransformOperation::blend(const TransformOperation* from, double… in blend() function in WebCore::SkewTransformOperation
|
D | IdentityTransformOperation.h | 54 virtual PassRefPtr<TransformOperation> blend(const TransformOperation*, double, bool = false)
|
/external/skia/src/animator/ |
D | SkDisplayRandom.cpp | 29 SK_MEMBER(blend, Float), 40 SkDisplayRandom::SkDisplayRandom() : blend(0), min(0), max(SK_Scalar1) { in SkDisplayRandom() 49 SkDebugf("blend=\"%g\" ", SkScalarToFloat(blend)); in dump() 53 SkDebugf("blend=\"%x\" ", blend); in dump() 63 … SkScalar relativeT = SkUnitCubicInterp(random, SK_Scalar1 - blend, 0, 0, SK_Scalar1 - blend); in getProperty()
|
D | SkAnimateField.cpp | 63 if (blend.count() != 1 || blend[0] != SK_Scalar1) { in dump() 66 for (int i = 0; i < blend.count(); i++) { in dump() 71 SkDebugf("%g", SkScalarToFloat(blend[i])); in dump() 73 SkDebugf("%x", blend[i]); in dump()
|
D | SkOperandIterpolator.cpp | 47 …kOperandInterpolator::setKeyFrame(int index, SkMSec time, const SkOperand values[], SkScalar blend) in setKeyFrame() argument 50 blend = SkScalarPin(blend, 0, SK_Scalar1); in setKeyFrame() 57 timeCode->fBlend[0] = SK_Scalar1 - blend; in setKeyFrame() 60 timeCode->fBlend[3] = SK_Scalar1 - blend; in setKeyFrame()
|
D | SkAnimateBase.cpp | 29 SK_MEMBER_ARRAY(blend, Float), 53 blend.setCount(1); in SkAnimateBase() 54 blend[0] = SK_Scalar1; in SkAnimateBase()
|
D | SkAnimateActive.cpp | 327 fInterpolators[index]->setKeyFrame(0, 0, existingValues.begin(), animate->blend[0]); in pickUp() 328 fInterpolators[index]->setKeyFrame(1, fState[index].fDuration, to, animate->blend[0]); in pickUp() 387 interpolator.setKeyFrame(0, 0, from, animate->blend[0]); in setInterpolator() 388 interpolator.setKeyFrame(1, duration, from, animate->blend[0]); in setInterpolator() 392 int blendIndex = SkMin32(animate->blend.count() - 1, entry); in setInterpolator() 394 animate->blend[blendIndex]); in setInterpolator()
|
D | SkDisplayRandom.h | 42 SkScalar blend;
|
D | SkOperandInterpolator.h | 43 …bool setKeyFrame(int index, SkMSec time, const SkOperand values[], SkScalar blend = SK_Scalar1);
|
/external/freetype/src/psaux/ |
D | t1decode.c | 801 PS_Blend blend = decoder->blend; in t1_decoder_parse_charstrings() local 807 if ( !blend ) in t1_decoder_parse_charstrings() 815 if ( arg_cnt != (FT_Int)( num_points * blend->num_designs ) ) in t1_decoder_parse_charstrings() 845 for ( mm = 1; mm < blend->num_designs; mm++ ) in t1_decoder_parse_charstrings() 846 tmp += FT_MulFix( *delta++, blend->weight_vector[mm] ); in t1_decoder_parse_charstrings() 861 PS_Blend blend = decoder->blend; in t1_decoder_parse_charstrings() local 864 if ( arg_cnt != 1 || blend == NULL ) in t1_decoder_parse_charstrings() 870 idx + blend->num_designs > decoder->len_buildchar ) in t1_decoder_parse_charstrings() 874 blend->weight_vector, in t1_decoder_parse_charstrings() 875 blend->num_designs * in t1_decoder_parse_charstrings() [all …]
|
D | t1decode.h | 50 PS_Blend blend,
|
/external/skia/src/utils/ |
D | SkInterpolator.cpp | 69 SkMSec nextTime, const SkScalar blend[4]) { in ComputeRelativeT() 74 return blend ? in ComputeRelativeT() 75 SkUnitCubicInterp(t, blend[0], blend[1], blend[2], blend[3]) : t; in ComputeRelativeT() 173 const SkScalar values[], const SkScalar blend[4]) { in setKeyFrame() 176 if (blend == NULL) { in setKeyFrame() 177 blend = gIdentityBlend; in setKeyFrame() 186 memcpy(timeCode->fBlend, blend, sizeof(timeCode->fBlend)); in setKeyFrame()
|
/external/qemu/android/skin/ |
D | image.c | 183 h += desc->blend * 7; in skin_image_desc_hash() 194 a->blend == b->blend && in skin_image_desc_equal() 476 desc->blend == SKIN_BLEND_FULL) in skin_image_create() 489 desc0.blend = SKIN_BLEND_FULL; in skin_image_create() 518 if (desc->blend != SKIN_BLEND_FULL) in skin_image_create() 519 blend_image( node->pixels, node->pixels, node->w, node->h, desc->blend ); in skin_image_create() 580 desc.blend = SKIN_BLEND_FULL; in skin_image_find_simple() 665 int blend ) in skin_image_clone_full() argument 674 blend == SKIN_BLEND_FULL) in skin_image_clone_full() 681 desc.blend = blend; in skin_image_clone_full() [all …]
|
D | image.h | 35 int blend; /* blending, 0..256 value */ member 87 int blend ); 90 extern void skin_image_blend_clone( SkinImage* clone, SkinImage* source, int blend );
|
/external/webkit/Source/WebCore/page/animation/ |
D | AnimationBase.cpp | 116 return to.blend(from, narrowPrecisionToFloat(progress)); in blendFunc() 169 …Ptr<TransformOperation> blendedOp = toOp ? toOp->blend(fromOp.get(), progress) : (fromOp ? fromOp-… in blendFunc() 188 toT.blend(fromT, progress); in blendFunc() 241 …virtual void blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const Render… 286 …virtual void blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const Render… in blend() function in WebCore::PropertyWrapper 305 …virtual void blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const Render… in blend() function in WebCore::PropertyWrapperAcceleratedOpacity 323 …virtual void blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const Render… in blend() function in WebCore::PropertyWrapperAcceleratedTransform 361 …virtual void blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const Render… in blend() function in WebCore::PropertyWrapperShadow 420 …virtual void blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const Render… in blend() function in WebCore::PropertyWrapperMaybeInvalidColor 450 …virtual void blend(const AnimationBase* anim, FillLayer* dst, const FillLayer* a, const FillLayer*… [all …]
|
/external/skia/include/utils/ |
D | SkInterpolator.h | 78 SkMSec nextTime, const SkScalar blend[4] = NULL); 112 const SkScalar blend[4] = NULL);
|
/external/skia/tests/ |
D | BlitRowTest.cpp | 140 bool blend = (k & 2) != 0; in test_00_FF() local 141 if (gSrcRec[j].fSrc != 0 && blend) { in test_00_FF() 147 paint.setAlpha(blend ? 0x80 : 0xFF); in test_00_FF() 151 SkDebugf("--- src index %d dither %d blend %d\n", j, dither, blend); in test_00_FF()
|
/external/webkit/Source/WebCore/svg/ |
D | SVGFEBlendElement.cpp | 73 FEBlend* blend = static_cast<FEBlend*>(effect); in setFilterEffectAttribute() local 75 return blend->setBlendMode(static_cast<BlendModeType>(mode())); in setFilterEffectAttribute()
|
/external/webkit/Source/WebCore/css/ |
D | CSSGradientValue.cpp | 87 static inline int blend(int from, int to, float progress) in blend() function 92 static inline Color blend(const Color& from, const Color& to, float progress) in blend() function 95 return Color(blend(from.red(), to.red(), progress), in blend() 96 blend(from.green(), to.green(), progress), in blend() 97 blend(from.blue(), to.blue(), progress), in blend() 98 blend(from.alpha(), to.alpha(), progress)); in blend() 337 …Color blendedColor = blend(stops[firstZeroOrGreaterIndex - 1].color, stops[firstZeroOrGreaterIndex… in addStops()
|