Lines Matching refs:IfThenElse
2740 return Byte(IfThenElse(Int(x) > 0xFF, Int(0xFF), IfThenElse(Int(x) < 0, Int(0), Int(x)))); in SaturateUnsigned()
3067 return SByte(IfThenElse(Int(x) > 0x7F, Int(0x7F), IfThenElse(Int(x) < -0x80, Int(0x80), Int(x)))); in SaturateSigned()
3544 return Short(IfThenElse(x > 0x7FFF, Int(0x7FFF), IfThenElse(x < -0x8000, Int(0x8000), x))); in SaturateSigned()
4009 return UShort(IfThenElse(x > 0xFFFF, Int(0xFFFF), IfThenElse(x < 0, Int(0), x))); in SaturateUnsigned()
4685 return IfThenElse(x > y, x, y); in Max()
4690 return IfThenElse(x < y, x, y); in Min()
4828 IfThenElse(cast >= ustartf, in UInt()
5073 return IfThenElse(x > y, x, y); in Max()
5078 return IfThenElse(x < y, x, y); in Min()
6406 abs = IfThenElse(e < 24, mantissa >> e, Int(0)); in Half()
6595 return IfThenElse(x > 0.0f, x, -x); in Abs()
6600 return IfThenElse(x > y, x, y); in Max()
6605 return IfThenElse(x < y, x, y); in Min()