Release 4.10 arch/powerpc/math-emu/fabs.c
#include <linux/types.h>
#include <linux/errno.h>
#include <linux/uaccess.h>
int
fabs(u32 *frD, u32 *frB)
{
frD[0] = frB[0] & 0x7fffffff;
frD[1] = frB[1];
#ifdef DEBUG
printk("%s: D %p, B %p: ", __func__, frD, frB);
dump_double(frD);
printk("\n");
#endif
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
pre-git | pre-git | 63 | 98.44% | 1 | 50.00% |
harvey harrison | harvey harrison | 1 | 1.56% | 1 | 50.00% |
| Total | 64 | 100.00% | 2 | 100.00% |
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
pre-git | pre-git | 71 | 97.26% | 1 | 33.33% |
harvey harrison | harvey harrison | 1 | 1.37% | 1 | 33.33% |
linus torvalds | linus torvalds | 1 | 1.37% | 1 | 33.33% |
| Total | 73 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.