trunc             152 Source/bindings/v8/V8Binding.cpp     x = trunc(x);
trunc             145 Source/core/animation/AnimatableLength.cpp     return CSSCalcValue::createExpressionNode(toCSSPrimitiveValue(AllValues), m_number == trunc(m_number));
trunc              72 Source/core/animation/AnimatableLengthTest.cpp             CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(valueLeft, typeLeft), valueLeft == trunc(valueLeft)),
trunc              73 Source/core/animation/AnimatableLengthTest.cpp             CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(valueRight, typeRight), valueRight == trunc(valueRight)),
trunc             686 Source/core/css/CSSCalculationValue.cpp         return createExpressionNode(CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER), value == trunc(value));
trunc             723 Source/core/css/CSSCalculationValue.cpp         return createExpressionNode(CSSPrimitiveValue::create(length, zoom), length.value() == trunc(length.value()));
trunc             418 Source/modules/crypto/NormalizeAlgorithm.cpp     number = trunc(number);
trunc             291 Source/wtf/MathExtras.h         double fmodValue = fmod(trunc(d), std::numeric_limits<unsigned long long>::max() + 1.0);