Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for isIa64 (0.23 sec)

  1. src/cmd/compile/internal/types2/gccgosizes.go

    	"386":         {4, 4},
    	"alpha":       {8, 8},
    	"amd64":       {8, 8},
    	"amd64p32":    {4, 8},
    	"arm":         {4, 8},
    	"armbe":       {4, 8},
    	"arm64":       {8, 8},
    	"arm64be":     {8, 8},
    	"ia64":        {8, 8},
    	"loong64":     {8, 8},
    	"m68k":        {4, 2},
    	"mips":        {4, 8},
    	"mipsle":      {4, 8},
    	"mips64":      {8, 8},
    	"mips64le":    {8, 8},
    	"mips64p32":   {4, 8},
    	"mips64p32le": {4, 8},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:55:06 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. src/go/types/gccgosizes.go

    	"386":         {4, 4},
    	"alpha":       {8, 8},
    	"amd64":       {8, 8},
    	"amd64p32":    {4, 8},
    	"arm":         {4, 8},
    	"armbe":       {4, 8},
    	"arm64":       {8, 8},
    	"arm64be":     {8, 8},
    	"ia64":        {8, 8},
    	"loong64":     {8, 8},
    	"m68k":        {4, 2},
    	"mips":        {4, 8},
    	"mipsle":      {4, 8},
    	"mips64":      {8, 8},
    	"mips64le":    {8, 8},
    	"mips64p32":   {4, 8},
    	"mips64p32le": {4, 8},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppInstall.java

            // TODO:ADAM - ARM only if the target OS is Windows 8 or later
            // TODO:MPUT - ARM also if the target OS is Windows RT or Windows Phone/Mobile/CE
            // TODO:ADAM - IA64 only if the target OS is Windows 2008 or earlier
            if (!targetPlatform.getOperatingSystem().isWindows()) {
                return null;
            }
            return platforms.get(getPlatformArchitecture(targetPlatform));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/jvm/platform-jvm/src/main/java/org/gradle/platform/Architecture.java

        /**
         * 32-bit complex instruction set computer (CISC) architectures, including "x32", "i386", "x86"..
         */
        X86,
    
        /**
         * 64-bit variant of the X86 instruction set, including "x64", "x86_64", "amd64", "ia64".
         */
        X86_64,
    
        /**
         * 64-bit reduced instruction set computer (RISC) architectures, including "aarch64", "arm64".
         */
        AARCH64
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/Architecture.java

     *         <td>"x86", "i386", "ia-32", "i686"</td>
     *         <td>"x86_64", "amd64", "x64", "x86-64"</td>
     *     </tr>
     *     <tr>
     *         <td>Intel Itanium</td>
     *         <td>N/A</td>
     *         <td>"ia-64", "ia64"</td>
     *     </tr>
     *     <tr>
     *         <td>Power PC</td>
     *         <td>"ppc"</td>
     *         <td>"ppc64"</td>
     *     </tr>
     *     <tr>
     *         <td>Sparc</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/internal/Architectures.java

        public static final KnownArchitecture X86_64 = new KnownArchitecture("x86-64", "x86_64", "amd64", "x64");
        public static final KnownArchitecture IA_64 = new KnownArchitecture("ia-64", "ia64");
        public static final KnownArchitecture ARM_V7 = new KnownArchitecture("arm-v7", "armv7", "arm", "arm32");
        public static final KnownArchitecture AARCH64 = new KnownArchitecture("aarch64", "arm-v8", "arm64");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinBinaryInfo.groovy

            switch (archString) {
                case "x86":
                    return Architectures.forInput("x86")
                case "x64":
                    return Architectures.forInput("x86_64")
                case "IA64":
                    return Architectures.forInput("ia-64")
                case "ARM":
                    return Architectures.forInput("arm")
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. src/debug/dwarf/typeunit.go

    		boff := b.off
    		d.typeSigs[sig] = &typeUnit{
    			unit: unit{
    				base:   base,
    				off:    boff,
    				data:   b.bytes(int(n - (b.off - hdroff))),
    				atable: atable,
    				asize:  int(asize),
    				vers:   vers,
    				is64:   dwarf64,
    			},
    			toff: Offset(toff),
    			name: name,
    		}
    		if b.err != nil {
    			return b.err
    		}
    	}
    	return nil
    }
    
    // Return the type for a type signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top