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/core/platform/
Decimal.h
162
struct
AlignedOperands
{
171
static
AlignedOperands
alignOperands(const Decimal& lhs, const Decimal& rhs);
Decimal.cpp
364
const
AlignedOperands
alignedOperands
= alignOperands(lhs, rhs);
367
?
alignedOperands
.lhsCoefficient +
alignedOperands
.rhsCoefficient
368
:
alignedOperands
.lhsCoefficient -
alignedOperands
.rhsCoefficient;
371
return Decimal(Positive,
alignedOperands
.exponent, 0);
374
? Decimal(lhsSign,
alignedOperands
.exponent, result)
375
: Decimal(invertSign(lhsSign),
alignedOperands
.exponent, -static_cast<int64_t>(result));
402
const
AlignedOperands
alignedOperands = alignOperands(lhs, rhs)
[
all
...]
Completed in 198 milliseconds