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
0547da64
Commit
0547da64
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 _allrem 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
8f144eb5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
large_int.c
dlls/ntdll/large_int.c
+7
-1
No files found.
dlls/ntdll/large_int.c
View file @
0547da64
...
...
@@ -777,7 +777,13 @@ LONGLONG WINAPI _allmul( LONGLONG a, LONGLONG b )
*/
LONGLONG
WINAPI
_allrem
(
LONGLONG
a
,
LONGLONG
b
)
{
return
a
%
b
;
LONGLONG
s
=
b
>>
63
;
/* s = b < 0 ? -1 : 0 */
ULONGLONG
r
;
b
=
(
b
^
s
)
-
s
;
/* negate if s == -1 */
s
=
a
>>
63
;
/* s = a < 0 ? -1 : 0 */
a
=
(
a
^
s
)
-
s
;
/* negate if s == -1 */
udivmod
(
a
,
b
,
&
r
);
return
((
LONGLONG
)
r
^
s
)
-
s
;
/* negate if s == -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