Lines Matching refs:overflow
14 int adds(int x, int y, bool& overflow);
15 int64_t adds(int64_t x, int64_t y, bool& overflow);
16 unsigned addu(unsigned x, unsigned y, bool& overflow);
17 uint64_t addu(uint64_t x, uint64_t y, bool& overflow);
19 int subs(int x, int y, bool& overflow);
20 int64_t subs(int64_t x, int64_t y, bool& overflow);
21 unsigned subu(unsigned x, unsigned y, bool& overflow);
22 uint64_t subu(uint64_t x, uint64_t y, bool& overflow);
24 int negs(int x, bool& overflow);
25 int64_t negs(int64_t x, bool& overflow);
27 int muls(int x, int y, bool& overflow);
28 int64_t muls(int64_t x, int64_t y, bool& overflow);
29 unsigned mulu(unsigned x, unsigned y, bool& overflow);
30 uint64_t mulu(uint64_t x, uint64_t y, bool& overflow);