Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 86 for Disasm (0.24 sec)

  1. src/internal/goarch/zgoarch_riscv64.go

    const IsPpc64 = 0
    const IsPpc64le = 0
    const IsRiscv = 0
    const IsRiscv64 = 1
    const IsS390 = 0
    const IsS390x = 0
    const IsSparc = 0
    const IsSparc64 = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 582 bytes
    - Viewed (0)
  2. src/math/arith_s390x.go

    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
    
    const haveArchSin = true
    
    func archSin(x float64) float64
    func sinTrampolineSetup(x float64) float64
    func sinAsm(x float64) float64
    
    const haveArchSinh = 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)
  3. src/cmd/link/internal/ld/target.go

    }
    
    func (t *Target) IsRISCV64() bool {
    	return t.Arch.Family == sys.RISCV64
    }
    
    func (t *Target) IsS390X() bool {
    	return t.Arch.Family == sys.S390X
    }
    
    func (t *Target) IsWasm() bool {
    	return t.Arch.Family == sys.Wasm
    }
    
    //
    // OS Functions
    //
    
    func (t *Target) IsLinux() bool {
    	t.mustSetHeadType()
    	return t.HeadType == objabi.Hlinux
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:14:48 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/codegen/ApiTypeProviderTest.kt

                )
            )
    
            apiTypeProviderFor(jars).use { api ->
    
                assertTrue(api.type<Action<*>>().isSAM)
                assertTrue(api.type<NamedDomainObjectFactory<*>>().isSAM)
    
                assertFalse(api.type<ObjectFactory>().isSAM)
                assertFalse(api.type<PluginCollection<*>>().isSAM)
    
                assertTrue(
                    api.type<PluginCollection<*>>().functions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DefaultFileWatcherProbeRegistry.java

        public void disarmWatchProbe(File watchableHierarchy) {
            WatchProbe probe = watchProbesByHierarchy.get(watchableHierarchy);
            if (probe != null) {
                probe.disarm();
            } else {
                LOGGER.debug("Did not find watchable hierarchy to disarm probe for: {}", watchableHierarchy);
            }
        }
    
        /**
         * Triggers a watch probe at the given location if one exists.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/link_external_undef.txt

    type M struct {
    	b bool
    }
    
    // Note the body-less func def here. This is what causes the problems.
    func (m *M) run(fp func())
    
    func doit(m *M) {
            InAsm()
    	m.run(func() {
    	})
    }
    
    func main() {
         m := &M{true}
         doit(m)
    }
    
    func InAsm() 
    
    -- main.s --
    
    // Add an assembly function so as to leave open the possibility
    // that body-less functions in Go might be defined in assembly.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 18:44:09 UTC 2023
    - 806 bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ArchitecturesTest.groovy

            Architectures.forInput(architecture).isArm32()
            Architectures.forInput(architecture).isArm()
            where:
            architecture << [ "arm", "armv7" ]
        }
    
        def "test ARM 64 aliases"() {
            expect:
            Architectures.forInput(architecture).isArm64()
            Architectures.forInput(architecture).isArm()
            where:
            architecture << [ "aarch64", "arm-v8" ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/asm/main.go

    	ctxt.Flag_linkshared = *flags.Linkshared
    	ctxt.Flag_shared = *flags.Shared || *flags.Dynlink
    	ctxt.Flag_maymorestack = flags.DebugFlags.MayMoreStack
    	ctxt.Debugpcln = flags.DebugFlags.PCTab
    	ctxt.IsAsm = true
    	ctxt.Pkgpath = *flags.Importpath
    	switch *flags.Spectre {
    	default:
    		log.Printf("unknown setting -spectre=%s", *flags.Spectre)
    		os.Exit(2)
    	case "":
    		// nothing
    	case "index":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. src/math/sin_s390x.s

    // Special cases are:
    //      Sin(±0) = ±0
    //      Sin(±Inf) = NaN
    //      Sin(NaN) = NaN
    // The algorithm used is minimax polynomial approximation.
    // with coefficients determined with a Remez exchange algorithm.
    
    TEXT ·sinAsm(SB),NOSPLIT,$0-16
    	FMOVD   x+0(FP), F0
    	//special case Sin(±0) = ±0
    	FMOVD   $(0.0), F1
    	FCMPU   F0, F1
    	BEQ     sinIsZero
    	LTDBR	F0, F0
    	BLTU    L17
    	FMOVD   F0, F5
    L2:
    	MOVD    $sincosxlim<>+0(SB), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 04:25:54 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top