Home | History | Annotate | Download | only in Reactor

Lines Matching refs:IfThenElse

2721 		return Byte(IfThenElse(Int(x) > 0xFF, Int(0xFF), Int(x)));
3048 return SByte(IfThenElse(Int(x) > 0x7F, Int(0x7F), IfThenElse(Int(x) < -0x80, Int(0x80), Int(x))));
3525 return Short(IfThenElse(x > 0x7FFF, Int(0x7FFF), IfThenElse(x < -0x8000, Int(0x8000), x)));
3952 return UShort(IfThenElse(x > 0xFFFF, Int(0xFFFF), IfThenElse(x < 0, Int(0), x)));
4658 return IfThenElse(x > y, x, y);
4663 return IfThenElse(x < y, x, y);
4801 IfThenElse(cast >= ustartf,
5046 return IfThenElse(x > y, x, y);
5051 return IfThenElse(x < y, x, y);
6505 return IfThenElse(x > 0.0f, x, -x);
6510 return IfThenElse(x > y, x, y);
6515 return IfThenElse(x < y, x, y);