Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 533 for expAsm (0.71 sec)

  1. src/math/arith_s390x.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package math
    
    import "internal/cpu"
    
    func expTrampolineSetup(x float64) float64
    func expAsm(x float64) float64
    
    func logTrampolineSetup(x float64) float64
    func logAsm(x float64) float64
    
    // Below here all functions are grouped in stubs.go for other
    // architectures.
    
    const haveArchLog10 = true
    
    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

    	MOVD   $·expvectorfacility+0x00(SB), R1
    	MOVD   $·exp(SB), R2
    	MOVD   R2, 0(R1)
    	BR     ·exp(SB)
    
    vectorimpl:
    	MOVD $·expvectorfacility+0x00(SB), R1
    	MOVD $·expAsm(SB), R2
    	MOVD R2, 0(R1)
    	BR   ·expAsm(SB)
    
    GLOBL ·expvectorfacility+0x00(SB), NOPTR, $8
    DATA ·expvectorfacility+0x00(SB)/8, $·expTrampolineSetup(SB)
    
    TEXT ·archExpm1(SB), NOSPLIT, $0
    	MOVD ·expm1vectorfacility+0x00(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)
  3. src/math/exp_s390x.s

    // Very small values underflow to 1.
    // The algorithm used is minimax polynomial approximation using a table of
    // polynomial coefficients determined with a Remez exchange algorithm.
    
    TEXT	·expAsm(SB), NOSPLIT, $0-16
    	FMOVD	x+0(FP), F0
    	MOVD	$·exprodataL22<>+0(SB), R5
    	LTDBR	F0, F0
    	BLTU	L20
    	FMOVD	F0, F2
    L2:
    	WORD	$0xED205050	//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
    - 4.6K bytes
    - Viewed (0)
  4. src/math/exp_asm.go

    Russ Cox <******@****.***> 1629910106 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 268 bytes
    - Viewed (0)
  5. samples/multicluster/expose-services.yaml

    Frank Budinsky <******@****.***> 1619108956 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 16:29:16 UTC 2021
    - 300 bytes
    - Viewed (0)
  6. samples/multicluster/expose-istiod.yaml

    Frank Budinsky <******@****.***> 1619108956 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 16:29:16 UTC 2021
    - 967 bytes
    - Viewed (0)
  7. samples/multicluster/expose-istiod-https.yaml

    Frank Budinsky <******@****.***> 1619108956 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 16:29:16 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  8. samples/multicluster/expose-istiod-rev.yaml.tmpl

    Steven Landow <******@****.***> 1632288166 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 22 05:22:46 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  9. subprojects/core/build.gradle.kts

            because("test fixtures expose Action")
        }
        testFixturesApi(project(":base-services-groovy")) {
            because("test fixtures expose AndSpec")
        }
        testFixturesApi(project(":core-api")) {
            because("test fixtures expose Task")
        }
        testFixturesApi(project(":logging")) {
            because("test fixtures expose Logger")
        }
        testFixturesApi(project(":model-core")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. clause/where.go

    	if w, ok := clause.Expression.(Where); ok {
    		exprs := make([]Expression, len(w.Exprs)+len(where.Exprs))
    		copy(exprs, w.Exprs)
    		copy(exprs[len(w.Exprs):], where.Exprs)
    		where.Exprs = exprs
    	}
    
    	clause.Expression = where
    }
    
    func And(exprs ...Expression) Expression {
    	if len(exprs) == 0 {
    		return nil
    	}
    
    	if len(exprs) == 1 {
    		if _, ok := exprs[0].(OrConditions); !ok {
    			return exprs[0]
    		}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Apr 25 12:22:53 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top