Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for map_64 (0.16 sec)

  1. src/cmd/compile/internal/walk/expr.go

    func walkIndexMap(n *ir.IndexExpr, init *ir.Nodes) ir.Node {
    	n.X = walkExpr(n.X, init)
    	n.Index = walkExpr(n.Index, init)
    	map_ := n.X
    	t := map_.Type()
    	fast := mapfast(t)
    	key := mapKeyArg(fast, n, n.Index, n.Assigned)
    	args := []ir.Node{reflectdata.IndexMapRType(base.Pos, n), map_, key}
    
    	var mapFn ir.Node
    	switch {
    	case n.Assigned:
    		mapFn = mapfn(mapassign[fast], t, false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go

    int time(uintptr_t);
    int utime(uintptr_t, uintptr_t);
    unsigned long long getsystemcfg(int);
    int umount(uintptr_t);
    int getrlimit(int, uintptr_t);
    long long lseek(int, long long, int);
    uintptr_t mmap64(uintptr_t, uintptr_t, int, int, int, long long);
    
    */
    import "C"
    import (
    	"syscall"
    	"unsafe"
    )
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.s

    // go run mkasm.go openbsd mips64
    // Code generated by the command above; DO NOT EDIT.
    
    #include "textflag.h"
    
    TEXT libc_getgroups_trampoline<>(SB),NOSPLIT,$0-0
    	JMP	libc_getgroups(SB)
    GLOBL	·libc_getgroups_trampoline_addr(SB), RODATA, $8
    DATA	·libc_getgroups_trampoline_addr(SB)/8, $libc_getgroups_trampoline<>(SB)
    
    TEXT libc_setgroups_trampoline<>(SB),NOSPLIT,$0-0
    	JMP	libc_setgroups(SB)
    GLOBL	·libc_setgroups_trampoline_addr(SB), RODATA, $8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  4. src/syscall/zsyscall_openbsd_mips64.go

    // mksyscall.pl -openbsd -tags openbsd,mips64 syscall_bsd.go syscall_openbsd.go syscall_openbsd_mips64x.go
    // Code generated by the command above; DO NOT EDIT.
    
    //go:build openbsd && mips64
    
    package syscall
    
    import "unsafe"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getgroups(ngid int, gid *_Gid_t) (n int, err error) {
    	r0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)
    	n = int(r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 30K bytes
    - Viewed (0)
  5. src/runtime/duff_mips64x.s

    // Code generated by mkduff.go; DO NOT EDIT.
    // Run go generate from src/runtime to update.
    // See mkduff.go for comments.
    
    //go:build mips64 || mips64le
    
    #include "textflag.h"
    
    TEXT runtime·duffzero(SB), NOSPLIT|NOFRAME, $0-0
    	MOVV	R0, 8(R1)
    	ADDV	$8, R1
    	MOVV	R0, 8(R1)
    	ADDV	$8, R1
    	MOVV	R0, 8(R1)
    	ADDV	$8, R1
    	MOVV	R0, 8(R1)
    	ADDV	$8, R1
    	MOVV	R0, 8(R1)
    	ADDV	$8, R1
    	MOVV	R0, 8(R1)
    	ADDV	$8, R1
    	MOVV	R0, 8(R1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 11.3K bytes
    - Viewed (0)
  6. src/math/rand/v2/rand_test.go

    	}
    }
    
    func hasSlowFloatingPoint() bool {
    	switch runtime.GOARCH {
    	case "arm":
    		return os.Getenv("GOARM") == "5"
    	case "mips", "mipsle", "mips64", "mips64le":
    		// Be conservative and assume that all mips boards
    		// have emulated floating point.
    		// TODO: detect what it actually has.
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. src/syscall/zsyscall_linux_mips64.go

    // mksyscall.pl -tags linux,mips64 syscall_linux.go syscall_linux_mips64x.go
    // Code generated by the command above; DO NOT EDIT.
    
    //go:build linux && mips64
    
    package syscall
    
    import "unsafe"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func faccessat(dirfd int, path string, mode uint32) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 40.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/gc.go

    	}
    
    	if cfg.Goarch == "mips" || cfg.Goarch == "mipsle" {
    		// Define GOMIPS_value from cfg.GOMIPS.
    		args = append(args, "-D", "GOMIPS_"+cfg.GOMIPS)
    	}
    
    	if cfg.Goarch == "mips64" || cfg.Goarch == "mips64le" {
    		// Define GOMIPS64_value from cfg.GOMIPS64.
    		args = append(args, "-D", "GOMIPS64_"+cfg.GOMIPS64)
    	}
    
    	if cfg.Goarch == "ppc64" || cfg.Goarch == "ppc64le" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. doc/asm.html

    <ul>
    
    <li>
    <code>(R5)(R6*1)</code>: The location at <code>R5</code> plus <code>R6</code>.
    It is a scaled mode as on the x86, but the only scale allowed is <code>1</code>.
    </li>
    
    </ul>
    
    <h3 id="mips">MIPS, MIPS64</h3>
    
    <p>
    General purpose registers are named <code>R0</code> through <code>R31</code>,
    floating point registers are <code>F0</code> through <code>F31</code>.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  10. src/cmd/asm/internal/arch/arch.go

    	case "arm64":
    		return archArm64()
    	case "loong64":
    		return archLoong64(&loong64.Linkloong64)
    	case "mips":
    		return archMips(&mips.Linkmips)
    	case "mipsle":
    		return archMips(&mips.Linkmipsle)
    	case "mips64":
    		return archMips64(&mips.Linkmips64)
    	case "mips64le":
    		return archMips64(&mips.Linkmips64le)
    	case "ppc64":
    		return archPPC64(&ppc64.Linkppc64)
    	case "ppc64le":
    		return archPPC64(&ppc64.Linkppc64le)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 21.3K bytes
    - Viewed (0)
Back to top