Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
505e5a16
Commit
505e5a16
authored
Nov 06, 2012
by
Piotr Caban
Committed by
Alexandre Julliard
Nov 06, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Improved _wcstod_l precision.
parent
a3035679
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
5 deletions
+12
-5
wcs.c
dlls/msvcrt/wcs.c
+12
-5
No files found.
dlls/msvcrt/wcs.c
View file @
505e5a16
...
...
@@ -202,7 +202,8 @@ double CDECL MSVCRT__wcstod_l(const MSVCRT_wchar_t* str, MSVCRT_wchar_t** end,
int
exp
=
0
,
sign
=
1
;
const
MSVCRT_wchar_t
*
p
;
double
ret
;
BOOL
found_digit
=
FALSE
;
long
double
lret
=
1
,
expcnt
=
10
;
BOOL
found_digit
=
FALSE
,
negexp
;
if
(
!
MSVCRT_CHECK_PMT
(
str
!=
NULL
))
return
0
;
...
...
@@ -287,10 +288,16 @@ double CDECL MSVCRT__wcstod_l(const MSVCRT_wchar_t* str, MSVCRT_wchar_t** end,
_control87
(
MSVCRT__EM_DENORMAL
|
MSVCRT__EM_INVALID
|
MSVCRT__EM_ZERODIVIDE
|
MSVCRT__EM_OVERFLOW
|
MSVCRT__EM_UNDERFLOW
|
MSVCRT__EM_INEXACT
,
0xffffffff
);
if
(
exp
>
0
)
ret
=
(
double
)
sign
*
d
*
pow
(
10
,
exp
);
else
ret
=
(
double
)
sign
*
d
/
pow
(
10
,
-
exp
);
negexp
=
(
exp
<
0
);
if
(
negexp
)
exp
=
-
exp
;
while
(
exp
)
{
if
(
exp
&
1
)
lret
*=
expcnt
;
exp
/=
2
;
expcnt
=
expcnt
*
expcnt
;
}
ret
=
(
long
double
)
sign
*
(
negexp
?
d
/
lret
:
d
*
lret
);
_control87
(
fpcontrol
,
0xffffffff
);
...
...
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