Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 258 for quint8 (0.1 sec)

  1. api/go1.22.txt

    pkg encoding/base32, method (*Encoding) AppendDecode([]uint8, []uint8) ([]uint8, error) #53693
    pkg encoding/base32, method (*Encoding) AppendEncode([]uint8, []uint8) []uint8 #53693
    pkg encoding/base64, method (*Encoding) AppendDecode([]uint8, []uint8) ([]uint8, error) #53693
    pkg encoding/base64, method (*Encoding) AppendEncode([]uint8, []uint8) []uint8 #53693
    pkg encoding/hex, func AppendDecode([]uint8, []uint8) ([]uint8, error) #53693
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 20:54:27 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/atomic_ppc64x.go

    //go:noescape
    func LoadAcq64(ptr *uint64) uint64
    
    //go:noescape
    func LoadAcquintptr(ptr *uintptr) uintptr
    
    //go:noescape
    func And8(ptr *uint8, val uint8)
    
    //go:noescape
    func Or8(ptr *uint8, val uint8)
    
    // NOTE: Do not add atomicxor8 (XOR is not idempotent).
    
    //go:noescape
    func And(ptr *uint32, val uint32)
    
    //go:noescape
    func Or(ptr *uint32, val uint32)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/atomic_riscv64.go

    //go:noescape
    func LoadAcq64(ptr *uint64) uint64
    
    //go:noescape
    func LoadAcquintptr(ptr *uintptr) uintptr
    
    //go:noescape
    func Or8(ptr *uint8, val uint8)
    
    //go:noescape
    func And8(ptr *uint8, val uint8)
    
    //go:noescape
    func And(ptr *uint32, val uint32)
    
    //go:noescape
    func Or(ptr *uint32, val uint32)
    
    //go:noescape
    func And32(ptr *uint32, val uint32) uint32
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    type Properties struct {
    	pos   uint8  // start position in reorderBuffer; used in composition.go
    	size  uint8  // length of UTF-8 encoding of this rune
    	ccc   uint8  // leading canonical combining class (ccc if not decomposition)
    	tccc  uint8  // trailing canonical combining class (ccc if not decomposition)
    	nLead uint8  // number of leading non-starters.
    	flags qcInfo // quick check flags
    	index uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. src/internal/runtime/atomic/atomic_mips64x.go

    //go:noescape
    func LoadAcq64(ptr *uint64) uint64
    
    //go:noescape
    func LoadAcquintptr(ptr *uintptr) uintptr
    
    //go:noescape
    func And8(ptr *uint8, val uint8)
    
    //go:noescape
    func Or8(ptr *uint8, val uint8)
    
    // NOTE: Do not add atomicxor8 (XOR is not idempotent).
    
    //go:noescape
    func And(ptr *uint32, val uint32)
    
    //go:noescape
    func Or(ptr *uint32, val uint32)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. src/internal/runtime/atomic/atomic_s390x.go

    	*ptr = val
    }
    
    //go:nosplit
    //go:noinline
    func StoreReluintptr(ptr *uintptr, val uintptr) {
    	*ptr = val
    }
    
    //go:noescape
    func And8(ptr *uint8, val uint8)
    
    //go:noescape
    func Or8(ptr *uint8, val uint8)
    
    // NOTE: Do not add atomicxor8 (XOR is not idempotent).
    
    //go:noescape
    func And(ptr *uint32, val uint32)
    
    //go:noescape
    func Or(ptr *uint32, val uint32)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/internal/runtime/atomic/atomic_mipsx.go

    //go:noescape
    func Load8(ptr *uint8) uint8
    
    // NO go:noescape annotation; *ptr escapes if result escapes (#31525)
    func Loadp(ptr unsafe.Pointer) unsafe.Pointer
    
    //go:noescape
    func LoadAcq(ptr *uint32) uint32
    
    //go:noescape
    func LoadAcquintptr(ptr *uintptr) uintptr
    
    //go:noescape
    func And8(ptr *uint8, val uint8)
    
    //go:noescape
    func Or8(ptr *uint8, val uint8)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 20:08:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/atomic_test.go

    }
    
    func TestAnd8(t *testing.T) {
    	// Basic sanity check.
    	x := uint8(0xff)
    	for i := uint8(0); i < 8; i++ {
    		atomic.And8(&x, ^(1 << i))
    		if r := uint8(0xff) << (i + 1); x != r {
    			t.Fatalf("clearing bit %#x: want %#x, got %#x", uint8(1<<i), r, x)
    		}
    	}
    
    	// Set every bit in array to 1.
    	a := make([]uint8, 1<<12)
    	for i := range a {
    		a[i] = 0xff
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. src/crypto/rc4/rc4.go

    	}
    	i, j := c.i, c.j
    	_ = dst[len(src)-1]
    	dst = dst[:len(src)] // eliminate bounds check from loop
    	for k, v := range src {
    		i += 1
    		x := c.s[i]
    		j += uint8(x)
    		y := c.s[j]
    		c.s[i], c.s[j] = y, x
    		dst[k] = v ^ uint8(c.s[uint8(x+y)])
    	}
    	c.i, c.j = i, j
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. src/image/color/color.go

    	if a == 0xffff {
    		return NRGBA{uint8(r >> 8), uint8(g >> 8), uint8(b >> 8), 0xff}
    	}
    	if a == 0 {
    		return NRGBA{0, 0, 0, 0}
    	}
    	// Since Color.RGBA returns an alpha-premultiplied color, we should have r <= a && g <= a && b <= a.
    	r = (r * 0xffff) / a
    	g = (g * 0xffff) / a
    	b = (b * 0xffff) / a
    	return NRGBA{uint8(r >> 8), uint8(g >> 8), uint8(b >> 8), uint8(a >> 8)}
    }
    
    func nrgba64Model(c Color) Color {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top