Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for expm1Asm (0.2 sec)

  1. src/math/arith_s390x.go

    func tanTrampolineSetup(x float64) float64
    func tanAsm(x float64) float64
    
    const haveArchExpm1 = true
    
    func archExpm1(x float64) float64
    func expm1TrampolineSetup(x float64) float64
    func expm1Asm(x float64) float64
    
    const haveArchPow = true
    
    func archPow(x, y float64) float64
    func powTrampolineSetup(x, y float64) float64
    func powAsm(x, y float64) float64
    
    const haveArchFrexp = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  2. src/math/expm1_s390x.s

    //      Expm1(NaN) = NaN
    // Very large values overflow to -1 or +Inf.
    // The algorithm used is minimax polynomial approximation using a table of
    // polynomial coefficients determined with a Remez exchange algorithm.
    
    TEXT	·expm1Asm(SB), NOSPLIT, $0-16
    	FMOVD	x+0(FP), F0
    	MOVD	$·expm1rodataL22<>+0(SB), R5
    	LTDBR	F0, F0
    	BLTU	L20
    	FMOVD	F0, F2
    L2:
    	WORD	$0xED205060	//cdb	%f2,.L23-.L22(%r5)
    	BYTE	$0x00
    	BYTE	$0x19
    	BGE	L16
    	BVS	L16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 5.3K bytes
    - Viewed (0)
Back to top