Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,002 for fInt64 (0.35 sec)

  1. src/runtime/defs_linux_ppc64.go

    	_O_CLOEXEC   = 0x80000
    	_SA_RESTORER = 0
    )
    
    type ptregs struct {
    	gpr       [32]uint64
    	nip       uint64
    	msr       uint64
    	orig_gpr3 uint64
    	ctr       uint64
    	link      uint64
    	xer       uint64
    	ccr       uint64
    	softe     uint64
    	trap      uint64
    	dar       uint64
    	dsisr     uint64
    	result    uint64
    }
    
    type vreg struct {
    	u [4]uint32
    }
    
    type stackt struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. src/sync/atomic/type.go

    // A Uint64 is an atomic uint64. The zero value is zero.
    type Uint64 struct {
    	_ noCopy
    	_ align64
    	v uint64
    }
    
    // Load atomically loads and returns the value stored in x.
    func (x *Uint64) Load() uint64 { return LoadUint64(&x.v) }
    
    // Store atomically stores val into x.
    func (x *Uint64) Store(val uint64) { StoreUint64(&x.v, val) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/testdata/testbranch/branch_test.go

    func testBNEZ(a int64) (r bool)
    
    func testGoBGE(a, b int64) bool  { return a >= b }
    func testGoBGEU(a, b int64) bool { return uint64(a) >= uint64(b) }
    func testGoBGT(a, b int64) bool  { return a > b }
    func testGoBGTU(a, b int64) bool { return uint64(a) > uint64(b) }
    func testGoBLE(a, b int64) bool  { return a <= b }
    func testGoBLEU(a, b int64) bool { return uint64(a) <= uint64(b) }
    func testGoBLT(a, b int64) bool  { return a < b }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 28 21:56:43 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  4. src/runtime/defs_openbsd_ppc64.go

    	tf_stack uintptr
    }
    
    type sigcontext struct {
    	sc_cookie uint64
    	sc_mask   int32
    	sc_reg    [32]uint64
    	sc_lr     uint64
    	sc_cr     uint64
    	sc_xer    uint64
    	sc_ctr    uint64
    	sc_pc     uint64
    	sc_ps     uint64
    	sc_vrsave uint64
    	pad_cgo_0 [8]byte
    	sc_vsx    [64][16]uint8
    	sc_fpscr  uint64
    	sc_vscr   uint64
    }
    
    type siginfo struct {
    	si_signo  int32
    	si_code   int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 17:31:23 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. src/runtime/defs_freebsd_arm64.go

    	si_code   int32
    	si_pid    int32
    	si_uid    uint32
    	si_status int32
    	si_addr   uint64
    	si_value  [8]byte
    	_reason   [40]byte
    }
    
    type gpregs struct {
    	gp_x    [30]uint64
    	gp_lr   uint64
    	gp_sp   uint64
    	gp_elr  uint64
    	gp_spsr uint32
    	gp_pad  int32
    }
    
    type fpregs struct {
    	fp_q     [64]uint64 // actually [32]uint128
    	fp_sr    uint32
    	fp_cr    uint32
    	fp_flags int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/debug/dwarf/entry.go

    	}
    
    	if cuEntry, cuEntryOK := cu.Val(AttrEntrypc).(uint64); cuEntryOK {
    		return cu, cuEntry, nil
    	} else if cuLow, cuLowOK := cu.Val(AttrLowpc).(uint64); cuLowOK {
    		return cu, cuLow, nil
    	}
    
    	return cu, 0, nil
    }
    
    func (d *Data) dwarf2Ranges(u *unit, base uint64, ranges int64, ret [][2]uint64) ([][2]uint64, error) {
    	if ranges < 0 || ranges > int64(len(d.ranges)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  7. src/runtime/defs_linux_mips64x.go

    	ss_size  uintptr
    	ss_flags int32
    }
    
    type sigcontext struct {
    	sc_regs      [32]uint64
    	sc_fpregs    [32]uint64
    	sc_mdhi      uint64
    	sc_hi1       uint64
    	sc_hi2       uint64
    	sc_hi3       uint64
    	sc_mdlo      uint64
    	sc_lo1       uint64
    	sc_lo2       uint64
    	sc_lo3       uint64
    	sc_pc        uint64
    	sc_fpc_csr   uint32
    	sc_used_math uint32
    	sc_dsp       uint32
    	sc_reserved  uint32
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. src/runtime/vlrt.go

    		} else {
    			yhi = -yhi
    		}
    	}
    
    	*y = uint64(yhi)<<32 | uint64(ylo)
    }
    func uint64div(n, d uint64) uint64 {
    	// Check for 32 bit operands
    	if uint32(n>>32) == 0 && uint32(d>>32) == 0 {
    		if uint32(d) == 0 {
    			panicdivide()
    		}
    		return uint64(uint32(n) / uint32(d))
    	}
    	q, _ := dodiv(n, d)
    	return q
    }
    
    func uint64mod(n, d uint64) uint64 {
    	// Check for 32 bit operands
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/bench_test.go

    	a := make([]uint64, N/64)
    	for i := 0; i < b.N; i++ {
    		for j := uint64(0); j < N; j++ {
    			a[j/64] &^= 1 << (j % 64)
    		}
    	}
    }
    
    func BenchmarkBitToggle(b *testing.B) {
    	const N = 64 * 8
    	a := make([]uint64, N/64)
    	for i := 0; i < b.N; i++ {
    		for j := uint64(0); j < N; j++ {
    			a[j/64] ^= 1 << (j % 64)
    		}
    	}
    }
    
    func BenchmarkBitSetConst(b *testing.B) {
    	const N = 64
    	a := make([]uint64, N)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 08 03:27:59 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/shift_test.go

    		f          interface{}
    	}{
    		{64, true, 64, true, func(n int64, s uint64) int64 { return n << s }},
    		{64, true, 64, false, func(n int64, s uint64) int64 { return n >> s }},
    		{64, false, 64, false, func(n uint64, s uint64) uint64 { return n >> s }},
    		{64, true, 32, true, func(n int64, s uint32) int64 { return n << s }},
    		{64, true, 32, false, func(n int64, s uint32) int64 { return n >> s }},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 22:26:39 UTC 2023
    - 25.6K bytes
    - Viewed (0)
Back to top