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
8f144eb5
Commit
8f144eb5
authored
Jun 08, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Jun 09, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Reimplement _alldiv using 32-bit arithmetic.
Based on compiler-rt. Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
744843ed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
large_int.c
dlls/ntdll/large_int.c
+6
-1
No files found.
dlls/ntdll/large_int.c
View file @
8f144eb5
...
...
@@ -736,7 +736,12 @@ static ULONGLONG udivmod(ULONGLONG a, ULONGLONG b, ULONGLONG *rem)
*/
LONGLONG
WINAPI
_alldiv
(
LONGLONG
a
,
LONGLONG
b
)
{
return
a
/
b
;
LONGLONG
s_a
=
a
>>
63
;
/* s_a = a < 0 ? -1 : 0 */
LONGLONG
s_b
=
b
>>
63
;
/* s_b = b < 0 ? -1 : 0 */
a
=
(
a
^
s_a
)
-
s_a
;
/* negate if s_a == -1 */
b
=
(
b
^
s_b
)
-
s_b
;
/* negate if s_b == -1 */
s_a
^=
s_b
;
/* sign of quotient */
return
(
udivmod
(
a
,
b
,
NULL
)
^
s_a
)
-
s_a
;
/* negate if s_a == -1 */
}
...
...
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