Full 64-bit multitplication and division added to u64 library
This commit is contained in:
@@ -15,13 +15,18 @@ u64_t add64ul(u64_t i, unsigned long j);
|
||||
u64_t sub64(u64_t i, u64_t j);
|
||||
u64_t sub64u(u64_t i, unsigned j);
|
||||
u64_t sub64ul(u64_t i, unsigned long j);
|
||||
int bsr64(u64_t i);
|
||||
unsigned diff64(u64_t i, u64_t j);
|
||||
u64_t cvu64(unsigned i);
|
||||
u64_t cvul64(unsigned long i);
|
||||
unsigned cv64u(u64_t i);
|
||||
unsigned long cv64ul(u64_t i);
|
||||
u64_t div64(u64_t i, u64_t j);
|
||||
unsigned long div64u(u64_t i, unsigned j);
|
||||
u64_t div64u64(u64_t i, unsigned j);
|
||||
u64_t rem64(u64_t i, u64_t j);
|
||||
unsigned rem64u(u64_t i, unsigned j);
|
||||
u64_t mul64(u64_t i, u64_t j);
|
||||
u64_t mul64u(unsigned long i, unsigned j);
|
||||
int cmp64(u64_t i, u64_t j);
|
||||
int cmp64u(u64_t i, unsigned j);
|
||||
|
||||
Reference in New Issue
Block a user