OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DiyFp
(Results
1 - 2
of
2
) sorted by null
/external/icu/icu4c/source/i18n/
double-conversion-diy-fp.h
50
// with a uint64 significand and an int exponent. Normalized
DiyFp
numbers will
53
//
DiyFp
are not designed to contain special doubles (NaN and Infinity).
54
class
DiyFp
{
58
DiyFp
() : f_(0), e_(0) {}
59
DiyFp
(uint64_t significand, int exponent) : f_(significand), e_(exponent) {}
65
void Subtract(const
DiyFp
& other) {
74
static
DiyFp
Minus(const
DiyFp
& a, const
DiyFp
& b) {
75
DiyFp
result = a
[
all
...]
/external/v8/src/
diy-fp.h
16
// with a uint64 significand and an int exponent. Normalized
DiyFp
numbers will
19
//
DiyFp
are not designed to contain special doubles (NaN and Infinity).
20
class
DiyFp
{
24
DiyFp
() : f_(0), e_(0) {}
25
DiyFp
(uint64_t f, int e) : f_(f), e_(e) {}
31
void Subtract(const
DiyFp
& other) {
40
static
DiyFp
Minus(const
DiyFp
& a, const
DiyFp
& b) {
41
DiyFp
result = a
[
all
...]
Completed in 265 milliseconds