Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 318 for i386 (0.04 sec)

  1. src/vendor/golang.org/x/net/route/sys_freebsd.go

    			MTU:  int(nativeEndian.Uint32(m.raw[m.extOff+8 : m.extOff+12])),
    		},
    	}
    }
    
    var compatFreeBSD32 bool // 386 emulation on amd64
    
    func probeRoutingStack() (int, map[int]*wireFormat) {
    	var p uintptr
    	wordSize := int(unsafe.Sizeof(p))
    	align := wordSize
    	// In the case of kern.supported_archs="amd64 i386", we need
    	// to know the underlying kernel's architecture because the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsKitSdkInstall.java

            this.systemInfo = systemInfo;
        }
    
        @Override
        public WindowsSdk forPlatform(final NativePlatformInternal platform) {
            String host;
            switch (systemInfo.getArchitecture()) {
                case i386:
                    host = "x86";
                    break;
                case amd64:
                    host = "x64";
                    break;
                case aarch64:
                    host = "arm64";
                    break;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/obj6.go

    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = regEntryTmp0
    		if ctxt.Arch.Family == sys.I386 {
    			p.As = AMOVL
    		}
    
    		// TESTQ regEntryTmp0, regEntryTmp0
    		p = obj.Appendp(p, newprog)
    		p.As = ATESTQ
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = regEntryTmp0
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = regEntryTmp0
    		if ctxt.Arch.Family == sys.I386 {
    			p.As = ATESTL
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleCppProjectIntegrationTest.groovy

            project.targets[0].buildConfigurationList.buildConfigurations[0].name == "${DefaultXcodeProject.BUILD_DEBUG}X86"
            project.targets[0].buildConfigurationList.buildConfigurations[0].buildSettings.ARCHS == "i386"
            project.targets[0].buildConfigurationList.buildConfigurations[0].buildSettings.CONFIGURATION_BUILD_DIR == file("build/install/main/debug/x86/lib").absolutePath
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/assembler/AssemblyLanguageIncrementalBuildIntegrationTest.groovy

            UnitTestPreconditions.NotWindows
        ])
        def "reassembles binary with target platform change"() {
            when:
            buildFile.text = buildFile.text.replace("i386", "x86-64")
    
            run "installMainExecutable"
    
            then:
            executedAndNotSkipped ":assembleHelloSharedLibraryHelloAsm"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/x86/obj.go

    		Gentext:          gentext,
    		Machoreloc1:      machoreloc1,
    		PEreloc1:         pereloc1,
    
    		ELF: ld.ELFArch{
    			Linuxdynld:     "/lib/ld-linux.so.2",
    			LinuxdynldMusl: "/lib/ld-musl-i386.so.1",
    			Freebsddynld:   "/usr/libexec/ld-elf.so.1",
    			Openbsddynld:   "/usr/libexec/ld.so",
    			Netbsddynld:    "/usr/libexec/ld.elf_so",
    			Solarisdynld:   "/lib/ld.so.1",
    
    			Reloc1:    elfreloc1,
    			RelocSize: 8,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/asm6.go

    			} else if ctxt.Arch.Family == sys.I386 {
    				// On 386 PC-relative addressing (for non-call/jmp instructions)
    				// assumes that the previous instruction loaded the PC of the end
    				// of that instruction into CX, so the adjustment is relative to
    				// that.
    				r.Add += int64(r.Off) - p.Pc + int64(r.Siz)
    			}
    		}
    		if r.Type == objabi.R_GOTPCREL && ctxt.Arch.Family == sys.I386 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. src/runtime/sys_linux_386.s

    // the one in glibc. The glibc source code is:
    // https://sourceware.org/git/?p=glibc.git;a=blob;f=sysdeps/unix/sysv/linux/i386/libc_sigaction.c;h=0665b41bbcd0986f0b33bf19a7ecbcedf9961d0a#l59
    // The code that cares about the precise instructions used is:
    // https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=libgcc/config/i386/linux-unwind.h;h=5486223d60272c73d5103b29ae592d2ee998e1cf#l136
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/NativeBinarySpecTest.groovy

        def component = BaseComponentFixtures.createNode(NativeLibrarySpec, TestNativeComponentSpec, id)
    
        def platform1 = Stub(NativePlatform) {
            getArchitecture() >> Architectures.forInput("i386")
        }
        def buildType1 = Stub(BuildType) {
            getName() >> "BuildType1"
        }
        def resolver = Mock(NativeDependencyResolver)
    
        def "uses resolver to resolve lib to dependency"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

                argsFor(platformToolChain.assembler) == compilerArg
                argsFor(platformToolChain.staticLibArchiver) == []
            })
    
            where:
            arch     | linkerArg | compilerArg
            "i386"   | ["-m32"]  | ["-m32"]
            "x86_64" | ["-m64"]  | ["-m64"]
        }
    
        @Requires(UnitTestPreconditions.MacOs)
        def "supplies args for supported architecture for macOS platforms"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
Back to top