Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 154 for du32 (0.04 sec)

  1. test/copy.go

    	var i int
    	for i = 0; i < out; i++ {
    		if output32[i] != u32(i+13) {
    			bad32("before32", i, length, in, out)
    			return
    		}
    	}
    	// copied part
    	for ; i < out+n; i++ {
    		if output32[i] != u32(i+in-out) {
    			bad32("copied32", i, length, in, out)
    			return
    		}
    	}
    	// after
    	for ; i < len(output32); i++ {
    		if output32[i] != u32(i+13) {
    			bad32("after32", i, length, in, out)
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 6.6K bytes
    - Viewed (0)
  2. test/float_lit2.go

    	if ulp64 != u64 {
    		bug()
    		fmt.Printf("ulp64=%g, want %g", ulp64, u64)
    	}
    
    	u32 := math.Float32frombits(0x7f7fffff) - math.Float32frombits(0x7f7ffffe)
    	if ulp32 != u32 {
    		bug()
    		fmt.Printf("ulp32=%g, want %g", ulp32, u32)
    	}
    
    	for _, c := range cvt {
    		if bits(c.exact) != c.bits {
    			bug()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:39:47 UTC 2016
    - 7.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm/armasm/tables.go

    	VCVTR_LT_U32_F32:  "VCVTR.LT.U32.F32",
    	VCVTR_GT_U32_F32:  "VCVTR.GT.U32.F32",
    	VCVTR_LE_U32_F32:  "VCVTR.LE.U32.F32",
    	VCVTR_U32_F32:     "VCVTR.U32.F32",
    	VCVTR_ZZ_U32_F32:  "VCVTR.ZZ.U32.F32",
    	VCVTR_EQ_U32_F64:  "VCVTR.EQ.U32.F64",
    	VCVTR_NE_U32_F64:  "VCVTR.NE.U32.F64",
    	VCVTR_CS_U32_F64:  "VCVTR.CS.U32.F64",
    	VCVTR_CC_U32_F64:  "VCVTR.CC.U32.F64",
    	VCVTR_MI_U32_F64:  "VCVTR.MI.U32.F64",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 267.4K bytes
    - Viewed (0)
  4. test/literal.go

    	var u23 uint32 = +4294967295
    	assert(u21 == u20+1, "u21")
    	assert(u22 == u23, "u22")
    
    	// uint64
    	var u30 uint64 = 0
    	var u31 uint64 = 1
    	var u32 uint64 = 18446744073709551615
    	var u33 uint64 = +18446744073709551615
    	_, _, _, _ = u30, u31, u32, u33
    
    	// float
    	var f00 float32 = 3.14159
    	var f01 float32 = -3.14159
    	var f02 float32 = +3.14159
    	var f03 float32 = 0.0
    	var f04 float32 = .0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 5K bytes
    - Viewed (0)
  5. test/codegen/math.go

    	// ppc64x:"MTVSRD"
    	// mips64/hardfloat:"MOVV\tR.*, F.*"
    	return math.Float64frombits(u64+1) + 1
    }
    
    func toFloat32(u32 uint32) float32 {
    	// amd64:"MOVL\t[^X].*, X.*"
    	// arm64:"FMOVS\tR.*, F.*"
    	// mips64/hardfloat:"MOVW\tR.*, F.*"
    	return math.Float32frombits(u32+1) + 1
    }
    
    // Test that comparisons with constants converted to float
    // are evaluated at compile-time
    
    func constantCheck64() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. test/gcgort.go

    				runtime.Gosched()
    			}
    		},
    	},
    	modifier{
    		name: "structT",
    		t: func() {
    			s := newStructT()
    			for i := 0; i < mods; i++ {
    				s.u8++
    				s.u16++
    				s.u32++
    				s.u64++
    				s.i8++
    				s.i16++
    				s.i32++
    				s.i64++
    				s.f32 *= 1.01
    				s.f64 *= 1.01
    				s.c64 = complex(real(s.c64)*1.01, imag(s.c64)*1.01)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 08 21:15:48 UTC 2018
    - 34.5K bytes
    - Viewed (0)
  7. src/syscall/syscall_linux_ppc64x.go

    //go:build linux && (ppc64 || ppc64le)
    
    package syscall
    
    import (
    	"unsafe"
    )
    
    const (
    	_SYS_setgroups  = SYS_SETGROUPS
    	_SYS_clone3     = 435
    	_SYS_faccessat2 = 439
    	_SYS_fchmodat2  = 452
    )
    
    //sys	Dup2(oldfd int, newfd int) (err error)
    //sys	EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error)
    //sys	Fchown(fd int, uid int, gid int) (err error)
    //sys	Fstat(fd int, stat *Stat_t) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. src/syscall/syscall_linux_amd64.go

    package syscall
    
    import (
    	"unsafe"
    )
    
    const (
    	_SYS_setgroups  = SYS_SETGROUPS
    	_SYS_clone3     = 435
    	_SYS_faccessat2 = 439
    	_SYS_fchmodat2  = 452
    )
    
    //sys	Dup2(oldfd int, newfd int) (err error)
    //sys	Fchown(fd int, uid int, gid int) (err error)
    //sys	Fstat(fd int, stat *Stat_t) (err error)
    //sys	Fstatfs(fd int, buf *Statfs_t) (err error)
    //sys	Ftruncate(fd int, length int64) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/arm/armasm/gnu.go

    package armasm
    
    import (
    	"bytes"
    	"fmt"
    	"strings"
    )
    
    var saveDot = strings.NewReplacer(
    	".F16", "_dot_F16",
    	".F32", "_dot_F32",
    	".F64", "_dot_F64",
    	".S32", "_dot_S32",
    	".U32", "_dot_U32",
    	".FXS", "_dot_S",
    	".FXU", "_dot_U",
    	".32", "_dot_32",
    )
    
    // GNUSyntax returns the GNU assembler syntax for the instruction, as defined by GNU binutils.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 17:21:52 UTC 2016
    - 3.5K bytes
    - Viewed (0)
  10. src/runtime/syscall_aix.go

    //go:cgo_import_dynamic libc_chdir chdir "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_chroot chroot "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_dup2 dup2 "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_execve execve "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_fcntl fcntl "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_fork fork "libc.a/shr_64.o"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top