Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 550 for uint16 (0.14 sec)

  1. src/image/draw/bench_test.go

    		yy := make([]uint8, srcw*srch)
    		cb := make([]uint8, srcw*srch)
    		cr := make([]uint8, srcw*srch)
    		for i := range yy {
    			yy[i] = uint8(3 * i % 0x100)
    			cb[i] = uint8(5 * i % 0x100)
    			cr[i] = uint8(7 * i % 0x100)
    		}
    		src = &image.YCbCr{
    			Y:              yy,
    			Cb:             cb,
    			Cr:             cr,
    			YStride:        srcw,
    			CStride:        srcw,
    			SubsampleRatio: image.YCbCrSubsampleRatio444,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    // for more information on the format.
    func compInfo(v uint16, sz int) Properties {
    	if v == 0 {
    		return Properties{size: uint8(sz)}
    	} else if v >= 0x8000 {
    		p := Properties{
    			size:  uint8(sz),
    			ccc:   uint8(v),
    			tccc:  uint8(v),
    			flags: qcInfo(v >> 8),
    		}
    		if p.ccc > 0 || p.combinesBackward() {
    			p.nLead = uint8(p.flags & 0x3)
    		}
    		return p
    	}
    	// has decomposition
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/util/testing/fake_test.go

    		Address:  netutils.ParseIPSloppy("10::40"),
    		Port:     uint16(8080),
    		Protocol: string("UDP"),
    	}
    	err = fake.AddVirtualServer(vs2)
    	if err != nil {
    		t.Errorf("Unexpected error when add virtual server, error: %v", err)
    	}
    	// Add another virtual server
    	vs3 := &utilipvs.VirtualServer{
    		Address:  netutils.ParseIPSloppy("10::40"),
    		Port:     uint16(7777),
    		Protocol: string("SCTP"),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. src/internal/fuzz/trace.go

    func libfuzzerTraceCmp1(arg0, arg1 uint8, fakePC uint)  {}
    func libfuzzerTraceCmp2(arg0, arg1 uint16, fakePC uint) {}
    func libfuzzerTraceCmp4(arg0, arg1 uint32, fakePC uint) {}
    func libfuzzerTraceCmp8(arg0, arg1 uint64, fakePC uint) {}
    
    func libfuzzerTraceConstCmp1(arg0, arg1 uint8, fakePC uint)  {}
    func libfuzzerTraceConstCmp2(arg0, arg1 uint16, fakePC uint) {}
    func libfuzzerTraceConstCmp4(arg0, arg1 uint32, fakePC uint) {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 00:12:53 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    // for more information on the format.
    func compInfo(v uint16, sz int) Properties {
    	if v == 0 {
    		return Properties{size: uint8(sz)}
    	} else if v >= 0x8000 {
    		p := Properties{
    			size:  uint8(sz),
    			ccc:   uint8(v),
    			tccc:  uint8(v),
    			flags: qcInfo(v >> 8),
    		}
    		if p.ccc > 0 || p.combinesBackward() {
    			p.nLead = uint8(p.flags & 0x3)
    		}
    		return p
    	}
    	// has decomposition
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. test/typeparam/absdiffimp.dir/a.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package a
    
    type Numeric interface {
    	~int | ~int8 | ~int16 | ~int32 | ~int64 |
    		~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr |
    		~float32 | ~float64 |
    		~complex64 | ~complex128
    }
    
    // numericAbs matches numeric types with an Abs method.
    type numericAbs[T any] interface {
    	Numeric
    	Abs() T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 00:11:24 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  7. src/crypto/tls/prf.go

    		panic("unknown version")
    	}
    }
    
    func prfForVersion(version uint16, suite *cipherSuite) func(result, secret, label, seed []byte) {
    	prf, _ := prfAndHashForVersion(version, suite)
    	return prf
    }
    
    // masterFromPreMasterSecret generates the master secret from the pre-master
    // secret. See RFC 5246, Section 8.1.
    func masterFromPreMasterSecret(version uint16, suite *cipherSuite, preMasterSecret, clientRandom, serverRandom []byte) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 16:29:49 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. src/runtime/defs_freebsd_arm.go

    	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
    
    	vdsoTimehandsSize = 0x58
    	vdsoTimekeepSize  = 0x10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. logger/sql.go

    var numericPlaceholderRe = regexp.MustCompile(`\$\d+\$`)
    
    func isNumeric(k reflect.Kind) bool {
    	switch k {
    	case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
    		return true
    	case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
    		return true
    	case reflect.Float32, reflect.Float64:
    		return true
    	default:
    		return false
    	}
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 21 08:00:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. src/runtime/os_wasip1.go

    func random_get(buf unsafe.Pointer, bufLen size) errno
    
    type eventtype = uint8
    
    const (
    	eventtypeClock eventtype = iota
    	eventtypeFdRead
    	eventtypeFdWrite
    )
    
    type eventrwflags = uint16
    
    const (
    	fdReadwriteHangup eventrwflags = 1 << iota
    )
    
    type userdata = uint64
    
    // The go:wasmimport directive currently does not accept values of type uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top