Searched refs:fromValue (Results 1 – 2 of 2) sorted by relevance
238 NameValuesHolder(int nameConstant, float fromValue, float deltaValue) { in NameValuesHolder() argument240 mFromValue = fromValue; in NameValuesHolder()919 float fromValue = getValue(constantName); in animateProperty() local920 float deltaValue = toValue - fromValue; in animateProperty()921 animatePropertyBy(constantName, fromValue, deltaValue); in animateProperty()933 float fromValue = getValue(constantName); in animatePropertyBy() local934 animatePropertyBy(constantName, fromValue, byValue); in animatePropertyBy()
59 inline U8CPU lerp(U8CPU fromValue, U8CPU toValue, float fraction) { in lerp() argument60 return (U8CPU) (fromValue * (1 - fraction) + toValue * fraction); in lerp()