Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 107 for i686 (0.07 sec)

  1. src/syscall/route_bsd.go

    	} else if netbsd32Bit {
    		// NetBSD 6 and beyond kernels require 64-bit aligned
    		// access to routing facilities.
    		salign = 8
    	} else if runtime.GOOS == "freebsd" {
    		// In the case of kern.supported_archs="amd64 i386",
    		// we need to know the underlying kernel's
    		// architecture because the alignment for routing
    		// facilities are set at the build time of the kernel.
    		if freebsdConfArch == "amd64" {
    			salign = 8
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

            buildFile << """
                apply plugin: 'cpp'
                apply plugin: 'visual-studio'
    
                model {
                    platforms {
                        win32 {
                            architecture "i386"
                        }
                        x64 {
                            architecture "amd64"
                        }
                    }
                    buildTypes {
                        debug
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Server-TLSv13-CHACHA20-SHA256

    00000290  77 a1 4b 2f 8f c5 72 41  dc ab f9 b7 f3 72 28 f4  |w.K/..rA.....r(.|
    000002a0  cb 08 07 0a 20 7c 8b 26  70 92 7b 7b b9 99 61 0a  |.... |.&p.{{..a.|
    000002b0  63 17 e2 96 86 0a 6a 56  a1 90 1f 5e 50 bb 7f 72  |c.....jV...^P..r|
    000002c0  73 58 f4 25 c8 18 ec a5  b1 86 cd 96 77 57 91 67  |sX.%........wW.g|
    000002d0  76 e1 7a bf 1b 40 62 a0  58 d7 e8 2c 4c 86 7b ed  |v.z..@b.X..,L.{.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateXcodeProjectFileTask.java

            }
            return result;
        }
    
        private static String toXcodeArchitecture(String architectureName) {
            if (architectureName.equals(MachineArchitecture.X86)) {
                return "i386";
            } else if (architectureName.equals(MachineArchitecture.X86_64)) {
                return "x86_64";
            } else if (architectureName.equals(MachineArchitecture.ARM64)) {
                return "arm64e";
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsKitWindowsSdkLocatorTest.groovy

            given:
            WindowsRegistry windowsRegistryLocal = Stub(WindowsRegistry)
            SystemInfo systemInfoLocal = Stub(SystemInfo) {
                getArchitecture() >> SystemInfo.Architecture.i386
            }
            WindowsComponentLocator<WindowsKitSdkInstall> windowsSdkLocatorLocal = new WindowsKitWindowsSdkLocator(windowsRegistryLocal, systemInfoLocal)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  6. src/debug/elf/file_test.go

    			{"", 3, 0, 28, 0, 0, "", ""},
    			{"", 3, 0, 29, 0, 0, "", ""},
    			{"crt1.c", 4, 0, 65521, 0, 0, "", ""},
    			{"/usr/src/lib/csu/i386-elf/crti.S", 4, 0, 65521, 0, 0, "", ""},
    			{"<command line>", 4, 0, 65521, 0, 0, "", ""},
    			{"<built-in>", 4, 0, 65521, 0, 0, "", ""},
    			{"/usr/src/lib/csu/i386-elf/crti.S", 4, 0, 65521, 0, 0, "", ""},
    			{"crtstuff.c", 4, 0, 65521, 0, 0, "", ""},
    			{"__CTOR_LIST__", 1, 0, 14, 134518436, 0, "", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelMultiProjectIntegrationTest.groovy

                }
                subprojects {
                    apply plugin: 'cpp'
    
                    model {
                        platforms {
                            win32 {
                                architecture "i386"
                            }
                        }
                        buildTypes {
                            debug
                            release
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/pe.go

    	var fh pe.FileHeader
    
    	switch ctxt.Arch.Family {
    	default:
    		Exitf("unknown PE architecture: %v", ctxt.Arch.Family)
    	case sys.AMD64:
    		fh.Machine = pe.IMAGE_FILE_MACHINE_AMD64
    	case sys.I386:
    		fh.Machine = pe.IMAGE_FILE_MACHINE_I386
    	case sys.ARM:
    		fh.Machine = pe.IMAGE_FILE_MACHINE_ARMNT
    	case sys.ARM64:
    		fh.Machine = pe.IMAGE_FILE_MACHINE_ARM64
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/asm.go

    				return
    			}
    
    		case sys.ARM64:
    			if !arch.ARM64Suffix(prog, cond) {
    				p.errorf("unrecognized suffix .%q", cond)
    				return
    			}
    
    		case sys.AMD64, sys.I386:
    			if err := x86.ParseSuffix(prog, cond); err != nil {
    				p.errorf("%v", err)
    				return
    			}
    		case sys.RISCV64:
    			if err := riscv.ParseSuffix(prog, cond); err != nil {
    				p.errorf("unrecognized suffix .%q", cond)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. test/fixedbugs/issue60982.go

    	case 680:
    		return 680
    	case 681:
    		return 681
    	case 682:
    		return 682
    	case 683:
    		return 683
    	case 684:
    		return 684
    	case 685:
    		return 685
    	case 686:
    		return 686
    	case 687:
    		return 687
    	case 688:
    		return 688
    	case 689:
    		return 689
    	case 690:
    		return 690
    	case 691:
    		return 691
    	case 692:
    		return 692
    	case 693:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 28 16:07:47 UTC 2023
    - 23.7K bytes
    - Viewed (0)
Back to top