Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 229 for no_asm (0.13 sec)

  1. apache-maven/pom.xml

          <artifactId>org.eclipse.sisu.plexus</artifactId>
        </dependency>
        <dependency>
          <groupId>org.eclipse.sisu</groupId>
          <artifactId>org.eclipse.sisu.inject</artifactId>
          <classifier>no_asm</classifier>
        </dependency>
        <dependency>
          <groupId>com.google.inject</groupId>
          <artifactId>guice</artifactId>
          <classifier>classes</classifier>
        </dependency>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. pom.xml

          </dependency>
          <dependency>
            <groupId>org.eclipse.sisu</groupId>
            <artifactId>org.eclipse.sisu.inject</artifactId>
            <version>${sisuVersion}</version>
            <classifier>no_asm</classifier>
          </dependency>
          <dependency>
            <groupId>jakarta.inject</groupId>
            <artifactId>jakarta.inject-api</artifactId>
            <version>${jakartaInjectApiVersion}</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. src/math/arith_s390x.go

    // 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
    
    func archLog10(x float64) float64
    func log10TrampolineSetup(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/runtime/memclr_mips64x.s

    	ADDV	R1, R2, R4
    
    	// if less than 16 bytes or no MSA, do words check
    	SGTU	$16, R2, R3
    	BNE	R3, no_msa
    	MOVBU	internal∕cpu·MIPS64X+const_offsetMIPS64XHasMSA(SB), R3
    	BEQ	R3, R0, no_msa
    
    	VMOVB	$0, W0
    
    	SGTU	$128, R2, R3
    	BEQ	R3, msa_large
    
    	AND	$15, R2, R5
    	XOR	R2, R5, R6
    	ADDVU	R1, R6
    
    msa_small:
    	VMOVB	W0, (R1)
    	ADDVU	$16, R1
    	SGTU	R6, R1, R3
    	BNE	R3, R0, msa_small
    	BEQ	R5, R0, done
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  5. src/math/log_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
    - 259 bytes
    - Viewed (0)
  6. src/crypto/internal/bigmod/nat_asm.go

    Joel Sing <******@****.***> 1691421497 +1000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 07:52:41 UTC 2023
    - 942 bytes
    - Viewed (0)
  7. src/math/stubs_s390x.s

    	MOVD   $·cosvectorfacility+0x00(SB), R1
    	MOVD   $·cos(SB), R2
    	MOVD   R2, 0(R1)
    	BR     ·cos(SB)
    
    vectorimpl:
    	MOVD $·cosvectorfacility+0x00(SB), R1
    	MOVD $·cosAsm(SB), R2
    	MOVD R2, 0(R1)
    	BR   ·cosAsm(SB)
    
    GLOBL ·cosvectorfacility+0x00(SB), NOPTR, $8
    DATA ·cosvectorfacility+0x00(SB)/8, $·cosTrampolineSetup(SB)
    
    TEXT ·archCosh(SB), NOSPLIT, $0
    	MOVD ·coshvectorfacility+0x00(SB), R1
    	BR   (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)
  8. src/runtime/preempt_wasm.s

    // Code generated by mkpreempt.go; DO NOT EDIT.
    
    #include "go_asm.h"
    #include "textflag.h"
    
    TEXT ·asyncPreempt(SB),NOSPLIT|NOFRAME,$0-0
    	// No async preemption on wasm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 21:52:38 UTC 2021
    - 176 bytes
    - Viewed (0)
  9. src/os/exec/env_test.go

    	"testing"
    )
    
    func TestDedupEnv(t *testing.T) {
    	t.Parallel()
    
    	tests := []struct {
    		noCase  bool
    		nulOK   bool
    		in      []string
    		want    []string
    		wantErr bool
    	}{
    		{
    			noCase: true,
    			in:     []string{"k1=v1", "k2=v2", "K1=v3"},
    			want:   []string{"k2=v2", "K1=v3"},
    		},
    		{
    			noCase: false,
    			in:     []string{"k1=v1", "K1=V2", "k1=v3"},
    			want:   []string{"K1=V2", "k1=v3"},
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 01:23:16 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. test/fixedbugs/issue22877.dir/p.s

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "go_asm.h"
    
    TEXT ·sub(SB), 0, $0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 20:40:41 UTC 2017
    - 208 bytes
    - Viewed (0)
Back to top