Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,138 for Init64 (0.12 sec)

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

    	s.Rdev = st.Rdev
    	s.Size = st.Size
    	s.Atim = Timespec{int64(st.Atime), int64(st.Atime_nsec)}
    	s.Mtim = Timespec{int64(st.Mtime), int64(st.Mtime_nsec)}
    	s.Ctim = Timespec{int64(st.Ctime), int64(st.Ctime_nsec)}
    	s.Blksize = st.Blksize
    	s.Blocks = st.Blocks
    }
    
    func (r *PtraceRegs) PC() uint64 { return r.Epc }
    
    func (r *PtraceRegs) SetPC(pc uint64) { r.Epc = pc }
    
    func (iov *Iovec) SetLen(length int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/proto.go

    }
    
    func le64(p []byte) uint64 {
    	return uint64(p[0]) | uint64(p[1])<<8 | uint64(p[2])<<16 | uint64(p[3])<<24 | uint64(p[4])<<32 | uint64(p[5])<<40 | uint64(p[6])<<48 | uint64(p[7])<<56
    }
    
    func le32(p []byte) uint32 {
    	return uint32(p[0]) | uint32(p[1])<<8 | uint32(p[2])<<16 | uint32(p[3])<<24
    }
    
    func decodeVarint(data []byte) (uint64, []byte, error) {
    	var u uint64
    	for i := 0; ; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/const1.go

    )
    
    const (
    	_ uint64 = 0 /* ERROR "overflows" */ - 1
    	_ uint64 = 0
    	_ uint64 = maxUint64
    	_ uint64 = maxUint64 /* ERROR "overflows" */ + 1
    	_ uint64 = smallestFloat64 /* ERROR "truncated" */
    
    	_ = uint64(0 /* ERROR "overflows" */ - 1)
    	_ = uint64(0)
    	_ = uint64(maxUint64)
    	_ = uint64(maxUint64 /* ERROR "overflows" */ + 1)
    	_ = uint64(smallestFloat64 /* ERROR "cannot convert" */)
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. test/asmhdr.dir/main.go

    )
    
    var (
    	smallIntAsm   int64
    	bigIntAsm     uint64
    	stringAsm     [len(stringVal)]byte
    	longStringAsm [len(longStringVal)]byte
    )
    
    type typ struct {
    	a uint64
    	b [100]uint8
    	c uint8
    }
    
    var (
    	typSize uint64
    
    	typA, typB, typC uint64
    )
    
    func main() {
    	if smallInt != smallIntAsm {
    		println("smallInt", smallInt, "!=", smallIntAsm)
    	}
    	if bigInt != bigIntAsm {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 10 21:27:19 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go

    }
    
    func (r *PtraceRegs) PC() uint64 { return r.Pc }
    
    func (r *PtraceRegs) SetPC(pc uint64) { r.Pc = pc }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint64(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint64(length)
    }
    
    func (msghdr *Msghdr) SetIovlen(length int) {
    	msghdr.Iovlen = uint64(length)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. test/typeswitch1.go

    	default:
    		return fmt.Sprint("default ", xx)
    	case int, int8, int16, int32:
    		return fmt.Sprint("signed ", xx)
    	case int64:
    		return fmt.Sprint("signed64 ", int64(xx))
    	case uint, uint8, uint16, uint32:
    		return fmt.Sprint("unsigned ", xx)
    	case uint64:
    		return fmt.Sprint("unsigned64 ", uint64(xx))
    	case nil:
    		return fmt.Sprint("nil ", xx)
    	}
    	panic("not reached")
    }
    
    func whatis1(x interface{}) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 1.6K bytes
    - Viewed (0)
  7. src/syscall/syscall_linux_mips64x.go

    	s.Rdev = st.Rdev
    	s.Size = st.Size
    	s.Atim = Timespec{int64(st.Atime), int64(st.Atime_nsec)}
    	s.Mtim = Timespec{int64(st.Mtime), int64(st.Mtime_nsec)}
    	s.Ctim = Timespec{int64(st.Ctime), int64(st.Ctime_nsec)}
    	s.Blksize = st.Blksize
    	s.Blocks = st.Blocks
    }
    
    func (r *PtraceRegs) PC() uint64 { return r.Regs[64] }
    
    func (r *PtraceRegs) SetPC(pc uint64) { r.Regs[64] = pc }
    
    func (iov *Iovec) SetLen(length int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. test/codegen/bmi.go

    package codegen
    
    func andn64(x, y int64) int64 {
    	// amd64/v3:"ANDNQ"
    	return x &^ y
    }
    
    func andn32(x, y int32) int32 {
    	// amd64/v3:"ANDNL"
    	return x &^ y
    }
    
    func blsi64(x int64) int64 {
    	// amd64/v3:"BLSIQ"
    	return x & -x
    }
    
    func blsi32(x int32) int32 {
    	// amd64/v3:"BLSIL"
    	return x & -x
    }
    
    func blsmsk64(x int64) int64 {
    	// amd64/v3:"BLSMSKQ"
    	return x ^ (x - 1)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 04:58:59 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go

    }
    
    func (r *PtraceRegs) PC() uint64 { return r.Pc }
    
    func (r *PtraceRegs) SetPC(pc uint64) { r.Pc = pc }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint64(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint64(length)
    }
    
    func (msghdr *Msghdr) SetIovlen(length int) {
    	msghdr.Iovlen = uint64(length)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. src/log/slog/attr_test.go

    	// Assign values just to make sure the compiler doesn't optimize away the statements.
    	var (
    		i int64
    		u uint64
    		f float64
    		b bool
    		s string
    		x any
    		p = &i
    		d time.Duration
    	)
    	a := int(testing.AllocsPerRun(5, func() {
    		i = Int64("key", 1).Value.Int64()
    		u = Uint64("key", 1).Value.Uint64()
    		f = Float64("key", 1).Value.Float64()
    		b = Bool("key", true).Value.Bool()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 18:23:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top