Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for i686 (0.1 sec)

  1. 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)
  2. src/cmd/link/internal/ld/elf.go

     * $FreeBSD: src/sys/amd64/include/elf.h,v 1.18 2004/08/03 08:21:48 dfr Exp $
     * $FreeBSD: src/sys/arm/include/elf.h,v 1.5.2.1 2006/06/30 21:42:52 cognet Exp $
     * $FreeBSD: src/sys/i386/include/elf.h,v 1.16 2004/08/02 19:12:17 dfr Exp $
     * $FreeBSD: src/sys/powerpc/include/elf.h,v 1.7 2004/11/02 09:47:01 ssouhlal Exp $
     * $FreeBSD: src/sys/sparc64/include/elf.h,v 1.12 2003/09/25 01:10:26 peter Exp $
     *
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/runtime/zcallback_windows_arm64.s

    	MOVD	$1682, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1683, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1684, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1685, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1686, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1687, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1688, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1689, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1690, R12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 21:52:38 UTC 2021
    - 89.3K bytes
    - Viewed (0)
  4. .bazelrc

    build:ios_sim_arm64 --config=ios
    build:ios_sim_arm64 --cpu=ios_sim_arm64
    build:ios_x86_64 --config=ios
    build:ios_x86_64 --cpu=ios_x86_64
    build:ios_fat --config=ios
    build:ios_fat --ios_multi_cpus=armv7,arm64,i386,x86_64
    
    # Config to use a mostly-static build and disable modular op registration
    # support (this will revert to loading TensorFlow with RTLD_GLOBAL in Python).
    # By default, TensorFlow will build with a dependence on
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. src/runtime/zcallback_windows_arm.s

    	MOVW	$1682, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1683, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1684, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1685, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1686, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1687, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1688, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1689, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1690, R12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 21:52:38 UTC 2021
    - 89.3K bytes
    - Viewed (0)
  6. src/runtime/asm_amd64.s

    #ifdef GOOS_darwin
    #define NEED_OS_SUPPORT_AX V3_OS_SUPPORT_AX
    // These values are from:
    // https://github.com/apple/darwin-xnu/blob/xnu-4570.1.46/osfmk/i386/cpu_capabilities.h
    #define commpage64_base_address         0x00007fffffe00000
    #define commpage64_cpu_capabilities64   (commpage64_base_address+0x010)
    #define commpage64_version              (commpage64_base_address+0x01E)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    	}
    	return flags
    }
    
    // hostlinkArchArgs returns arguments to pass to the external linker
    // based on the architecture.
    func hostlinkArchArgs(arch *sys.Arch) []string {
    	switch arch.Family {
    	case sys.I386:
    		return []string{"-m32"}
    	case sys.AMD64:
    		if buildcfg.GOOS == "darwin" {
    			return []string{"-arch", "x86_64", "-m64"}
    		}
    		return []string{"-m64"}
    	case sys.S390X:
    		return []string{"-m64"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit-icons.min.js

    15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 62.5K bytes
    - Viewed (0)
Back to top