OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AlignedOperands
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/
Decimal.h
163
struct
AlignedOperands
{
172
static
AlignedOperands
alignOperands(const Decimal& lhs, const Decimal& rhs);
Decimal.cpp
363
const
AlignedOperands
alignedOperands
= alignOperands(lhs, rhs);
366
?
alignedOperands
.lhsCoefficient +
alignedOperands
.rhsCoefficient
367
:
alignedOperands
.lhsCoefficient -
alignedOperands
.rhsCoefficient;
370
return Decimal(Positive,
alignedOperands
.exponent, 0);
373
? Decimal(lhsSign,
alignedOperands
.exponent, result)
374
: Decimal(invertSign(lhsSign),
alignedOperands
.exponent, -static_cast<int64_t>(result));
401
const
AlignedOperands
alignedOperands = alignOperands(lhs, rhs)
[
all
...]
Completed in 142 milliseconds