Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cosTrampolineSetup (0.25 sec)

  1. src/math/arith_s390x.go

    const haveArchLog10 = true
    
    func archLog10(x float64) float64
    func log10TrampolineSetup(x float64) float64
    func log10Asm(x float64) float64
    
    const haveArchCos = true
    
    func archCos(x float64) float64
    func cosTrampolineSetup(x float64) float64
    func cosAsm(x float64) float64
    
    const haveArchCosh = true
    
    func archCosh(x float64) float64
    func coshTrampolineSetup(x float64) float64
    func coshAsm(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)
  2. src/math/stubs_s390x.s

    GLOBL ·log10vectorfacility+0x00(SB), NOPTR, $8
    DATA ·log10vectorfacility+0x00(SB)/8, $·log10TrampolineSetup(SB)
    
    TEXT ·archCos(SB), NOSPLIT, $0
    	MOVD ·cosvectorfacility+0x00(SB), R1
    	BR   (R1)
    
    TEXT ·cosTrampolineSetup(SB), NOSPLIT, $0
    	MOVB   ·hasVX(SB), R1
    	CMPBEQ R1, $1, vectorimpl               // vectorfacility = 1, vector supported
    	MOVD   $·cosvectorfacility+0x00(SB), R1
    	MOVD   $·cos(SB), R2
    	MOVD   R2, 0(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