Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 3,010 for UInt32 (0.17 sec)

  1. src/runtime/defs_freebsd_riscv64.go

    	frac uint64
    }
    
    type vdsoTimehands struct {
    	algo         uint32
    	gen          uint32
    	scale        uint64
    	offset_count uint32
    	counter_mask uint32
    	offset       bintime
    	boottime     bintime
    	physical     uint32
    	res          [7]uint32
    }
    
    type vdsoTimekeep struct {
    	ver       uint32
    	enabled   uint32
    	current   uint32
    	pad_cgo_0 [4]byte
    }
    
    const (
    	_VDSO_TK_VER_CURR = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/atomic_wasm.go

    	return new
    }
    
    //go:nosplit
    //go:noinline
    func Xchg(ptr *uint32, new uint32) uint32 {
    	old := *ptr
    	*ptr = new
    	return old
    }
    
    //go:nosplit
    //go:noinline
    func Xchg64(ptr *uint64, new uint64) uint64 {
    	old := *ptr
    	*ptr = new
    	return old
    }
    
    //go:nosplit
    //go:noinline
    func Xchgint32(ptr *int32, new int32) int32 {
    	old := *ptr
    	*ptr = new
    	return old
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. src/image/color/ycbcr.go

    	C, M, Y, K uint8
    }
    
    func (c CMYK) RGBA() (uint32, uint32, uint32, uint32) {
    	// This code is a copy of the CMYKToRGB function above, except that it
    	// returns values in the range [0, 0xffff] instead of [0, 0xff].
    
    	w := 0xffff - uint32(c.K)*0x101
    	r := (0xffff - uint32(c.C)*0x101) * w / 0xffff
    	g := (0xffff - uint32(c.M)*0x101) * w / 0xffff
    	b := (0xffff - uint32(c.Y)*0x101) * w / 0xffff
    	return r, g, b, 0xffff
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/atomic_arm.go

    }
    
    // Atomic add and return new value.
    //
    //go:nosplit
    func Xadd(val *uint32, delta int32) uint32 {
    	for {
    		oval := *val
    		nval := oval + uint32(delta)
    		if Cas(val, oval, nval) {
    			return nval
    		}
    	}
    }
    
    //go:noescape
    func Xadduintptr(ptr *uintptr, delta uintptr) uintptr
    
    //go:nosplit
    func Xchg(addr *uint32, v uint32) uint32 {
    	for {
    		old := *addr
    		if Cas(addr, old, v) {
    			return old
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/testdata/arith_test.go

    	return a - b>>3
    }
    
    //go:noinline
    func rsbshiftRL_ssa(a, b uint32) uint32 {
    	return a>>3 - b
    }
    
    //go:noinline
    func andshiftRL_ssa(a, b uint32) uint32 {
    	return a & (b >> 3)
    }
    
    //go:noinline
    func orshiftRL_ssa(a, b uint32) uint32 {
    	return a | b>>3
    }
    
    //go:noinline
    func xorshiftRL_ssa(a, b uint32) uint32 {
    	return a ^ b>>3
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:30:59 UTC 2023
    - 43.5K bytes
    - Viewed (0)
  6. src/internal/runtime/atomic/atomic_mipsx.go

    			return old
    		}
    	}
    }
    
    //go:noescape
    func Xadd(ptr *uint32, delta int32) uint32
    
    //go:noescape
    func Xadduintptr(ptr *uintptr, delta uintptr) uintptr
    
    //go:noescape
    func Xchg(ptr *uint32, new uint32) uint32
    
    //go:noescape
    func Xchguintptr(ptr *uintptr, new uintptr) uintptr
    
    //go:noescape
    func Load(ptr *uint32) uint32
    
    //go:noescape
    func Load8(ptr *uint8) uint8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 20:08:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. src/runtime/defs_freebsd_arm64.go

    	frac uint64
    }
    
    type vdsoTimehands struct {
    	algo         uint32
    	gen          uint32
    	scale        uint64
    	offset_count uint32
    	counter_mask uint32
    	offset       bintime
    	boottime     bintime
    	physical     uint32
    	res          [7]uint32
    }
    
    type vdsoTimekeep struct {
    	ver       uint32
    	enabled   uint32
    	current   uint32
    	pad_cgo_0 [4]byte
    }
    
    const (
    	_VDSO_TK_VER_CURR = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. src/runtime/defs_freebsd_arm.go

    	frac uint64
    }
    
    type vdsoTimehands struct {
    	algo         uint32
    	gen          uint32
    	scale        uint64
    	offset_count uint32
    	counter_mask uint32
    	offset       bintime
    	boottime     bintime
    	physical     uint32
    	res          [7]uint32
    }
    
    type vdsoTimekeep struct {
    	ver       uint32
    	enabled   uint32
    	current   uint32
    	pad_cgo_0 [4]byte
    }
    
    const (
    	_VDSO_TK_VER_CURR = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/runtime/sizeclasses.go

    ^uint32(0)/416 + 1, ^uint32(0)/448 + 1, ^uint32(0)/480 + 1, ^uint32(0)/512 + 1, ^uint32(0)/576 + 1, ^uint32(0)/640 + 1, ^uint32(0)/704 + 1, ^uint32(0)/768 + 1, ^uint32(0)/896 + 1, ^uint32(0)/1024 + 1, ^uint32(0)/1152 + 1, ^uint32(0)/1280 + 1, ^uint32(0)/1408 + 1, ^uint32(0)/1536 + 1, ^uint32(0)/1792 + 1, ^uint32(0)/2048 + 1, ^uint32(0)/2304 + 1, ^uint32(0)/2688 + 1, ^uint32(0)/3072 + 1, ^uint32(0)/3200 + 1, ^uint32(0)/3456 + 1, ^uint32(0)/4096 + 1, ^uint32(0)/4864 + 1, ^uint32(0)/5376 + 1, ^uint32(0)/6144 +...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. src/debug/gosym/pclntab.go

    	t.quantum = uint32(t.Data[6])
    	t.ptrsize = uint32(t.Data[7])
    
    	offset := func(word uint32) uint64 {
    		return t.uintptr(t.Data[8+word*t.ptrsize:])
    	}
    	data := func(word uint32) []byte {
    		return t.Data[offset(word):]
    	}
    
    	switch possibleVersion {
    	case ver118, ver120:
    		t.nfunctab = uint32(offset(0))
    		t.nfiletab = uint32(offset(1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
Back to top