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
3e974548
Commit
3e974548
authored
Jan 16, 2013
by
Piotr Caban
Committed by
Alexandre Julliard
Jan 16, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: Added std::arg(complex) implementation.
parent
383bbb87
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
6 deletions
+22
-6
math.c
dlls/msvcp90/math.c
+16
-0
msvcp90.spec
dlls/msvcp90/msvcp90.spec
+6
-6
No files found.
dlls/msvcp90/math.c
View file @
3e974548
...
...
@@ -1223,6 +1223,13 @@ complex_float* __thiscall complex_float_div_assign(complex_float *this, const co
return
complex_float_div
(
this
,
&
tmp
,
r
);
}
/* ??$arg@M@std@@YAMABV?$complex@M@0@@Z */
/* ??$arg@M@std@@YAMAEBV?$complex@M@0@@Z */
float
__cdecl
complex_float_arg
(
const
complex_float
*
c
)
{
return
atan2
(
c
->
imag
,
c
->
real
);
}
/* ??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@OU_C_ldouble_complex@@@std@@QAE@ABO0@Z */
...
...
@@ -1622,3 +1629,12 @@ complex_double* __thiscall complex_double_div_assign(complex_double *this, const
complex_double
tmp
=
*
this
;
return
complex_double_div
(
this
,
&
tmp
,
r
);
}
/* ??$arg@N@std@@YANABV?$complex@N@0@@Z */
/* ??$arg@N@std@@YANAEBV?$complex@N@0@@Z */
/* ??$arg@O@std@@YAOABV?$complex@O@0@@Z */
/* ??$arg@O@std@@YAOAEBV?$complex@O@0@@Z */
double
__cdecl
complex_double_arg
(
const
complex_double
*
c
)
{
return
atan2
(
c
->
imag
,
c
->
real
);
}
dlls/msvcp90/msvcp90.spec
View file @
3e974548
...
...
@@ -356,12 +356,12 @@
@ stub -arch=win64 ??$abs@N@std@@YANAEBV?$complex@N@0@@Z
@ stub -arch=win32 ??$abs@O@std@@YAOABV?$complex@O@0@@Z
@ stub -arch=win64 ??$abs@O@std@@YAOAEBV?$complex@O@0@@Z
@
stub -arch=win32 ??$arg@M@std@@YAMABV?$complex@M@0@@Z
@
stub -arch=win64 ??$arg@M@std@@YAMAEBV?$complex@M@0@@Z
@
stub -arch=win32 ??$arg@N@std@@YANABV?$complex@N@0@@Z
@
stub -arch=win64 ??$arg@N@std@@YANAEBV?$complex@N@0@@Z
@
stub -arch=win32 ??$arg@O@std@@YAOABV?$complex@O@0@@Z
@
stub -arch=win64 ??$arg@O@std@@YAOAEBV?$complex@O@0@@Z
@
cdecl -arch=win32 ??$arg@M@std@@YAMABV?$complex@M@0@@Z(ptr) complex_float_arg
@
cdecl -arch=win64 ??$arg@M@std@@YAMAEBV?$complex@M@0@@Z(ptr) complex_float_arg
@
cdecl -arch=win32 ??$arg@N@std@@YANABV?$complex@N@0@@Z(ptr) complex_double_arg
@
cdecl -arch=win64 ??$arg@N@std@@YANAEBV?$complex@N@0@@Z(ptr) complex_double_arg
@
cdecl -arch=win32 ??$arg@O@std@@YAOABV?$complex@O@0@@Z(ptr) complex_double_arg
@
cdecl -arch=win64 ??$arg@O@std@@YAOAEBV?$complex@O@0@@Z(ptr) complex_double_arg
@ stub -arch=win32 ??$conj@M@std@@YA?AV?$complex@M@0@ABV10@@Z
@ stub -arch=win64 ??$conj@M@std@@YA?AV?$complex@M@0@AEBV10@@Z
@ stub -arch=win32 ??$conj@N@std@@YA?AV?$complex@N@0@ABV10@@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