Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,138 for Init64 (0.12 sec)

  1. src/encoding/binary/varint.go

    				return 0, -(i + 1) // overflow
    			}
    			return x | uint64(b)<<s, i + 1
    		}
    		x |= uint64(b&0x7f) << s
    		s += 7
    	}
    	return 0, 0
    }
    
    // AppendVarint appends the varint-encoded form of x,
    // as generated by [PutVarint], to buf and returns the extended buffer.
    func AppendVarint(buf []byte, x int64) []byte {
    	ux := uint64(x) << 1
    	if x < 0 {
    		ux = ^ux
    	}
    	return AppendUvarint(buf, ux)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. src/internal/profile/proto.go

    	return decodeMessage(&b, m)
    }
    
    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 i int
    	var u uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 16:20:57 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  3. src/syscall/ztypes_freebsd_386.go

    	Birthtimespec Timespec
    	Size          int64
    	Blocks        int64
    	Blksize       int32
    	Flags         uint32
    	Gen           uint64
    	Spare         [10]uint64
    }
    
    type Statfs_t struct {
    	Version     uint32
    	Type        uint32
    	Flags       uint64
    	Bsize       uint64
    	Iosize      uint64
    	Blocks      uint64
    	Bfree       uint64
    	Bavail      int64
    	Files       uint64
    	Ffree       int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  4. src/crypto/sha512/sha512.go

    	init6_384 = 0xdb0c2e0d64f98fa7
    	init7_384 = 0x47b5481dbefa4fa4
    )
    
    // digest represents the partial evaluation of a checksum.
    type digest struct {
    	h        [8]uint64
    	x        [chunk]byte
    	nx       int
    	len      uint64
    	function crypto.Hash
    }
    
    func (d *digest) Reset() {
    	switch d.function {
    	case crypto.SHA384:
    		d.h[0] = init0_384
    		d.h[1] = init1_384
    		d.h[2] = init2_384
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go

    	return Timeval{Sec: sec, Usec: usec}
    }
    
    func (r *PtraceRegs) PC() uint64 { return r.Nip }
    
    func (r *PtraceRegs) SetPC(pc uint64) { r.Nip = 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
    - 5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go

    func setTimespec(sec, nsec int64) Timespec {
    	return Timespec{Sec: sec, Nsec: nsec}
    }
    
    func setTimeval(sec, usec int64) Timeval {
    	return Timeval{Sec: sec, Usec: int32(usec)}
    }
    
    func (r *PtraceRegs) PC() uint64 { return r.Tpc }
    
    func (r *PtraceRegs) SetPC(pc uint64) { r.Tpc = pc }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint64(length)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. src/runtime/defs_aix_ppc64.go

    	__extctx_magic int32
    	__pad          int32
    }
    
    type context64 struct {
    	gpr        [32]uint64
    	msr        uint64
    	iar        uint64
    	lr         uint64
    	ctr        uint64
    	cr         uint32
    	xer        uint32
    	fpscr      uint32
    	fpscrx     uint32
    	except     [1]uint64
    	fpr        [32]float64
    	fpeu       uint8
    	fpinfo     uint8
    	fpscr24_31 uint8
    	pad        [1]uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 20 21:27:51 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/divconst_test.go

    	t.Run("14", testdiv(14, func(n uint64) (uint64, uint64) { return n / 14, n % 14 }))
    	t.Run("15", testdiv(15, func(n uint64) (uint64, uint64) { return n / 15, n % 15 }))
    	t.Run("16", testdiv(16, func(n uint64) (uint64, uint64) { return n / 16, n % 16 }))
    	t.Run("17", testdiv(17, func(n uint64) (uint64, uint64) { return n / 17, n % 17 }))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 00:07:35 UTC 2020
    - 7.7K bytes
    - Viewed (0)
  9. src/syscall/syscall_linux_loong64.go

    func makedev(major uint32, minor uint32) uint64 {
    	majorH := uint64(major >> 12)
    	majorL := uint64(major & 0xfff)
    	minorH := uint64(minor >> 8)
    	minorL := uint64(minor & 0xff)
    	return (majorH << 44) | (minorH << 20) | (majorL << 8) | minorL
    }
    
    func timespecFromStatxTimestamp(x statxTimestamp) Timespec {
    	return Timespec{
    		Sec:  x.Sec,
    		Nsec: int64(x.Nsec),
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. src/runtime/defs_linux_loong64.go

    	_SIGEV_THREAD_ID = 0x4
    )
    
    type timespec struct {
    	tv_sec  int64
    	tv_nsec int64
    }
    
    //go:nosplit
    func (ts *timespec) setNsec(ns int64) {
    	ts.tv_sec = ns / 1e9
    	ts.tv_nsec = ns % 1e9
    }
    
    type timeval struct {
    	tv_sec  int64
    	tv_usec int64
    }
    
    func (tv *timeval) set_usec(x int32) {
    	tv.tv_usec = int64(x)
    }
    
    type itimerspec struct {
    	it_interval timespec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top