Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
20eedfd7
Commit
20eedfd7
authored
Sep 09, 2013
by
tomasz.wlostowski@cern.ch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
math/math_util.h: fixed signedness bug in rescale()
parent
6639c2d8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
math_util.h
include/math/math_util.h
+6
-6
No files found.
include/math/math_util.h
View file @
20eedfd7
...
@@ -50,12 +50,12 @@ template<> int rescale( int numerator, int value, int denominator )
...
@@ -50,12 +50,12 @@ template<> int rescale( int numerator, int value, int denominator )
template
<>
int64_t
rescale
(
int64_t
numerator
,
int64_t
value
,
int64_t
denominator
)
template
<>
int64_t
rescale
(
int64_t
numerator
,
int64_t
value
,
int64_t
denominator
)
{
{
u
int64_t
r
=
0
;
int64_t
r
=
0
;
int64_t
sign
=
(
(
numerator
<
0
)
?
-
1
:
1
)
*
(
denominator
<
0
?
-
1
:
1
)
*
(
value
<
0
?
-
1
:
1
);
int64_t
sign
=
(
(
numerator
<
0
)
?
-
1
:
1
)
*
(
denominator
<
0
?
-
1
:
1
)
*
(
value
<
0
?
-
1
:
1
);
uint64_t
a
=
abs
(
numerator
);
int64_t
a
=
std
::
abs
(
numerator
);
uint64_t
b
=
abs
(
value
);
int64_t
b
=
std
::
abs
(
value
);
uint64_t
c
=
abs
(
denominator
);
int64_t
c
=
std
::
abs
(
denominator
);
r
=
c
/
2
;
r
=
c
/
2
;
...
@@ -77,14 +77,14 @@ template<> int64_t rescale( int64_t numerator, int64_t value, int64_t denominato
...
@@ -77,14 +77,14 @@ template<> int64_t rescale( int64_t numerator, int64_t value, int64_t denominato
a0
=
a0
*
b0
+
t1a
;
a0
=
a0
*
b0
+
t1a
;
a1
=
a1
*
b1
+
(
t1
>>
32
)
+
(
a0
<
t1a
);
a1
=
a1
*
b1
+
(
t1
>>
32
)
+
(
a0
<
t1a
);
a0
+=
r
;
a0
+=
r
;
a1
+=
a0
<
r
;
a1
+=
((
uint64_t
)
a0
)
<
r
;
for
(
i
=
63
;
i
>=
0
;
i
--
)
for
(
i
=
63
;
i
>=
0
;
i
--
)
{
{
a1
+=
a1
+
(
(
a0
>>
i
)
&
1
);
a1
+=
a1
+
(
(
a0
>>
i
)
&
1
);
t1
+=
t1
;
t1
+=
t1
;
if
(
c
<=
a1
)
if
(
(
uint64_t
)
c
<=
a1
)
{
{
a1
-=
c
;
a1
-=
c
;
t1
++
;
t1
++
;
...
...
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