Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,130 for quint8 (0.12 sec)

  1. src/unicode/graphic.go

    // spaces, from categories [L], [M], [N], [P], [S], [Zs].
    func IsGraphic(r rune) bool {
    	// We convert to uint32 to avoid the extra test for negative,
    	// and in the index we convert to uint8 to avoid the range check.
    	if uint32(r) <= MaxLatin1 {
    		return properties[uint8(r)]&pg != 0
    	}
    	return In(r, GraphicRanges...)
    }
    
    // IsPrint reports whether the rune is defined as printable by Go. Such
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/modify_io_nodes.mlir

    // INT8-NEXT: return %[[softmax]] : tensor<1x401408x!quant.uniform<i8:f32, 3.906250e-03>>
    
    // UINT8-LABEL: func @modified(%arg0: tensor<1x224x224x3x!quant.uniform<u8:f32, 7.812500e-03:128>>) -> tensor<1x401408x!quant.uniform<u8:f32, 3.906250e-03:128>>
    // UINT8-NEXT: %[[shape:.*]] = arith.constant dense<[1, 401408]> : tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/const1.go

    )
    
    const (
    	_ uint8 = 0 /* ERROR "overflows" */ - 1
    	_ uint8 = 0
    	_ uint8 = maxUint8
    	_ uint8 = maxUint8 /* ERROR "overflows" */ + 1
    	_ uint8 = smallestFloat64 /* ERROR "truncated" */
    
    	_ = uint8(0 /* ERROR "overflows" */ - 1)
    	_ = uint8(0)
    	_ = uint8(maxUint8)
    	_ = uint8(maxUint8 /* ERROR "overflows" */ + 1)
    	_ = uint8(smallestFloat64 /* ERROR "cannot convert" */)
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. src/cmd/internal/goobj/objfile.go

    //
    //	RefFlags struct {
    //	   Sym   symRef
    //	   Flag  uint8
    //	   Flag2 uint8
    //	}
    type RefFlags [RefFlagsSize]byte
    
    const RefFlagsSize = 8 + 1 + 1
    
    func (r *RefFlags) Sym() SymRef {
    	return SymRef{binary.LittleEndian.Uint32(r[:]), binary.LittleEndian.Uint32(r[4:])}
    }
    func (r *RefFlags) Flag() uint8  { return r[8] }
    func (r *RefFlags) Flag2() uint8 { return r[9] }
    
    func (r *RefFlags) SetSym(x SymRef) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. src/crypto/subtle/constant_time_test.go

    			t.Errorf("#%d: %d <= %d gave %d, expected %d", i, test.x, test.y, result, test.result)
    		}
    	}
    }
    
    var benchmarkGlobal uint8
    
    func BenchmarkConstantTimeByteEq(b *testing.B) {
    	var x, y uint8
    
    	for i := 0; i < b.N; i++ {
    		x, y = uint8(ConstantTimeByteEq(x, y)), x
    	}
    
    	benchmarkGlobal = x
    }
    
    func BenchmarkConstantTimeEq(b *testing.B) {
    	var x, y int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 03:47:57 UTC 2017
    - 2.9K bytes
    - Viewed (0)
  6. src/internal/zstd/fse.go

    	for i, n := range norm {
    		if n >= 0 {
    			next[uint8(i)] = uint16(n)
    		} else {
    			table[highThreshold].sym = uint8(i)
    			highThreshold--
    			next[uint8(i)] = 1
    		}
    	}
    
    	pos := 0
    	step := (tableSize >> 1) + (tableSize >> 3) + 3
    	mask := tableSize - 1
    	for i, n := range norm {
    		for j := 0; j < int(n); j++ {
    			table[pos].sym = uint8(i)
    			pos = (pos + step) & mask
    			for pos > highThreshold {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:44:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  7. src/net/interface_aix.go

    import (
    	"internal/poll"
    	"internal/syscall/unix"
    	"syscall"
    	"unsafe"
    )
    
    type rawSockaddrDatalink struct {
    	Len    uint8
    	Family uint8
    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	Data   [120]byte
    }
    
    type ifreq struct {
    	Name [16]uint8
    	Ifru [16]byte
    }
    
    const _KINFO_RT_IFLIST = (0x1 << 8) | 3 | (1 << 30)
    
    const _RTAX_NETMASK = 2
    const _RTAX_IFA = 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 27 05:42:03 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/atomic_arm.go

    }
    
    //go:nosplit
    func Or8(addr *uint8, v uint8) {
    	// Align down to 4 bytes and use 32-bit CAS.
    	uaddr := uintptr(unsafe.Pointer(addr))
    	addr32 := (*uint32)(unsafe.Pointer(uaddr &^ 3))
    	word := uint32(v) << ((uaddr & 3) * 8) // little endian
    	for {
    		old := *addr32
    		if Cas(addr32, old, old|word) {
    			return
    		}
    	}
    }
    
    //go:nosplit
    func And8(addr *uint8, v uint8) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/seh.go

    	// is the number of operations.
    	nodes := uint8(2)
    	buf := newsehbuf(ctxt, nodes)
    	buf.write8(flags | 1)            // Flags + version
    	buf.write8(uint8(movbp.Link.Pc)) // Size of prolog
    	buf.write8(nodes)                // Count of nodes
    	buf.write8(SEH_REG_BP)           // FP register
    
    	// Notes are written in reverse order of appearance.
    	buf.write8(uint8(movbp.Link.Pc))
    	buf.writecode(UWOP_SET_FPREG, 0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. api/go1.15.txt

    pkg bufio, var ErrBadReadCount error
    pkg crypto, method (Hash) String() string
    pkg crypto/ecdsa, func SignASN1(io.Reader, *PrivateKey, []uint8) ([]uint8, error)
    pkg crypto/ecdsa, func VerifyASN1(*PublicKey, []uint8, []uint8) bool
    pkg crypto/ecdsa, method (*PrivateKey) Equal(crypto.PrivateKey) bool
    pkg crypto/ecdsa, method (*PublicKey) Equal(crypto.PublicKey) bool
    pkg crypto/ed25519, method (PrivateKey) Equal(crypto.PrivateKey) bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 17 02:15:01 UTC 2020
    - 7.6K bytes
    - Viewed (0)
Back to top