Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for mips64le (0.15 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go

    // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/mips64le/include /tmp/mips64le/include/asm/unistd.h
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build mips64le && linux
    
    package unix
    
    const (
    	SYS_READ                    = 5000
    	SYS_WRITE                   = 5001
    	SYS_OPEN                    = 5002
    	SYS_CLOSE                   = 5003
    	SYS_STAT                    = 5004
    	SYS_FSTAT                   = 5005
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go

    // cgo -godefs -objdir=/tmp/mips64le/cgo -- -Wall -Werror -static -I/tmp/mips64le/include linux/types.go | go run mkpost.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build mips64le && linux
    
    package unix
    
    const (
    	SizeofPtr  = 0x8
    	SizeofLong = 0x8
    )
    
    type (
    	_C_long int64
    )
    
    type Timespec struct {
    	Sec  int64
    	Nsec int64
    }
    
    type Timeval struct {
    	Sec  int64
    	Usec int64
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go

    // mkerrors.sh -Wall -Werror -static -I/tmp/mips64le/include
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build mips64le && linux
    
    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs -- -Wall -Werror -static -I/tmp/mips64le/include _const.go
    
    package unix
    
    import "syscall"
    
    const (
    	B1000000                         = 0x1008
    	B115200                          = 0x1002
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasCRC32    bool // CRC32 hardware implementation
    	_           CacheLinePad
    }
    
    // MIPS64X contains the supported CPU features of the current mips64/mips64le
    // platforms. If the current platform is not mips64/mips64le or the current
    // operating system is not Linux then all feature flags are false.
    var MIPS64X struct {
    	_      CacheLinePad
    	HasMSA bool // MIPS SIMD architecture
    	_      CacheLinePad
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/inl_test.go

    	}
    
    	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.
    		// We currently don't have midstack inlining so nextFreeFast is also not inlinable on 386.
    		// On loong64, mips64x and riscv64, TrailingZeros64 is not intrinsified and causes nextFreeFast
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go

    // go run mksyscall.go -tags linux,mips64le syscall_linux.go syscall_linux_mips64x.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build linux && mips64le
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    var _ syscall.Errno
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *byte) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 16K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    	asmArchMips     = asmArch{name: "mips", bigEndian: true, stack: "R29", lr: true}
    	asmArchMipsLE   = asmArch{name: "mipsle", bigEndian: false, stack: "R29", lr: true}
    	asmArchMips64   = asmArch{name: "mips64", bigEndian: true, stack: "R29", lr: true}
    	asmArchMips64LE = asmArch{name: "mips64le", bigEndian: false, stack: "R29", lr: true}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/imports/build.go

    	"arm":         true,
    	"armbe":       true,
    	"arm64":       true,
    	"arm64be":     true,
    	"ppc64":       true,
    	"ppc64le":     true,
    	"mips":        true,
    	"mipsle":      true,
    	"mips64":      true,
    	"mips64le":    true,
    	"mips64p32":   true,
    	"mips64p32le": true,
    	"loong64":     true,
    	"ppc":         true,
    	"riscv":       true,
    	"riscv64":     true,
    	"s390":        true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/config.go

    		// in contexts where they can be merged with a load or store.
    		c.haveBswap64 = true
    		c.haveBswap32 = true
    		c.haveBswap16 = true
    	case "mips64":
    		c.BigEndian = true
    		fallthrough
    	case "mips64le":
    		c.PtrSize = 8
    		c.RegSize = 8
    		c.lowerBlock = rewriteBlockMIPS64
    		c.lowerValue = rewriteValueMIPS64
    		c.registers = registersMIPS64[:]
    		c.gpRegMask = gpRegMaskMIPS64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/help/helpdoc.go

    	- For GOARCH=mips or mipsle,
    	  GOMIPS=hardfloat and softfloat
    	  correspond to the mips.hardfloat and mips.softfloat
    	  (or mipsle.hardfloat and mipsle.softfloat) feature build tags.
    	- For GOARCH=mips64 or mips64le,
    	  GOMIPS64=hardfloat and softfloat
    	  correspond to the mips64.hardfloat and mips64.softfloat
    	  (or mips64le.hardfloat and mips64le.softfloat) feature build tags.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top