Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 378 for quint8 (0.11 sec)

  1. src/syscall/ztypes_linux_arm64.go

    	Family    uint8
    	Prefixlen uint8
    	Flags     uint8
    	Scope     uint8
    	Index     uint32
    }
    
    type RtMsg struct {
    	Family   uint8
    	Dst_len  uint8
    	Src_len  uint8
    	Tos      uint8
    	Table    uint8
    	Protocol uint8
    	Scope    uint8
    	Type     uint8
    	Flags    uint32
    }
    
    type RtNexthop struct {
    	Len     uint16
    	Flags   uint8
    	Hops    uint8
    	Ifindex int32
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  2. src/image/color/ycbcr.go

    		r = (r * 0xffff) / a
    		g = (g * 0xffff) / a
    		b = (b * 0xffff) / a
    	}
    
    	y, u, v := RGBToYCbCr(uint8(r>>8), uint8(g>>8), uint8(b>>8))
    	return NYCbCrA{YCbCr{Y: y, Cb: u, Cr: v}, uint8(a >> 8)}
    }
    
    // RGBToCMYK converts an RGB triple to a CMYK quadruple.
    func RGBToCMYK(r, g, b uint8) (uint8, uint8, uint8, uint8) {
    	rr := uint32(r)
    	gg := uint32(g)
    	bb := uint32(b)
    	w := rr
    	if w < gg {
    		w = gg
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. src/image/image.go

    	s := p.Pix[i : i+8 : i+8] // Small cap improves performance, see https://golang.org/issue/27857
    	s[0] = uint8(c1.R >> 8)
    	s[1] = uint8(c1.R)
    	s[2] = uint8(c1.G >> 8)
    	s[3] = uint8(c1.G)
    	s[4] = uint8(c1.B >> 8)
    	s[5] = uint8(c1.B)
    	s[6] = uint8(c1.A >> 8)
    	s[7] = uint8(c1.A)
    }
    
    func (p *RGBA64) SetRGBA64(x, y int, c color.RGBA64) {
    	if !(Point{x, y}.In(p.Rect)) {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 34.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/shift_test.go

    		{8, true, 32, false, func(n int8, s uint32) int8 { return n >> s }},
    		{8, false, 32, false, func(n uint8, s uint32) uint8 { return n >> s }},
    		{8, true, 16, true, func(n int8, s uint16) int8 { return n << s }},
    		{8, true, 16, false, func(n int8, s uint16) int8 { return n >> s }},
    		{8, false, 16, false, func(n uint8, s uint16) uint8 { return n >> s }},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 22:26:39 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  5. src/internal/xcoff/xcoff.go

    	Xfsize   uint32 // Size of function in bytes
    	Xendndx  uint32 // Symbol table index of next entry
    	Xpad     uint8  // Unused
    	Xauxtype uint8  // Type of auxiliary entry
    }
    
    type AuxSect64 struct {
    	Xscnlen  uint64 // section length
    	Xnreloc  uint64 // Num RLDs
    	pad      uint8
    	Xauxtype uint8 // Type of auxiliary entry
    }
    
    // csect Auxiliary Entry.
    type AuxCSect32 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/prepare-tf-fake-quant.mlir

      %1 = "tfl.quantize"(%0) {qtype = tensor<8x!quant.uniform<u8:f32, 1.000000e+00>>} : (tensor<8xf32>) -> tensor<8x!quant.uniform<u8:f32, 1.000000e+00>>
      func.return %1 : tensor<8x!quant.uniform<u8:f32, 1.000000e+00>>
    
    // CHECK:  %0 = "tf.FakeQuantWithMinMaxVars"(%arg0, %cst, %cst_0) <{narrow_range = false, num_bits = 5 : i64}>
    // CHECK:  %1 = "tfl.quantize"(%0) <{qtype = tensor<8x!quant.uniform<u8:f32, 1.000000e+00>>}>
    // CHECK:  return %1
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	Att_id           [4]uint8
    	Att_version      uint16
    	Att_res01        [2]uint8
    	Att_setflags1    uint8
    	Att_setflags2    uint8
    	Att_setflags3    uint8
    	Att_setflags4    uint8
    	Att_mode         uint32
    	Att_uid          uint32
    	Att_gid          uint32
    	Att_opaquemask   [3]uint8
    	Att_visblmaskres uint8
    	Att_opaque       [3]uint8
    	Att_visibleres   uint8
    	Att_size_h       uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top