Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,002 for fInt64 (0.28 sec)

  1. src/sync/atomic/doc.go

    // Consider using the more ergonomic and less error-prone [Int64.And] instead.
    func AndInt64(addr *int64, mask int64) (old int64)
    
    // AndUint64 atomically performs a bitwise AND operation on *addr using the bitmask provided as mask
    // and returns the old.
    // Consider using the more ergonomic and less error-prone [Uint64.And] instead.
    func AndUint64(addr *uint64, mask uint64) (old uint64)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. src/runtime/defs_darwin_arm64.go

    	ts.tv_sec = ns / 1e9
    	ts.tv_nsec = ns % 1e9
    }
    
    type exceptionstate64 struct {
    	far uint64 // virtual fault addr
    	esr uint32 // exception syndrome
    	exc uint32 // number of arm exception taken
    }
    
    type regs64 struct {
    	x     [29]uint64 // registers x0 to x28
    	fp    uint64     // frame register, x29
    	lr    uint64     // link register, x30
    	sp    uint64     // stack pointer, x31
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go

    	Metric       uint32
    	Rdomain      uint32
    	Baudrate     uint64
    	Ipackets     uint64
    	Ierrors      uint64
    	Opackets     uint64
    	Oerrors      uint64
    	Collisions   uint64
    	Ibytes       uint64
    	Obytes       uint64
    	Imcasts      uint64
    	Omcasts      uint64
    	Iqdrops      uint64
    	Oqdrops      uint64
    	Noproto      uint64
    	Capabilities uint32
    	_            [4]byte
    	Lastchange   Timeval
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  4. test/makeslice.go

    	shouldPanic("len out of range", func() { _ = make(T, int64(n)) })
    	shouldPanic("cap out of range", func() { _ = make(T, 0, int64(n)) })
    	shouldPanic("len out of range", func() { _ = make(T, uint64(n)) })
    	shouldPanic("cap out of range", func() { _ = make(T, 0, uint64(n)) })
    }
    
    func testMakeBytes(n uint64) {
    	type T []byte
    	shouldPanic("len out of range", func() { _ = make(T, int(n)) })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 07 17:50:24 UTC 2020
    - 5.5K bytes
    - Viewed (0)
  5. test/intcvt.go

    	//	chku32(uint32(f64), 0)
    
    	chku64(uint64(i8), ci8&0xffffffffffffffff)
    	chku64(uint64(i16), ci16&0xffffffffffffffff)
    	chku64(uint64(i32), ci32&0xffffffffffffffff)
    	chku64(uint64(i64), ci64&0xffffffffffffffff)
    	chku64(uint64(u8), cu8&0xffffffffffffffff)
    	chku64(uint64(u16), cu16&0xffffffffffffffff)
    	chku64(uint64(u32), cu32&0xffffffffffffffff)
    	chku64(uint64(u64), cu64&0xffffffffffffffff)
    	//	chku64(uint64(f32), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 4.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go

    	Datalen    uint16
    	Mtu        uint32
    	Metric     uint32
    	Baudrate   uint64
    	Ipackets   uint64
    	Ierrors    uint64
    	Opackets   uint64
    	Oerrors    uint64
    	Collisions uint64
    	Ibytes     uint64
    	Obytes     uint64
    	Imcasts    uint64
    	Omcasts    uint64
    	Iqdrops    uint64
    	Oqdrops    uint64
    	Noproto    uint64
    	Hwassist   uint64
    	_          [8]byte
    	_          [16]byte
    }
    
    type IfData struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. test/fixedbugs/issue66066b.go

    package main
    
    //go:noinline
    func f32(_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, x int32) uint64 {
    	return uint64(uint32(x))
    }
    
    //go:noinline
    func f16(_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, x int16) uint64 {
    	return uint64(uint16(x))
    }
    
    //go:noinline
    func f8(_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, x int8) uint64 {
    	return uint64(uint8(x))
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 17:35:29 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. src/math/rand/rng.go

    			rng.vec[i] = u
    		}
    	}
    }
    
    // Int63 returns a non-negative pseudo-random 63-bit integer as an int64.
    func (rng *rngSource) Int63() int64 {
    	return int64(rng.Uint64() & rngMask)
    }
    
    // Uint64 returns a non-negative pseudo-random 64-bit integer as a uint64.
    func (rng *rngSource) Uint64() uint64 {
    	rng.tap--
    	if rng.tap < 0 {
    		rng.tap += rngLen
    	}
    
    	rng.feed--
    	if rng.feed < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 04 14:20:53 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/testdata/gen/arithConstGen.go

    }
    type szD struct {
    	name   string
    	sn     string
    	u      []uint64
    	i      []int64
    	oponly string
    }
    
    var szs = []szD{
    	{name: "uint64", sn: "64", u: []uint64{0, 1, 4294967296, 0x8000000000000000, 0xffffFFFFffffFFFF}},
    	{name: "uint64", sn: "64", u: []uint64{3, 5, 7, 9, 10, 11, 13, 19, 21, 25, 27, 37, 41, 45, 73, 81}, oponly: "mul"},
    
    	{name: "int64", sn: "64", i: []int64{-0x8000000000000000, -0x7FFFFFFFFFFFFFFF,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/zerorange_test.go

    	globp = &z1
    	return
    }
    
    type S struct {
    	x [2]uint64
    	p *uint64
    	y [2]uint64
    	q uint64
    }
    
    type M struct {
    	x [8]uint64
    	p *uint64
    	y [8]uint64
    	q uint64
    }
    
    type L struct {
    	x [4096]uint64
    	p *uint64
    	y [4096]uint64
    	q uint64
    }
    
    //go:noinline
    func triggerZerorangeLarge(f, g, h uint64) (rv0 uint64) {
    	ll := L{p: &f}
    	da := f
    	rv0 = f + g + h
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 4.1K bytes
    - Viewed (0)
Back to top