repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[IPV4]: Fix up lots of little whitespace indentation stuff in fib_trie.
[linux/fpc-iii.git]
/
arch
/
sh
/
lib
/
div64-generic.c
blob
c02473afd5814c9ca0a6da331b3d1db4623f4c14
1
/*
2
* Generic __div64_32 wrapper for __xdiv64_32.
3
*/
4
5
#include <linux/types.h>
6
7
extern
u64
__xdiv64_32
(
u64 n
,
u32 d
);
8
9
u64
__div64_32
(
u64
*
xp
,
u32 y
)
10
{
11
u64 rem
;
12
u64 q
=
__xdiv64_32
(*
xp
,
y
);
13
14
rem
= *
xp
-
q
*
y
;
15
*
xp
=
q
;
16
17
return
rem
;
18
}
19