2015-09-29 14:42:40 +00:00
|
|
|
#if defined(__GNUC__) && (__GNUC__ >= 5)
|
|
|
|
|
|
|
|
#include "uint16.h"
|
|
|
|
|
|
|
|
int umult16(uint16 a,uint16 b,uint16* c) { return !__builtin_mul_overflow(a,b,c); }
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2003-08-22 15:03:10 +00:00
|
|
|
#include "safemult.h"
|
|
|
|
|
|
|
|
int umult16(uint16 a,uint16 b,uint16* c) {
|
|
|
|
unsigned long x=(unsigned long)a*b;
|
2003-09-05 21:25:51 +00:00
|
|
|
if (x>0xffff) return 0;
|
2003-08-22 15:03:10 +00:00
|
|
|
*c=x&0xffff;
|
2003-09-05 21:25:51 +00:00
|
|
|
return 1;
|
2003-08-22 15:03:10 +00:00
|
|
|
}
|
2015-09-29 14:42:40 +00:00
|
|
|
|
|
|
|
#endif
|
2017-05-13 22:52:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef UNITTEST
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
uint16 a;
|
|
|
|
assert(umult16(7,10000,&a)==0);
|
|
|
|
assert(umult16(5,10,&a)==1 && a==50);
|
|
|
|
assert(umult16(6,10000,&a)==1 && a==60000);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|