Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,138 for Init64 (0.14 sec)

  1. 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)
  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/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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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/runtime/pprof/protobuf.go

    		return
    	}
    	b.uint64(tag, x)
    }
    
    func (b *protobuf) int64(tag int, x int64) {
    	u := uint64(x)
    	b.uint64(tag, u)
    }
    
    func (b *protobuf) int64Opt(tag int, x int64) {
    	if x == 0 {
    		return
    	}
    	b.int64(tag, x)
    }
    
    func (b *protobuf) int64s(tag int, x []int64) {
    	if len(x) > 2 {
    		// Use packed encoding
    		n1 := len(b.data)
    		for _, u := range x {
    			b.varint(uint64(u))
    		}
    		n2 := len(b.data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 20:09:46 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top