Home
last modified time | relevance | path

Searched refs:from_type (Results 1 – 1 of 1) sorted by relevance

/qemu/target/ppc/
H A Dint_helper.c438 #define SATCVT(from, to, from_type, to_type, min, max) \ argument
439 static inline to_type cvt##from##to(from_type x, int *sat) \
443 if (x < (from_type)min) { \
446 } else if (x > (from_type)max) { \
454 #define SATCVTU(from, to, from_type, to_type, min, max) \ argument
455 static inline to_type cvt##from##to(from_type x, int *sat) \
459 if (x > (from_type)max) { \