cregit-Linux how code gets into the kernel

Release 4.8 arch/sh/lib/div64-generic.c

Directory: arch/sh/lib
/*
 * Generic __div64_32 wrapper for __xdiv64_32.
 */

#include <linux/types.h>
#include <asm/div64.h>

extern uint64_t __xdiv64_32(u64 n, u32 d);


uint32_t __div64_32(u64 *xp, u32 y) { uint32_t rem; uint64_t q = __xdiv64_32(*xp, y); rem = *xp - q * y; *xp = q; return rem; }

Contributors

PersonTokensPropCommitsCommitProp
andrew mortonandrew morton4093.02%133.33%
paul mundtpaul mundt36.98%266.67%
Total43100.00%3100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
andrew mortonandrew morton5488.52%125.00%
paul mundtpaul mundt711.48%375.00%
Total61100.00%4100.00%
Directory: arch/sh/lib
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.