Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,491 for Init64 (0.13 sec)

  1. src/debug/elf/file.go

    		}
    		if int64(s.FileSize) < 0 {
    			return nil, &FormatError{shoff + int64(off), "invalid section size", int64(s.FileSize)}
    		}
    		s.sr = io.NewSectionReader(r, int64(s.Offset), int64(s.FileSize))
    
    		if s.Flags&SHF_COMPRESSED == 0 {
    			s.ReaderAt = s.sr
    			s.Size = s.FileSize
    		} else {
    			// Read the compression header.
    			switch f.Class {
    			case ELFCLASS32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ppc64/asm.go

    	case objabi.R_POWER_TLS_IE:
    		out.Write64(uint64(elf.R_PPC64_GOT_TPREL16_HA) | uint64(elfsym)<<32)
    		out.Write64(uint64(r.Xadd))
    		out.Write64(uint64(sectoff + 4))
    		out.Write64(uint64(elf.R_PPC64_GOT_TPREL16_LO_DS) | uint64(elfsym)<<32)
    	case objabi.R_ADDRPOWER:
    		out.Write64(uint64(elf.R_PPC64_ADDR16_HA) | uint64(elfsym)<<32)
    		out.Write64(uint64(r.Xadd))
    		out.Write64(uint64(sectoff + 4))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    	// cond: d != 0
    	// result: (MOVVconst [int64(uint64(c)/uint64(d))])
    	for {
    		if v_0.Op != OpLOONG64MOVVconst {
    			break
    		}
    		c := auxIntToInt64(v_0.AuxInt)
    		if v_1.Op != OpLOONG64MOVVconst {
    			break
    		}
    		d := auxIntToInt64(v_1.AuxInt)
    		if !(d != 0) {
    			break
    		}
    		v.reset(OpLOONG64MOVVconst)
    		v.AuxInt = int64ToAuxInt(int64(uint64(c) / uint64(d)))
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  4. src/internal/saferio/io.go

    func SliceCapWithSize(size, c uint64) int {
    	if int64(c) < 0 || c != uint64(int(c)) {
    		return -1
    	}
    	if size > 0 && c > (1<<64-1)/size {
    		return -1
    	}
    	if c*size > chunk {
    		c = chunk / size
    		if c == 0 {
    			c = 1
    		}
    	}
    	return int(c)
    }
    
    // SliceCap is like SliceCapWithSize but using generics.
    func SliceCap[E any](c uint64) int {
    	var v E
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 00:34:05 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. src/runtime/race.go

    func abigen_sync_atomic_SwapInt64(addr *int64, new int64) (old int64)
    
    //go:linkname abigen_sync_atomic_SwapUint32 sync/atomic.SwapUint32
    func abigen_sync_atomic_SwapUint32(addr *uint32, new uint32) (old uint32)
    
    //go:linkname abigen_sync_atomic_SwapUint64 sync/atomic.SwapUint64
    func abigen_sync_atomic_SwapUint64(addr *uint64, new uint64) (old uint64)
    
    //go:linkname abigen_sync_atomic_AddInt32 sync/atomic.AddInt32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/s390x/asm.go

    			out.Write64(uint64(elf.R_390_TLS_LE64) | uint64(elfsym)<<32)
    		}
    	case objabi.R_TLS_IE:
    		switch siz {
    		default:
    			return false
    		case 4:
    			out.Write64(uint64(elf.R_390_TLS_IEENT) | uint64(elfsym)<<32)
    		}
    	case objabi.R_ADDR, objabi.R_DWARFSECREF:
    		switch siz {
    		default:
    			return false
    		case 4:
    			out.Write64(uint64(elf.R_390_32) | uint64(elfsym)<<32)
    		case 8:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (NEGshiftRA (MOVDconst [c]) [d]) => (MOVDconst [-(c>>uint64(d))])
    (ADDshiftLL x (MOVDconst [c]) [d]) => (ADDconst x [int64(uint64(c)<<uint64(d))])
    (ADDshiftRL x (MOVDconst [c]) [d]) => (ADDconst x [int64(uint64(c)>>uint64(d))])
    (ADDshiftRA x (MOVDconst [c]) [d]) => (ADDconst x [c>>uint64(d)])
    (SUBshiftLL x (MOVDconst [c]) [d]) => (SUBconst x [int64(uint64(c)<<uint64(d))])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go

    }
    
    func (r *PtraceRegs) PC() uint64 { return r.Era }
    
    func (r *PtraceRegs) SetPC(era uint64) { r.Era = era }
    
    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.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd_riscv64.go

    	"unsafe"
    )
    
    func setTimespec(sec, nsec int64) Timespec {
    	return Timespec{Sec: sec, Nsec: nsec}
    }
    
    func setTimeval(sec, usec int64) Timeval {
    	return Timeval{Sec: sec, Usec: usec}
    }
    
    func SetKevent(k *Kevent_t, fd, mode, flags int) {
    	k.Ident = uint64(fd)
    	k.Filter = int16(mode)
    	k.Flags = uint16(flags)
    }
    
    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
    - 1.3K bytes
    - Viewed (0)
  10. src/syscall/syscall_linux_386.go

    //sys	Setfsuid(uid int) (err error) = SYS_SETFSUID32
    //sys	Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error)
    //sys	SyncFileRange(fd int, off int64, n int64, flags int) (err error)
    //sys	Truncate(path string, length int64) (err error) = SYS_TRUNCATE64
    //sys	Ustat(dev int, ubuf *Ustat_t) (err error)
    //sysnb	getgroups(n int, list *_Gid_t) (nn int, err error) = SYS_GETGROUPS32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top