Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 107 for i686 (0.04 sec)

  1. src/cmd/internal/sys/arch.go

    // For example, ppc64 and ppc64le are both members of the PPC64 family.
    type ArchFamily byte
    
    const (
    	NoArch ArchFamily = iota
    	AMD64
    	ARM
    	ARM64
    	I386
    	Loong64
    	MIPS
    	MIPS64
    	PPC64
    	RISCV64
    	S390X
    	Wasm
    )
    
    // Arch represents an individual architecture.
    type Arch struct {
    	Name   string
    	Family ArchFamily
    
    	ByteOrder binary.ByteOrder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 19:51:03 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/NativePlatform.java

     * a specific {@link Architecture} and/or {@link OperatingSystem} to target.
     *
     * <pre>
     *     model {
     *         platforms {
     *             windows_x86 {
     *                 architecture "i386"
     *                 operatingSystem "windows"
     *             }
     *         }
     *     }
     * </pre>
     */
    @HasInternalProtocol
    public interface NativePlatform extends Platform, Describable {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProvider.java

        }
    
        private ArchitectureInternal determineArchitecture(Map<String, String> defines) {
            boolean i386 = defines.containsKey("__i386__");
            boolean amd64 = defines.containsKey("__amd64__");
            final ArchitectureInternal architecture;
            if (i386) {
                architecture = Architectures.forInput("i386");
            } else if (amd64) {
                architecture = Architectures.forInput("amd64");
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 06:39:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/PlatformDetectingTestApp.groovy

    }
            """)
        ]
    
        def outputPlatform() {
            return """
        #if defined(__x86_64__) || defined(_M_X64)
        cout << "amd64";
        #elif defined(__i386) || defined(_M_IX86)
        cout << "i386";
        #elif defined(_M_IA64)
        cout << "itanium";
        #else
        cout << "unknown";
        #endif
        cout << " ";
    
        #if defined(__linux__)
        cout << "linux";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/OtoolBinaryInfo.groovy

            def lines = process.inputStream.readLines()
            def archString = lines.last().split()[1]
    
            switch (archString) {
                case "I386":
                    return Architectures.forInput("x86")
                case "X86_64":
                    return Architectures.forInput("x86_64")
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. src/runtime/cgo/gcc_sigaction.c

    typedef struct {
    	uintptr_t handler;
    	uint64_t flags;
    	uintptr_t restorer;
    	uint64_t mask;
    } go_sigaction_t;
    
    // SA_RESTORER is part of the kernel interface.
    // This is Linux i386/amd64 specific.
    #ifndef SA_RESTORER
    #define SA_RESTORER 0x4000000
    #endif
    
    int32_t
    x_cgo_sigaction(intptr_t signum, const go_sigaction_t *goact, go_sigaction_t *oldgoact) {
    	int32_t ret;
    	struct sigaction act;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. src/internal/goarch/goarch.go

    // by them is useful for defining GOARCH-specific constants.
    //
    //go:generate go run gengoarch.go
    
    type ArchFamilyType int
    
    const (
    	AMD64 ArchFamilyType = iota
    	ARM
    	ARM64
    	I386
    	LOONG64
    	MIPS
    	MIPS64
    	PPC64
    	RISCV64
    	S390X
    	WASM
    )
    
    // PtrSize is the size of a pointer in bytes - unsafe.Sizeof(uintptr(0)) but as an ideal constant.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:48:21 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  8. platforms/jvm/platform-jvm/src/main/java/org/gradle/platform/internal/DefaultBuildPlatform.java

        }
    
        private static Architecture getArchitecture(SystemInfo systemInfo) {
            SystemInfo.Architecture architecture = systemInfo.getArchitecture();
            switch (architecture) {
                case i386:
                    return Architecture.X86;
                case amd64:
                    return Architecture.X86_64;
                case aarch64:
                    return Architecture.AARCH64;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 08:12:49 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/MixedLanguageHelloWorldApp.groovy

            return ['c', 'cpp', 'assembler']
        }
    
        String getExtraConfiguration() {
            return """
                model {
                    platforms {
                        x86 {
                            architecture "i386"
                        }
                    }
                    components {
                        all { it.targetPlatform "x86" }
                    }
                }
    """
        }
    
        SourceFile getMainSource() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. 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)
Back to top