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
2350e48f
Commit
2350e48f
authored
Jan 25, 2013
by
Piotr Caban
Committed by
Alexandre Julliard
Jan 25, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: Added std::norm(complex) and std::polar(complex) implementation.
parent
690e3268
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
74 additions
and
18 deletions
+74
-18
math.c
dlls/msvcp90/math.c
+56
-0
msvcp90.spec
dlls/msvcp90/msvcp90.spec
+18
-18
No files found.
dlls/msvcp90/math.c
View file @
2350e48f
...
@@ -1402,6 +1402,31 @@ complex_float* __cdecl complex_float_log10(complex_float *ret, const complex_flo
...
@@ -1402,6 +1402,31 @@ complex_float* __cdecl complex_float_log10(complex_float *ret, const complex_flo
return
ret
;
return
ret
;
}
}
/* ??$norm@M@std@@YAMABV?$complex@M@0@@Z */
/* ??$norm@M@std@@YAMAEBV?$complex@M@0@@Z */
float
__cdecl
complex_float_norm
(
const
complex_float
*
c
)
{
return
c
->
real
*
c
->
real
+
c
->
imag
*
c
->
imag
;
}
/* ??$polar@M@std@@YA?AV?$complex@M@0@ABM0@Z */
/* ??$polar@M@std@@YA?AV?$complex@M@0@AEBM0@Z */
complex_float
*
__cdecl
complex_float_polar_theta
(
complex_float
*
ret
,
const
float
*
mod
,
const
float
*
theta
)
{
ret
->
real
=
*
mod
*
cos
(
*
theta
);
ret
->
imag
=
*
mod
*
sin
(
*
theta
);
return
ret
;
}
/* ??$polar@M@std@@YA?AV?$complex@M@0@ABM@Z */
/* ??$polar@M@std@@YA?AV?$complex@M@0@AEBM@Z */
complex_float
*
__cdecl
complex_float_polar
(
complex_float
*
ret
,
const
float
*
mod
)
{
ret
->
real
=
*
mod
;
ret
->
imag
=
0
;
return
ret
;
}
/* ??0?$_Complex_base@NU_C_double_complex@@@std@@QAE@ABN0@Z */
/* ??0?$_Complex_base@NU_C_double_complex@@@std@@QAE@ABN0@Z */
/* ??0?$_Complex_base@NU_C_double_complex@@@std@@QEAA@AEBN0@Z */
/* ??0?$_Complex_base@NU_C_double_complex@@@std@@QEAA@AEBN0@Z */
/* ??0?$_Complex_base@OU_C_ldouble_complex@@@std@@QAE@ABO0@Z */
/* ??0?$_Complex_base@OU_C_ldouble_complex@@@std@@QAE@ABO0@Z */
...
@@ -2017,3 +2042,34 @@ complex_double* __cdecl complex_double_log10(complex_double *ret, const complex_
...
@@ -2017,3 +2042,34 @@ complex_double* __cdecl complex_double_log10(complex_double *ret, const complex_
ret
->
imag
*=
M_LOG10E
;
ret
->
imag
*=
M_LOG10E
;
return
ret
;
return
ret
;
}
}
/* ??$norm@N@std@@YANABV?$complex@N@0@@Z */
/* ??$norm@N@std@@YANAEBV?$complex@N@0@@Z */
/* ??$norm@O@std@@YAOABV?$complex@O@0@@Z */
/* ??$norm@O@std@@YAOAEBV?$complex@O@0@@Z */
double
__cdecl
complex_double_norm
(
const
complex_double
*
c
)
{
return
c
->
real
*
c
->
real
+
c
->
imag
*
c
->
imag
;
}
/* ??$polar@N@std@@YA?AV?$complex@N@0@ABN0@Z */
/* ??$polar@N@std@@YA?AV?$complex@N@0@AEBN0@Z */
/* ??$polar@O@std@@YA?AV?$complex@O@0@ABO0@Z */
/* ??$polar@O@std@@YA?AV?$complex@O@0@AEBO0@Z */
complex_double
*
__cdecl
complex_double_polar_theta
(
complex_double
*
ret
,
const
double
*
mod
,
const
double
*
theta
)
{
ret
->
real
=
*
mod
*
cos
(
*
theta
);
ret
->
imag
=
*
mod
*
sin
(
*
theta
);
return
ret
;
}
/* ??$polar@N@std@@YA?AV?$complex@N@0@ABN@Z */
/* ??$polar@N@std@@YA?AV?$complex@N@0@AEBN@Z */
/* ??$polar@O@std@@YA?AV?$complex@O@0@ABO@Z */
/* ??$polar@O@std@@YA?AV?$complex@O@0@AEBO@Z */
complex_double
*
__cdecl
complex_double_polar
(
complex_double
*
ret
,
const
double
*
mod
)
{
ret
->
real
=
*
mod
;
ret
->
imag
=
0
;
return
ret
;
}
dlls/msvcp90/msvcp90.spec
View file @
2350e48f
...
@@ -416,24 +416,24 @@
...
@@ -416,24 +416,24 @@
@ cdecl -arch=win64 ??$log@N@std@@YA?AV?$complex@N@0@AEBV10@@Z(ptr ptr) complex_double_log
@ cdecl -arch=win64 ??$log@N@std@@YA?AV?$complex@N@0@AEBV10@@Z(ptr ptr) complex_double_log
@ cdecl -arch=win32 ??$log@O@std@@YA?AV?$complex@O@0@ABV10@@Z(ptr ptr) complex_double_log
@ cdecl -arch=win32 ??$log@O@std@@YA?AV?$complex@O@0@ABV10@@Z(ptr ptr) complex_double_log
@ cdecl -arch=win64 ??$log@O@std@@YA?AV?$complex@O@0@AEBV10@@Z(ptr ptr) complex_double_log
@ cdecl -arch=win64 ??$log@O@std@@YA?AV?$complex@O@0@AEBV10@@Z(ptr ptr) complex_double_log
@
stub -arch=win32 ??$norm@M@std@@YAMABV?$complex@M@0@@Z
@
cdecl -arch=win32 ??$norm@M@std@@YAMABV?$complex@M@0@@Z(ptr) complex_float_norm
@
stub -arch=win64 ??$norm@M@std@@YAMAEBV?$complex@M@0@@Z
@
cdecl -arch=win64 ??$norm@M@std@@YAMAEBV?$complex@M@0@@Z(ptr) complex_float_norm
@
stub -arch=win32 ??$norm@N@std@@YANABV?$complex@N@0@@Z
@
cdecl -arch=win32 ??$norm@N@std@@YANABV?$complex@N@0@@Z(ptr) complex_double_norm
@
stub -arch=win64 ??$norm@N@std@@YANAEBV?$complex@N@0@@Z
@
cdecl -arch=win64 ??$norm@N@std@@YANAEBV?$complex@N@0@@Z(ptr) complex_double_norm
@
stub -arch=win32 ??$norm@O@std@@YAOABV?$complex@O@0@@Z
@
cdecl -arch=win32 ??$norm@O@std@@YAOABV?$complex@O@0@@Z(ptr) complex_double_norm
@
stub -arch=win64 ??$norm@O@std@@YAOAEBV?$complex@O@0@@Z
@
cdecl -arch=win64 ??$norm@O@std@@YAOAEBV?$complex@O@0@@Z(ptr) complex_double_norm
@
stub -arch=win32 ??$polar@M@std@@YA?AV?$complex@M@0@ABM0@Z
@
cdecl -arch=win32 ??$polar@M@std@@YA?AV?$complex@M@0@ABM0@Z(ptr ptr ptr) complex_float_polar_theta
@
stub -arch=win64 ??$polar@M@std@@YA?AV?$complex@M@0@AEBM0@Z
@
cdecl -arch=win64 ??$polar@M@std@@YA?AV?$complex@M@0@AEBM0@Z(ptr ptr ptr) complex_float_polar_theta
@
stub -arch=win32 ??$polar@M@std@@YA?AV?$complex@M@0@ABM@Z
@
cdecl -arch=win32 ??$polar@M@std@@YA?AV?$complex@M@0@ABM@Z(ptr ptr) complex_float_polar
@
stub -arch=win64 ??$polar@M@std@@YA?AV?$complex@M@0@AEBM@Z
@
cdecl -arch=win64 ??$polar@M@std@@YA?AV?$complex@M@0@AEBM@Z(ptr ptr) complex_float_polar
@
stub -arch=win32 ??$polar@N@std@@YA?AV?$complex@N@0@ABN0@Z
@
cdecl -arch=win32 ??$polar@N@std@@YA?AV?$complex@N@0@ABN0@Z(ptr ptr ptr) complex_double_polar_theta
@
stub -arch=win64 ??$polar@N@std@@YA?AV?$complex@N@0@AEBN0@Z
@
cdecl -arch=win64 ??$polar@N@std@@YA?AV?$complex@N@0@AEBN0@Z(ptr ptr ptr) complex_double_polar_theta
@
stub -arch=win32 ??$polar@N@std@@YA?AV?$complex@N@0@ABN@Z
@
cdecl -arch=win32 ??$polar@N@std@@YA?AV?$complex@N@0@ABN@Z(ptr ptr) complex_double_polar
@
stub -arch=win64 ??$polar@N@std@@YA?AV?$complex@N@0@AEBN@Z
@
cdecl -arch=win64 ??$polar@N@std@@YA?AV?$complex@N@0@AEBN@Z(ptr ptr) complex_double_polar
@
stub -arch=win32 ??$polar@O@std@@YA?AV?$complex@O@0@ABO0@Z
@
cdecl -arch=win32 ??$polar@O@std@@YA?AV?$complex@O@0@ABO0@Z(ptr ptr ptr) complex_double_polar_theta
@
stub -arch=win64 ??$polar@O@std@@YA?AV?$complex@O@0@AEBO0@Z
@
cdecl -arch=win64 ??$polar@O@std@@YA?AV?$complex@O@0@AEBO0@Z(ptr ptr ptr) complex_double_polar_theta
@
stub -arch=win32 ??$polar@O@std@@YA?AV?$complex@O@0@ABO@Z
@
cdecl -arch=win32 ??$polar@O@std@@YA?AV?$complex@O@0@ABO@Z(ptr ptr) complex_double_polar
@
stub -arch=win64 ??$polar@O@std@@YA?AV?$complex@O@0@AEBO@Z
@
cdecl -arch=win64 ??$polar@O@std@@YA?AV?$complex@O@0@AEBO@Z(ptr ptr) complex_double_polar
@ stub -arch=win32 ??$pow@M@std@@YA?AV?$complex@M@0@ABMABV10@@Z
@ stub -arch=win32 ??$pow@M@std@@YA?AV?$complex@M@0@ABMABV10@@Z
@ stub -arch=win64 ??$pow@M@std@@YA?AV?$complex@M@0@AEBMAEBV10@@Z
@ stub -arch=win64 ??$pow@M@std@@YA?AV?$complex@M@0@AEBMAEBV10@@Z
@ stub -arch=win32 ??$pow@M@std@@YA?AV?$complex@M@0@ABV10@0@Z
@ stub -arch=win32 ??$pow@M@std@@YA?AV?$complex@M@0@ABV10@0@Z
...
...
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