Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 141 for map_64 (0.12 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. src/cmd/compile/main.go

    	"386":      x86.Init,
    	"amd64":    amd64.Init,
    	"arm":      arm.Init,
    	"arm64":    arm64.Init,
    	"loong64":  loong64.Init,
    	"mips":     mips.Init,
    	"mipsle":   mips.Init,
    	"mips64":   mips64.Init,
    	"mips64le": mips64.Init,
    	"ppc64":    ppc64.Init,
    	"ppc64le":  ppc64.Init,
    	"riscv64":  riscv64.Init,
    	"s390x":    s390x.Init,
    	"wasm":     wasm.Init,
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 18:14:52 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  5. src/internal/goarch/zgoarch_mips64.go

    // Code generated by gengoarch.go using 'go generate'. DO NOT EDIT.
    
    //go:build mips64
    
    package goarch
    
    const GOARCH = `mips64`
    
    const Is386 = 0
    const IsAmd64 = 0
    const IsAmd64p32 = 0
    const IsArm = 0
    const IsArmbe = 0
    const IsArm64 = 0
    const IsArm64be = 0
    const IsLoong64 = 0
    const IsMips = 0
    const IsMipsle = 0
    const IsMips64 = 1
    const IsMips64le = 0
    const IsMips64p32 = 0
    const IsMips64p32le = 0
    const IsPpc = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 580 bytes
    - Viewed (0)
  6. src/runtime/vdso_linux_mips64x.go

    // 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)
    
    package runtime
    
    const (
    	// vdsoArrayMax is the byte-size of a maximally sized array on this architecture.
    	// See cmd/compile/internal/mips64/galign.go arch.MAXWIDTH initialization.
    	vdsoArrayMax = 1<<50 - 1
    )
    
    // see man 7 vdso : mips
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 850 bytes
    - Viewed (0)
  7. test/float_lit3.go

    	// is shorter than 1024 bits, it cannot distinguish max64+ulp64/2-1 and max64+ulp64/2.
    	float64(max64 + ulp64/2 - two1024/two256), // ok
    	float64(max64 + ulp64/2 - 1),              // ok
    	float64(max64 + ulp64/2),                  // ERROR "constant 1\.79769e\+308 overflows float64|cannot convert.*to type float64"
    
    	float64(-max64 - ulp64/2 + two1024/two256), // ok
    	float64(-max64 - ulp64/2 + 1),              // ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 03 16:24:32 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top