Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,691 for UInt32 (0.51 sec)

  1. src/archive/tar/stat_unix.go

    		dev := uint64(sys.Rdev) // May be int32 or uint32
    		switch runtime.GOOS {
    		case "aix":
    			var major, minor uint32
    			major = uint32((dev & 0x3fffffff00000000) >> 32)
    			minor = uint32((dev & 0x00000000ffffffff) >> 0)
    			h.Devmajor, h.Devminor = int64(major), int64(minor)
    		case "linux":
    			// Copied from golang.org/x/sys/unix/dev_linux.go.
    			major := uint32((dev & 0x00000000000fff00) >> 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/internal/obj/arm/asm5.go

    			obj.ANOP:
    			break
    		}
    	}
    }
    
    func (c *ctxt5) asmout(p *obj.Prog, o *Optab, out []uint32) {
    	c.printp = p
    	o1 := uint32(0)
    	o2 := uint32(0)
    	o3 := uint32(0)
    	o4 := uint32(0)
    	o5 := uint32(0)
    	o6 := uint32(0)
    	if false { /*debug['P']*/
    		fmt.Printf("%x: %v\ttype %d\n", uint32(p.Pc), p, o.type_)
    	}
    	switch o.type_ {
    	default:
    		c.ctxt.Diag("%v: unknown asm %d", p, o.type_)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  9. test/codegen/shift.go

    }
    
    func rsh5Mask32Ux64(v uint32, s uint64) uint32 {
    	// riscv64:"SRLW",-"AND\t",-"SLTIU",-"SRL\t"
    	return v >> (s & 31)
    }
    
    func rshMask32x64(v int32, s uint64) int32 {
    	// arm64:"ASR",-"AND"
    	// ppc64x:"ISEL",-"ORN"
    	// riscv64:"SRAW","OR","SLTIU"
    	// s390x:-"RISBGZ",-"AND",-"LOCGR"
    	return v >> (s & 63)
    }
    
    func rsh5Mask32x64(v int32, s uint64) int32 {
    	// riscv64:"SRAW",-"OR",-"SLTIU"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm9_gtables.go

    	o0 |= uint32(p.To.Reg&0x1f) << 21      // T
    	o0 |= uint32(p.From.Offset&0x1f) << 11 // UIM
    	out[0] = o0
    }
    
    // lxvp XTp,DQ(RA)
    func type_lxvp(c *ctxt9, p *obj.Prog, t *Optab, out *[5]uint32) {
    	o0 := GenOpcodes[p.As-AXXSETACCZ]
    	o0 |= uint32((p.To.Reg>>5)&0x1) << 21       // TX
    	o0 |= uint32((p.To.Reg>>1)&0xf) << 22       // Tp
    	o0 |= uint32((p.From.Offset>>4)&0xfff) << 4 // DQ
    	o0 |= uint32(p.From.Reg&0x1f) << 16         // RA
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 20:18:50 UTC 2022
    - 42.6K bytes
    - Viewed (0)
Back to top