Home
last modified time | relevance | path

Searched refs:lhsCoefficient (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/
DDecimal.cpp365 ? alignedOperands.lhsCoefficient + alignedOperands.rhsCoefficient in operator +()
366 : alignedOperands.lhsCoefficient - alignedOperands.rhsCoefficient; in operator +()
403 ? alignedOperands.lhsCoefficient - alignedOperands.rhsCoefficient in operator -()
404 : alignedOperands.lhsCoefficient + alignedOperands.rhsCoefficient; in operator -()
424 const uint64_t lhsCoefficient = lhs.m_data.coefficient(); in operator *() local
427 UInt128 work(UInt128::multiply(lhsCoefficient, rhsCoefficient)); in operator *()
575 uint64_t lhsCoefficient = lhs.m_data.coefficient(); in alignOperands() local
579 const int numberOfLHSDigits = countDigits(lhsCoefficient); in alignOperands()
584 lhsCoefficient = scaleUp(lhsCoefficient, lhsShiftAmount); in alignOperands()
586 lhsCoefficient = scaleUp(lhsCoefficient, lhsShiftAmount - overflow); in alignOperands()
[all …]
DDecimal.h164 uint64_t lhsCoefficient; member