Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 222 for map_64 (0.12 sec)

  1. src/vendor/golang.org/x/sys/cpu/byteorder.go

    		"arm", "arm64",
    		"loong64",
    		"mipsle", "mips64le", "mips64p32le",
    		"nios2",
    		"ppc64le",
    		"riscv", "riscv64",
    		"sh":
    		return littleEndian{}
    	case "armbe", "arm64be",
    		"m68k",
    		"mips", "mips64", "mips64p32",
    		"ppc", "ppc64",
    		"s390", "s390x",
    		"shbe",
    		"sparc", "sparc64":
    		return bigEndian{}
    	}
    	panic("unknown architecture")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 03 19:48:07 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go

    //sys	Seek(fd int, offset int64, whence int) (off int64, err error) = lseek
    
    //sys	mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) = mmap64
    
    func setTimespec(sec, nsec int64) Timespec {
    	return Timespec{Sec: sec, Nsec: nsec}
    }
    
    func setTimeval(sec, usec int64) Timeval {
    	return Timeval{Sec: int64(sec), Usec: int32(usec)}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. src/runtime/sys_libc.go

    // Copyright 2018 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 darwin || (openbsd && !mips64)
    
    package runtime
    
    import "unsafe"
    
    // Call fn with arg as its argument. Return what fn returns.
    // fn is the raw pc value of the entry point of the desired function.
    // Switches to the system stack, if not already there.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. src/go/build/syslist.go

    	"amd64":       true,
    	"amd64p32":    true,
    	"arm":         true,
    	"armbe":       true,
    	"arm64":       true,
    	"arm64be":     true,
    	"loong64":     true,
    	"mips":        true,
    	"mipsle":      true,
    	"mips64":      true,
    	"mips64le":    true,
    	"mips64p32":   true,
    	"mips64p32le": true,
    	"ppc":         true,
    	"ppc64":       true,
    	"ppc64le":     true,
    	"riscv":       true,
    	"riscv64":     true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. src/runtime/sys_openbsd.go

    // Copyright 2020 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 openbsd && !mips64
    
    package runtime
    
    import (
    	"internal/abi"
    	"unsafe"
    )
    
    // The *_trampoline functions convert from the Go calling convention to the C calling convention
    // and then call the underlying libc function. These are defined in sys_openbsd_$ARCH.s.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 30 03:11:18 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  6. src/cmd/internal/objabi/reloctype.go

    	// by encoding the address into the instruction.
    	R_JMPLOONG64
    
    	// R_ADDRMIPSU (only used on mips/mips64) resolves to the sign-adjusted "upper" 16
    	// bits (bit 16-31) of an external address, by encoding it into the instruction.
    	R_ADDRMIPSU
    	// R_ADDRMIPSTLS (only used on mips64) resolves to the low 16 bits of a TLS
    	// address (offset from thread pointer), by encoding it into the instruction.
    	R_ADDRMIPSTLS
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/inl_test.go

    			"(*Pointer[go.shape.int]).Load",
    			"(*Pointer[go.shape.int]).Store",
    			"(*Pointer[go.shape.int]).Swap",
    		},
    	}
    
    	if runtime.GOARCH != "386" && runtime.GOARCH != "loong64" && runtime.GOARCH != "mips64" && runtime.GOARCH != "mips64le" && runtime.GOARCH != "riscv64" {
    		// nextFreeFast calls sys.TrailingZeros64, which on 386 is implemented in asm and is not inlinable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/mlrt/tpu_conversions.mlir

      func.return %1, %2 : tensor<i32>, tensor<i32>
    }
    
    // -----
    
    // Test the output from TPU op is properly awaited before its use by map_fn.
    // CHECK-LABEL: @main
    // CHECK-SAME: ([[input0:%.*]]: !tf_mlrt.tensor, [[input1:%.*]]: !tf_mlrt.tensor)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 04 21:25:31 UTC 2023
    - 11K bytes
    - Viewed (0)
  9. test/fixedbugs/issue11656.dir/issue11656.go

    	case "ppc64":
    		binary.BigEndian.PutUint32(ill, 0xf8000000) // MOVD R0, (R0)
    	case "ppc64le":
    		binary.LittleEndian.PutUint32(ill, 0xf8000000) // MOVD R0, (R0)
    	case "mips", "mips64":
    		binary.BigEndian.PutUint32(ill, 0xfc000000) // MOVV R0, (R0)
    	case "mipsle", "mips64le":
    		binary.LittleEndian.PutUint32(ill, 0xfc000000) // MOVV R0, (R0)
    	case "s390x":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 15:28:40 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. src/internal/goarch/goarch.go

    // by them is useful for defining GOARCH-specific constants.
    //
    //go:generate go run gengoarch.go
    
    type ArchFamilyType int
    
    const (
    	AMD64 ArchFamilyType = iota
    	ARM
    	ARM64
    	I386
    	LOONG64
    	MIPS
    	MIPS64
    	PPC64
    	RISCV64
    	S390X
    	WASM
    )
    
    // PtrSize is the size of a pointer in bytes - unsafe.Sizeof(uintptr(0)) but as an ideal constant.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:48:21 UTC 2022
    - 2.1K bytes
    - Viewed (0)
Back to top