Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 3,430 for UInt32 (0.16 sec)

  1. src/syscall/syscall_netbsd_arm.go

    func setTimespec(sec, nsec int64) Timespec {
    	return Timespec{Sec: sec, Nsec: int32(nsec)}
    }
    
    func setTimeval(sec, usec int64) Timeval {
    	return Timeval{Sec: sec, Usec: int32(usec)}
    }
    
    func SetKevent(k *Kevent_t, fd, mode, flags int) {
    	k.Ident = uint32(fd)
    	k.Filter = uint32(mode)
    	k.Flags = uint32(flags)
    }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint32(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 13:10:54 UTC 2016
    - 716 bytes
    - Viewed (0)
  2. src/debug/macho/macho.go

    type Regs386 struct {
    	AX    uint32
    	BX    uint32
    	CX    uint32
    	DX    uint32
    	DI    uint32
    	SI    uint32
    	BP    uint32
    	SP    uint32
    	SS    uint32
    	FLAGS uint32
    	IP    uint32
    	CS    uint32
    	DS    uint32
    	ES    uint32
    	FS    uint32
    	GS    uint32
    }
    
    // RegsAMD64 is the Mach-O AMD64 register structure.
    type RegsAMD64 struct {
    	AX    uint64
    	BX    uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 14 00:56:52 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  3. src/runtime/defs_windows_arm.go

    }
    
    type context struct {
    	contextflags uint32
    	r0           uint32
    	r1           uint32
    	r2           uint32
    	r3           uint32
    	r4           uint32
    	r5           uint32
    	r6           uint32
    	r7           uint32
    	r8           uint32
    	r9           uint32
    	r10          uint32
    	r11          uint32
    	r12          uint32
    
    	spr  uint32
    	lrr  uint32
    	pc   uint32
    	cpsr uint32
    
    	fpscr   uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/loadstore_test.go

    	}
    	{
    		var in int32 = (1 << 30) + 1
    		var p int32
    		got := loadHitStore32(in, &p)
    		want := int64(in * in)
    		if got != want {
    			t.Errorf("testLoadHitStore (int32) failed. want = %d, got = %d", want, got)
    		}
    	}
    	{
    		var in uint32 = (1 << 30) + 1
    		var p uint32
    		got := loadHitStoreU32(in, &p)
    		want := uint64(in * in)
    		if got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  5. src/runtime/defs_windows_386.go

    	floatsave         floatingsavearea
    	seggs             uint32
    	segfs             uint32
    	seges             uint32
    	segds             uint32
    	edi               uint32
    	esi               uint32
    	ebx               uint32
    	edx               uint32
    	ecx               uint32
    	eax               uint32
    	ebp               uint32
    	eip               uint32
    	segcs             uint32
    	eflags            uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. src/debug/pe/pe.go

    	SizeOfCode                  uint32
    	SizeOfInitializedData       uint32
    	SizeOfUninitializedData     uint32
    	AddressOfEntryPoint         uint32
    	BaseOfCode                  uint32
    	BaseOfData                  uint32
    	ImageBase                   uint32
    	SectionAlignment            uint32
    	FileAlignment               uint32
    	MajorOperatingSystemVersion uint16
    	MinorOperatingSystemVersion uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 01:21:43 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  7. src/internal/fuzz/pcg.go

    // https://lemire.me/blog/2016/06/30/fast-random-shuffling
    func (r *pcgRand) uint32n(n uint32) uint32 {
    	v := r.uint32()
    	prod := uint64(v) * uint64(n)
    	low := uint32(prod)
    	if low < n {
    		thresh := uint32(-int32(n)) % n
    		for low < thresh {
    			v = r.uint32()
    			prod = uint64(v) * uint64(n)
    			low = uint32(prod)
    		}
    	}
    	return uint32(prod >> 32)
    }
    
    // exp2 generates n with probability 1/2^(n+1).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:28:14 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modindex/index_format.txt

    		len(embeds) uint32
    		for each embed:
    			pattern - string offset
    			position - file, offset, line, column - uint32
    		len(directives) uint32
    		for each directive:
    			text - string offset
    			position - file, offset, line, column - uint32
    [string table]
    0xFF (marker)
    
    The following is the format for a single indexed package:
    
    “go index v0\n”
    str uint32 - offset of string table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 13 00:22:50 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/zeroextension_test.go

    	{f: func(a, b uint64) uint64 { op1 := int32(a); op2 := int32(b); return uint64(uint32(op1 / op2)) }, arg1: 0x1, arg2: 0xfffffffeffffffff, res: 0xffffffff, name: "div"},
    	{f: func(a, b uint64) uint64 { op1 := int32(a); op2 := int32(b); return uint64(uint32(op1 * op2)) }, arg1: 0x1, arg2: 0x100000001, res: 0x1, name: "mul"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:38:32 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    //sys	GetLengthSid(sid *SID) (len uint32) = advapi32.GetLengthSid
    //sys	CopySid(destSidLen uint32, destSid *SID, srcSid *SID) (err error) = advapi32.CopySid
    //sys	AllocateAndInitializeSid(identAuth *SidIdentifierAuthority, subAuth byte, subAuth0 uint32, subAuth1 uint32, subAuth2 uint32, subAuth3 uint32, subAuth4 uint32, subAuth5 uint32, subAuth6 uint32, subAuth7 uint32, sid **SID) (err error) = advapi32.AllocateAndInitializeSid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top