Home | History | Annotate | Download | only in reflect

Lines Matching full:ovf

3655 	if ovf := V(float64(0)).OverflowFloat(1e300); ovf {
3660 if ovf := V(float32(0)).OverflowFloat(maxFloat32); ovf {
3664 if ovf := V(float32(0)).OverflowFloat(ovfFloat32); !ovf {
3667 if ovf := V(float32(0)).OverflowFloat(-ovfFloat32); !ovf {
3672 if ovf := V(int32(0)).OverflowInt(maxInt32); ovf {
3675 if ovf := V(int32(0)).OverflowInt(-1 << 31); ovf {
3679 if ovf := V(int32(0)).OverflowInt(ovfInt32); !ovf {
3684 if ovf := V(uint32(0)).OverflowUint(maxUint32); ovf {
3688 if ovf := V(uint32(0)).OverflowUint(ovfUint32); !ovf {