Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 104 for map_64 (0.1 sec)

  1. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.openbsd-mips64.txt

    golang.org/******@****.***d-mips64
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.openbsd-mips64"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/sh
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 304 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/testdata/gen/cmpConstGen.go

    	Uint := func(v uint64) *big.Int { return big.NewInt(0).SetUint64(v) }
    	Int := func(v int64) *big.Int { return big.NewInt(0).SetInt64(v) }
    	values := []*big.Int{
    		// limits
    		Uint(maxU64),
    		Uint(maxU64 - 1),
    		Uint(maxI64 + 1),
    		Uint(maxI64),
    		Uint(maxI64 - 1),
    		Uint(maxU32 + 1),
    		Uint(maxU32),
    		Uint(maxU32 - 1),
    		Uint(maxI32 + 1),
    		Uint(maxI32),
    		Uint(maxI32 - 1),
    		Uint(maxU16 + 1),
    		Uint(maxU16),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go

    // Code generated by linux/mkall.go generatePtracePair("mips", "mips64"). DO NOT EDIT.
    
    //go:build linux && (mips || mips64)
    
    package unix
    
    import "unsafe"
    
    // PtraceRegsMips is the registers used by mips binaries.
    type PtraceRegsMips struct {
    	Regs     [32]uint64
    	Lo       uint64
    	Hi       uint64
    	Epc      uint64
    	Badvaddr uint64
    	Status   uint64
    	Cause    uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. test/codegen/math.go

    	// mips/hardfloat:"SQRTD" mips/softfloat:-"SQRTD"
    	// mips64/hardfloat:"SQRTD" mips64/softfloat:-"SQRTD"
    	// wasm:"F64Sqrt"
    	// ppc64x:"FSQRT"
    	// riscv64: "FSQRTD"
    	return math.Sqrt(x)
    }
    
    func sqrt32(x float32) float32 {
    	// amd64:"SQRTSS"
    	// 386/sse2:"SQRTSS" 386/softfloat:-"SQRTS"
    	// arm64:"FSQRTS"
    	// arm/7:"SQRTF"
    	// mips/hardfloat:"SQRTF" mips/softfloat:-"SQRTF"
    	// mips64/hardfloat:"SQRTF" mips64/softfloat:-"SQRTF"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build linux && (mips64 || mips64le) && gc
    
    #include "textflag.h"
    
    //
    // System calls for mips64, Linux
    //
    
    // Just jump to package syscall's implementation for all these functions.
    // The runtime may know about them.
    
    TEXT ·Syscall(SB),NOSPLIT,$0-56
    	JMP	syscall·Syscall(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/tooltags.txt

    go list -f '{{context.ToolTags}}'
    stdout 'arm.5 arm.6'
    
    env GOARCH=mips
    env GOMIPS=hardfloat
    go list -f '{{context.ToolTags}}'
    stdout 'mips.hardfloat'
    
    env GOARCH=mips64
    env GOMIPS=hardfloat
    go list -f '{{context.ToolTags}}'
    stdout 'mips64.hardfloat'
    
    env GOARCH=ppc64
    env GOPPC64=power9
    go list -f '{{context.ToolTags}}'
    stdout 'ppc64.power8 ppc64.power9'
    
    env GOARCH=ppc64
    env GOPPC64=power10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 07:25:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. src/internal/platform/zosarch.go

    	{"ios", "amd64"},
    	{"ios", "arm64"},
    	{"js", "wasm"},
    	{"linux", "386"},
    	{"linux", "amd64"},
    	{"linux", "arm"},
    	{"linux", "arm64"},
    	{"linux", "loong64"},
    	{"linux", "mips"},
    	{"linux", "mips64"},
    	{"linux", "mips64le"},
    	{"linux", "mipsle"},
    	{"linux", "ppc64"},
    	{"linux", "ppc64le"},
    	{"linux", "riscv64"},
    	{"linux", "s390x"},
    	{"linux", "sparc64"},
    	{"netbsd", "386"},
    	{"netbsd", "amd64"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:19:16 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/sys/cpu/cpu_linux_noinit.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build linux && !arm && !arm64 && !mips64 && !mips64le && !ppc64 && !ppc64le && !s390x
    
    package cpu
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 282 bytes
    - Viewed (0)
  9. src/cmd/dist/main.go

    			gohostarch = "ppc64"
    		case gohostos == "openbsd":
    			if strings.Contains(run("", CheckExit, "uname", "-p"), "mips64") {
    				gohostarch = "mips64"
    			}
    		default:
    			fatalf("unknown architecture: %s", out)
    		}
    	}
    
    	if gohostarch == "arm" || gohostarch == "mips64" || gohostarch == "mips64le" {
    		maxbg = min(maxbg, runtime.NumCPU())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. src/internal/syscall/unix/siginfo_linux_other.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build linux && !(mips || mipsle || mips64 || mips64le)
    
    package unix
    
    type siErrnoCode struct {
    	Errno int32
    	Code  int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 289 bytes
    - Viewed (0)
Back to top