Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
e0842404
Commit
e0842404
authored
Mar 28, 2016
by
Daniel Lehman
Committed by
Alexandre Julliard
Mar 31, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr120: Add asinh.
Signed-off-by:
Daniel Lehman
<
dlehman@esri.com
>
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
82f59928
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
56 additions
and
12 deletions
+56
-12
configure
configure
+2
-0
configure.ac
configure.ac
+2
-0
api-ms-win-crt-math-l1-1-0.spec
...pi-ms-win-crt-math-l1-1-0/api-ms-win-crt-math-l1-1-0.spec
+3
-3
msvcr120.spec
dlls/msvcr120/msvcr120.spec
+3
-3
msvcr120_app.spec
dlls/msvcr120_app/msvcr120_app.spec
+3
-3
math.c
dlls/msvcrt/math.c
+34
-0
ucrtbase.spec
dlls/ucrtbase/ucrtbase.spec
+3
-3
config.h.in
include/config.h.in
+6
-0
No files found.
configure
View file @
e0842404
...
...
@@ -16858,6 +16858,8 @@ $as_echo "#define HAVE_ISNAN 1" >>confdefs.h
fi
for
ac_func
in
\
asinh
\
asinhf
\
cbrt
\
cbrtf
\
erf
\
...
...
configure.ac
View file @
e0842404
...
...
@@ -2516,6 +2516,8 @@ then
fi
AC_CHECK_FUNCS(\
asinh \
asinhf \
cbrt \
cbrtf \
erf \
...
...
dlls/api-ms-win-crt-math-l1-1-0/api-ms-win-crt-math-l1-1-0.spec
View file @
e0842404
...
...
@@ -129,9 +129,9 @@
@ stub acoshl
@ cdecl asin(double) ucrtbase.asin
@ cdecl -arch=arm,x86_64 asinf(float) ucrtbase.asinf
@
stub
asinh
@
stub
asinhf
@
stub
asinhl
@
cdecl asinh(double double) ucrtbase.
asinh
@
cdecl asinhf(float float) ucrtbase.
asinhf
@
cdecl asinhl(double double) ucrtbase.
asinhl
@ cdecl atan(double) ucrtbase.atan
@ cdecl atan2(double double) ucrtbase.atan2
@ cdecl -arch=arm,x86_64 atan2f(float float) ucrtbase.atan2f
...
...
dlls/msvcr120/msvcr120.spec
View file @
e0842404
...
...
@@ -2018,9 +2018,9 @@
@ cdecl asctime_s(ptr long ptr) MSVCRT_asctime_s
@ cdecl asin(double) MSVCRT_asin
@ cdecl -arch=arm,x86_64 asinf(float) MSVCRT_asinf
@
stub
asinh
@
stub
asinhf
@
stub
asinhl
@
cdecl asinh(double double) MSVCR120_
asinh
@
cdecl asinhf(float float) MSVCR120_
asinhf
@
cdecl asinhl(double double) MSVCR120_
asinhl
@ cdecl atan(double) MSVCRT_atan
@ cdecl -arch=arm,x86_64 atanf(float) MSVCRT_atanf
@ cdecl atan2(double double) MSVCRT_atan2
...
...
dlls/msvcr120_app/msvcr120_app.spec
View file @
e0842404
...
...
@@ -1684,9 +1684,9 @@
@ cdecl asctime_s(ptr long ptr) msvcr120.asctime_s
@ cdecl asin(double) msvcr120.asin
@ cdecl -arch=arm,x86_64 asinf(float) msvcr120.asinf
@
stub
asinh
@
stub
asinhf
@
stub
asinhl
@
cdecl asinh(double double) msvcr120.
asinh
@
cdecl asinhf(float float) msvcr120.
asinhf
@
cdecl asinhl(double double) msvcr120.
asinhl
@ cdecl atan(double) msvcr120.atan
@ cdecl -arch=arm,x86_64 atanf(float) msvcr120.atanf
@ cdecl atan2(double double) msvcr120.atan2
...
...
dlls/msvcrt/math.c
View file @
e0842404
...
...
@@ -2743,3 +2743,37 @@ double CDECL MSVCR120_fmin(double x, double y)
return
signbit
(
x
)
?
x
:
y
;
return
x
<
y
?
x
:
y
;
}
/*********************************************************************
* asinh (MSVCR120.@)
*/
double
CDECL
MSVCR120_asinh
(
double
x
)
{
#ifdef HAVE_ASINH
return
asinh
(
x
);
#else
FIXME
(
"not implemented
\n
"
);
return
0
.
0
;
#endif
}
/*********************************************************************
* asinhf (MSVCR120.@)
*/
float
CDECL
MSVCR120_asinhf
(
float
x
)
{
#ifdef HAVE_ASINHF
return
asinhf
(
x
);
#else
FIXME
(
"not implemented
\n
"
);
return
0
.
0
f
;
#endif
}
/*********************************************************************
* asinhl (MSVCR120.@)
*/
LDOUBLE
CDECL
MSVCR120_asinhl
(
LDOUBLE
x
)
{
return
MSVCR120_asinh
(
x
);
}
dlls/ucrtbase/ucrtbase.spec
View file @
e0842404
...
...
@@ -2160,9 +2160,9 @@
@ cdecl asctime_s(ptr long ptr) MSVCRT_asctime_s
@ cdecl asin(double) MSVCRT_asin
@ cdecl -arch=arm,x86_64 asinf(float) MSVCRT_asinf
@
stub
asinh
@
stub
asinhf
@
stub
asinhl
@
cdecl asinh(double double) MSVCR120_
asinh
@
cdecl asinhf(float float) MSVCR120_
asinhf
@
cdecl asinhl(double double) MSVCR120_
asinhl
@ cdecl atan(double) MSVCRT_atan
@ cdecl atan2(double double) MSVCRT_atan2
@ cdecl -arch=arm,x86_64 atan2f(float float) MSVCRT_atan2f
...
...
include/config.h.in
View file @
e0842404
...
...
@@ -32,6 +32,12 @@
/* Define to 1 if you have the `asctime_r' function. */
#undef HAVE_ASCTIME_R
/* Define to 1 if you have the `asinh' function. */
#undef HAVE_ASINH
/* Define to 1 if you have the `asinhf' function. */
#undef HAVE_ASINHF
/* Define to 1 if you have the <asm/types.h> header file. */
#undef HAVE_ASM_TYPES_H
...
...
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