Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for __i386__ (0.21 sec)

  1. src/cmd/cgo/internal/test/sigaltstack.go

    	ss.ss_flags = 0;
    	ss.ss_size = CSIGSTKSZ;
    	if (sigaltstack(&ss, &oss) < 0) {
    		perror("sigaltstack");
    		abort();
    	}
    }
    
    static void restoreSignalStack(void) {
    #if (defined(__x86_64__) || defined(__i386__)) && defined(__APPLE__)
    	// The Darwin C library enforces a minimum that the kernel does not.
    	// This is OK since we allocated this much space in mpreinit,
    	// it was just removed from the buffer by stackalloc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProvider.java

            }
            return new VersionNumber(major, minor, patch, null);
        }
    
        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) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 06:39:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

        static def gccNoMinor = """#define __gnu_linux__ 1
    #define __GNUC__ 3
    #define __GNUC_PATCHLEVEL__ 4
    """
        static def gccX86 = """#define __GNUC_MINOR__ 2
    #define __GNUC_PATCHLEVEL__ 1
    #define __GNUC__ 4
    #define __i386__ 1
    """
        static def gccMingw = """#define __GNUC_MINOR__ 0
    #define __GNUC_PATCHLEVEL__ 0
    #define __GNUC__ 10
    """
    
        static def gccAmd64 = """#define __GNUC_MINOR__ 2
    #define __GNUC_PATCHLEVEL__ 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/PlatformDetectingTestApp.groovy

        ${outputPlatform()}
    }
            """)
        ]
    
        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)
Back to top