Lines Matching refs:overflow
47 int adds(int x, int y, bool& overflow) in adds() argument
51 overflow = true; in adds()
56 int64_t adds(int64_t x, int64_t y, bool& overflow) in adds() argument
61 overflow = true; in adds()
78 unsigned addu(unsigned x, unsigned y, bool& overflow) in addu() argument
82 overflow = true; in addu()
87 uint64_t addu(uint64_t x, uint64_t y, bool& overflow) in addu() argument
91 overflow = true; in addu()
108 int subs(int x, int y, bool& overflow) in subs() argument
112 overflow = true; in subs()
117 int64_t subs(int64_t x, int64_t y, bool& overflow) in subs() argument
122 overflow = true; in subs()
139 unsigned subu(unsigned x, unsigned y, bool& overflow) in subu() argument
142 overflow = true; in subu()
147 uint64_t subu(uint64_t x, uint64_t y, bool& overflow) in subu() argument
150 overflow = true; in subu()
164 int negs(int x, bool& overflow) in negs() argument
167 overflow = true; in negs()
172 int64_t negs(int64_t x, bool& overflow) in negs() argument
175 overflow = true; in negs()
192 int muls(int x, int y, bool& overflow) in muls() argument
196 overflow = true; in muls()
201 int64_t muls(int64_t x, int64_t y, bool& overflow) in muls() argument
206 overflow = true; in muls()
223 unsigned mulu(unsigned x, unsigned y, bool& overflow) in mulu() argument
227 overflow = true; in mulu()
232 uint64_t mulu(uint64_t x, uint64_t y, bool& overflow) in mulu() argument
236 overflow = true; in mulu()