Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for archCbrt (0.18 sec)

  1. src/math/cbrt.go

    // Cbrt returns the cube root of x.
    //
    // Special cases are:
    //
    //	Cbrt(±0) = ±0
    //	Cbrt(±Inf) = ±Inf
    //	Cbrt(NaN) = NaN
    func Cbrt(x float64) float64 {
    	if haveArchCbrt {
    		return archCbrt(x)
    	}
    	return cbrt(x)
    }
    
    func cbrt(x float64) float64 {
    	const (
    		B1             = 715094163                   // (682-0.03306235651)*2**20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. src/math/stubs.go

    func archAtan2(y, x float64) float64 {
    	panic("not implemented")
    }
    
    const haveArchAtanh = false
    
    func archAtanh(x float64) float64 {
    	panic("not implemented")
    }
    
    const haveArchCbrt = false
    
    func archCbrt(x float64) float64 {
    	panic("not implemented")
    }
    
    const haveArchCos = false
    
    func archCos(x float64) float64 {
    	panic("not implemented")
    }
    
    const haveArchCosh = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  3. src/math/arith_s390x.go

    const haveArchAtan2 = true
    
    func archAtan2(y, x float64) float64
    func atan2TrampolineSetup(x, y float64) float64
    func atan2Asm(x, y float64) float64
    
    const haveArchCbrt = true
    
    func archCbrt(x float64) float64
    func cbrtTrampolineSetup(x float64) float64
    func cbrtAsm(x float64) float64
    
    const haveArchTan = true
    
    func archTan(x float64) float64
    func tanTrampolineSetup(x float64) float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  4. src/math/stubs_s390x.s

    	MOVD $·atan2Asm(SB), R2
    	MOVD R2, 0(R1)
    	BR   ·atan2Asm(SB)
    
    GLOBL ·atan2vectorfacility+0x00(SB), NOPTR, $8
    DATA ·atan2vectorfacility+0x00(SB)/8, $·atan2TrampolineSetup(SB)
    
    TEXT ·archCbrt(SB), NOSPLIT, $0
    	MOVD ·cbrtvectorfacility+0x00(SB), R1
    	BR   (R1)
    
    TEXT ·cbrtTrampolineSetup(SB), NOSPLIT, $0
    	MOVB   ·hasVX(SB), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 12.4K bytes
    - Viewed (0)
Back to top