Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SQRTS (0.02 sec)

  1. test/codegen/math.go

    	// wasm:"F64Sqrt"
    	// ppc64x:"FSQRT"
    	// riscv64: "FSQRTD"
    	return math.Sqrt(x)
    }
    
    func sqrt32(x float32) float32 {
    	// amd64:"SQRTSS"
    	// 386/sse2:"SQRTSS" 386/softfloat:-"SQRTS"
    	// arm64:"FSQRTS"
    	// arm/7:"SQRTF"
    	// mips/hardfloat:"SQRTF" mips/softfloat:-"SQRTF"
    	// mips64/hardfloat:"SQRTF" mips64/softfloat:-"SQRTF"
    	// wasm:"F32Sqrt"
    	// ppc64x:"FSQRTS"
    	// riscv64: "FSQRTS"
    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