Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
R
rapidjson
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
rapidjson
Commits
10345872
Commit
10345872
authored
May 06, 2015
by
Milo Yip
Committed by
miloyip
May 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge pull request #329 from nightmouse/master
Warning cleanup
parent
85564d48
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
19 deletions
+19
-19
biginteger.h
include/rapidjson/internal/biginteger.h
+2
-2
diyfp.h
include/rapidjson/internal/diyfp.h
+2
-2
ieee754.h
include/rapidjson/internal/ieee754.h
+15
-15
No files found.
include/rapidjson/internal/biginteger.h
View file @
10345872
...
...
@@ -97,7 +97,7 @@ public:
if
(
u
==
1
)
return
*
this
;
if
(
*
this
==
1
)
return
*
this
=
u
;
uint
32
_t
k
=
0
;
uint
64
_t
k
=
0
;
for
(
size_t
i
=
0
;
i
<
count_
;
i
++
)
{
const
uint64_t
c
=
digits_
[
i
]
>>
32
;
const
uint64_t
d
=
digits_
[
i
]
&
0xFFFFFFFF
;
...
...
@@ -246,7 +246,7 @@ private:
__extension__
typedef
unsigned
__int128
uint128
;
uint128
p
=
static_cast
<
uint128
>
(
a
)
*
static_cast
<
uint128
>
(
b
);
p
+=
k
;
*
outHigh
=
p
>>
64
;
*
outHigh
=
static_cast
<
uint64_t
>
(
p
>>
64
)
;
return
static_cast
<
uint64_t
>
(
p
);
#else
const
uint64_t
a0
=
a
&
0xFFFFFFFF
,
a1
=
a
>>
32
,
b0
=
b
&
0xFFFFFFFF
,
b1
=
b
>>
32
;
...
...
include/rapidjson/internal/diyfp.h
View file @
10345872
...
...
@@ -45,7 +45,7 @@ struct DiyFp {
uint64_t
u64
;
}
u
=
{
d
};
int
biased_e
=
(
u
.
u64
&
kDpExponentMask
)
>>
kDpSignificandSize
;
int
biased_e
=
static_cast
<
int
>
((
u
.
u64
&
kDpExponentMask
)
>>
kDpSignificandSize
)
;
uint64_t
significand
=
(
u
.
u64
&
kDpSignificandMask
);
if
(
biased_e
!=
0
)
{
f
=
significand
+
kDpHiddenBit
;
...
...
@@ -71,7 +71,7 @@ struct DiyFp {
#elif (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) && defined(__x86_64__)
__extension__
typedef
unsigned
__int128
uint128
;
uint128
p
=
static_cast
<
uint128
>
(
f
)
*
static_cast
<
uint128
>
(
rhs
.
f
);
uint64_t
h
=
p
>>
64
;
uint64_t
h
=
static_cast
<
uint64_t
>
(
p
>>
64
)
;
uint64_t
l
=
static_cast
<
uint64_t
>
(
p
);
if
(
l
&
(
uint64_t
(
1
)
<<
63
))
// rounding
h
++
;
...
...
include/rapidjson/internal/ieee754.h
View file @
10345872
...
...
@@ -23,29 +23,29 @@ namespace internal {
class
Double
{
public
:
Double
()
{}
Double
(
double
d
)
:
d
(
d
)
{}
Double
(
uint64_t
u
)
:
u
(
u
)
{}
Double
(
double
d
)
:
d
_
(
d
)
{}
Double
(
uint64_t
u
)
:
u
_
(
u
)
{}
double
Value
()
const
{
return
d
;
}
uint64_t
Uint64Value
()
const
{
return
u
;
}
double
Value
()
const
{
return
d
_
;
}
uint64_t
Uint64Value
()
const
{
return
u
_
;
}
double
NextPositiveDouble
()
const
{
RAPIDJSON_ASSERT
(
!
Sign
());
return
Double
(
u
+
1
).
Value
();
return
Double
(
u
_
+
1
).
Value
();
}
bool
Sign
()
const
{
return
(
u
&
kSignMask
)
!=
0
;
}
uint64_t
Significand
()
const
{
return
u
&
kSignificandMask
;
}
int
Exponent
()
const
{
return
((
u
&
kExponentMask
)
>>
kSignificandSize
)
-
kExponentBias
;
}
bool
Sign
()
const
{
return
(
u
_
&
kSignMask
)
!=
0
;
}
uint64_t
Significand
()
const
{
return
u
_
&
kSignificandMask
;
}
int
Exponent
()
const
{
return
static_cast
<
int
>
(((
u_
&
kExponentMask
)
>>
kSignificandSize
)
-
kExponentBias
)
;
}
bool
IsNan
()
const
{
return
(
u
&
kExponentMask
)
==
kExponentMask
&&
Significand
()
!=
0
;
}
bool
IsInf
()
const
{
return
(
u
&
kExponentMask
)
==
kExponentMask
&&
Significand
()
==
0
;
}
bool
IsNormal
()
const
{
return
(
u
&
kExponentMask
)
!=
0
||
Significand
()
==
0
;
}
bool
IsZero
()
const
{
return
(
u
&
(
kExponentMask
|
kSignificandMask
))
==
0
;
}
bool
IsNan
()
const
{
return
(
u
_
&
kExponentMask
)
==
kExponentMask
&&
Significand
()
!=
0
;
}
bool
IsInf
()
const
{
return
(
u
_
&
kExponentMask
)
==
kExponentMask
&&
Significand
()
==
0
;
}
bool
IsNormal
()
const
{
return
(
u
_
&
kExponentMask
)
!=
0
||
Significand
()
==
0
;
}
bool
IsZero
()
const
{
return
(
u
_
&
(
kExponentMask
|
kSignificandMask
))
==
0
;
}
uint64_t
IntegerSignificand
()
const
{
return
IsNormal
()
?
Significand
()
|
kHiddenBit
:
Significand
();
}
int
IntegerExponent
()
const
{
return
(
IsNormal
()
?
Exponent
()
:
kDenormalExponent
)
-
kSignificandSize
;
}
uint64_t
ToBias
()
const
{
return
(
u
&
kSignMask
)
?
~
u
+
1
:
u
|
kSignMask
;
}
uint64_t
ToBias
()
const
{
return
(
u
_
&
kSignMask
)
?
~
u_
+
1
:
u_
|
kSignMask
;
}
static
unsigned
EffectiveSignificandSize
(
int
order
)
{
if
(
order
>=
-
1021
)
...
...
@@ -66,8 +66,8 @@ private:
static
const
uint64_t
kHiddenBit
=
RAPIDJSON_UINT64_C2
(
0x00100000
,
0x00000000
);
union
{
double
d
;
uint64_t
u
;
double
d
_
;
uint64_t
u
_
;
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment