Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,130 for quint8 (0.56 sec)

  1. 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)
  2. 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)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_386.go

    	Length  int64
    	Pno     int32
    	Devname [64]uint8
    	Volname [64]uint8
    }
    
    const (
    	BLKPG = 0x1269
    )
    
    type CryptoUserAlg struct {
    	Name        [64]int8
    	Driver_name [64]int8
    	Module_name [64]int8
    	Type        uint32
    	Mask        uint32
    	Refcnt      uint32
    	Flags       uint32
    }
    
    type CryptoStatAEAD struct {
    	Type         [64]int8
    	Encrypt_cnt  uint64
    	Encrypt_tlen uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go

    	Dev_idx          uint32
    	Target_idx       uint32
    	Nfc_protocol     uint32
    	Dsap             uint8
    	Ssap             uint8
    	Service_name     [63]uint8
    	Service_name_len uint64
    }
    
    type RawSockaddr struct {
    	Family uint16
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [96]int8
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint64
    }
    
    type Msghdr struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go

    	Pno     int32
    	Devname [64]uint8
    	Volname [64]uint8
    	_       [4]byte
    }
    
    const (
    	BLKPG = 0x1269
    )
    
    type CryptoUserAlg struct {
    	Name        [64]int8
    	Driver_name [64]int8
    	Module_name [64]int8
    	Type        uint32
    	Mask        uint32
    	Refcnt      uint32
    	Flags       uint32
    }
    
    type CryptoStatAEAD struct {
    	Type         [64]int8
    	Encrypt_cnt  uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. api/go1.19.txt

    pkg fmt, func Append([]uint8, ...interface{}) []uint8 #47579
    pkg fmt, func Appendf([]uint8, string, ...interface{}) []uint8 #47579
    pkg fmt, func Appendln([]uint8, ...interface{}) []uint8 #47579
    pkg go/doc, method (*Package) HTML(string) []uint8 #51082
    pkg go/doc, method (*Package) Markdown(string) []uint8 #51082
    pkg go/doc, method (*Package) Parser() *comment.Parser #51082
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 17.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_to_mhlo_int_test.cc

        // tf.Const.
        TF_ASSIGN_OR_RETURN(
            auto module_op,
            ReplaceFuncArgsByConstant(program, arguments, /*use_mhlo_const=*/true));
    
        // Run the Convert TF Quant Types, TF Quant -> MHLO Quant and MHLO Quant ->
        // MHLO int passes.
        PassManager pm(module_op->getContext());
        pm.addNestedPass<func::FuncOp>(CreateConvertTFQuantTypesPass());
        AddQuantizationLoweringPasses(pm);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 01:03:21 UTC 2024
    - 35.8K 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/image/png/writer.go

    				i += 6
    			}
    		case cbTCA16:
    			// Convert from image.Image (which is alpha-premultiplied) to PNG's non-alpha-premultiplied.
    			for x := b.Min.X; x < b.Max.X; x++ {
    				c := color.NRGBA64Model.Convert(m.At(x, y)).(color.NRGBA64)
    				cr[0][i+0] = uint8(c.R >> 8)
    				cr[0][i+1] = uint8(c.R)
    				cr[0][i+2] = uint8(c.G >> 8)
    				cr[0][i+3] = uint8(c.G)
    				cr[0][i+4] = uint8(c.B >> 8)
    				cr[0][i+5] = uint8(c.B)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. 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)
Back to top