Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for constantConvertInt32 (0.46 sec)

  1. test/codegen/math.go

    	// ppc64x/power10:"XXSPLTIDP\t[$]1065353216, VS0"
    	// arm64:"FMOVS\t[$]\\(1.0\\)"
    	if x > math.Float32frombits(0x3f800000) {
    		return -x
    	}
    	return x
    }
    
    func constantConvertInt32(x uint32) uint32 {
    	// amd64:-"MOVSS"
    	// s390x:-"FMOVS"
    	// ppc64x:-"FMOVS"
    	// arm64:-"FMOVS"
    	if x > math.Float32bits(1) {
    		return -x
    	}
    	return x
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top