Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 241 for uimm16 (0.13 sec)

  1. src/runtime/defs_freebsd_386.go

    	_EV_ERROR     = 0x4000
    	_EV_EOF       = 0x8000
    	_EVFILT_READ  = -0x1
    	_EVFILT_WRITE = -0x2
    	_EVFILT_USER  = -0xb
    
    	_NOTE_TRIGGER = 0x1000000
    )
    
    type rtprio struct {
    	_type uint16
    	prio  uint16
    }
    
    type thrparam struct {
    	start_func uintptr
    	arg        unsafe.Pointer
    	stack_base uintptr
    	stack_size uintptr
    	tls_base   unsafe.Pointer
    	tls_size   uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. src/runtime/defs_freebsd_riscv64.go

    	_EV_ERROR     = 0x4000
    	_EV_EOF       = 0x8000
    	_EVFILT_READ  = -0x1
    	_EVFILT_WRITE = -0x2
    	_EVFILT_USER  = -0xb
    
    	_NOTE_TRIGGER = 0x1000000
    )
    
    type rtprio struct {
    	_type uint16
    	prio  uint16
    }
    
    type thrparam struct {
    	start_func uintptr
    	arg        unsafe.Pointer
    	stack_base uintptr
    	stack_size uintptr
    	tls_base   unsafe.Pointer
    	tls_size   uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/ztunnel/configdump/api.go

    	DestinationIps      []string      `json:"destinationIps,omitempty"`
    	NotDestinationIps   []string      `json:"notDestinationIps,omitempty"`
    	DestinationPorts    []uint16      `json:"destinationPorts,omitempty"`
    	NotDestinationPorts []uint16      `json:"notDestinationPorts,omitempty"`
    }
    
    type StringMatch struct {
    	Exact    string `json:"Exact,omitempty"`
    	Suffix   string `json:"Suffix,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. src/runtime/defs_freebsd_arm.go

    	_EV_ERROR     = 0x4000
    	_EV_EOF       = 0x8000
    	_EVFILT_READ  = -0x1
    	_EVFILT_WRITE = -0x2
    	_EVFILT_USER  = -0xb
    
    	_NOTE_TRIGGER = 0x1000000
    )
    
    type rtprio struct {
    	_type uint16
    	prio  uint16
    }
    
    type thrparam struct {
    	start_func uintptr
    	arg        unsafe.Pointer
    	stack_base uintptr
    	stack_size uintptr
    	tls_base   unsafe.Pointer
    	tls_size   uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. src/runtime/defs_freebsd_arm64.go

    	_EV_ERROR     = 0x4000
    	_EV_EOF       = 0x8000
    	_EVFILT_READ  = -0x1
    	_EVFILT_WRITE = -0x2
    	_EVFILT_USER  = -0xb
    
    	_NOTE_TRIGGER = 0x1000000
    )
    
    type rtprio struct {
    	_type uint16
    	prio  uint16
    }
    
    type thrparam struct {
    	start_func uintptr
    	arg        unsafe.Pointer
    	stack_base uintptr
    	stack_size uintptr
    	tls_base   unsafe.Pointer
    	tls_size   uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/image/gif/writer.go

    		return
    	}
    	_, e.err = io.WriteString(e.w, "GIF89a")
    	if e.err != nil {
    		return
    	}
    
    	// Logical screen width and height.
    	byteorder.LePutUint16(e.buf[0:2], uint16(e.g.Config.Width))
    	byteorder.LePutUint16(e.buf[2:4], uint16(e.g.Config.Height))
    	e.write(e.buf[:4])
    
    	if p, ok := e.g.Config.ColorModel.(color.Palette); ok && len(p) > 0 {
    		paddedSize := log2(len(p)) // Size of Global Color Table: 2^(1+n).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. src/crypto/tls/boring_test.go

    		test(t, "VersionTLS12", VersionTLS12, "")
    		test(t, "VersionTLS13", VersionTLS13, "supported versions")
    	})
    }
    
    func isBoringVersion(v uint16) bool {
    	return v == VersionTLS12
    }
    
    func isBoringCipherSuite(id uint16) bool {
    	switch id {
    	case TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
    		TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
    		TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. src/net/dnsclient.go

    		s += "."
    	}
    	return s
    }
    
    // An SRV represents a single DNS SRV record.
    type SRV struct {
    	Target   string
    	Port     uint16
    	Priority uint16
    	Weight   uint16
    }
    
    // byPriorityWeight sorts SRV records by ascending priority and weight.
    type byPriorityWeight []*SRV
    
    // shuffleByWeight shuffles SRV records by weight using the algorithm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/generic.rules

    	&& x.Op != OpConst16 && sdivisibleOK16(c)
     => (Leq16U
    			(RotateLeft16 <typ.UInt16>
    				(Add16 <typ.UInt16>
    					(Mul16 <typ.UInt16>
    						(Const16 <typ.UInt16> [int16(sdivisible16(c).m)])
    						x)
    					(Const16 <typ.UInt16> [int16(sdivisible16(c).a)])
    				)
    				(Const16 <typ.UInt16> [int16(16-sdivisible16(c).k)])
    			)
    			(Const16 <typ.UInt16> [int16(sdivisible16(c).max)])
    		)
    
    (Eq32 x (Mul32 (Const32 [c])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  10. src/database/sql/convert_test.go

    		// True bools
    		{s: true, d: &scanbool, wantbool: true},
    		{s: "True", d: &scanbool, wantbool: true},
    		{s: "TRUE", d: &scanbool, wantbool: true},
    		{s: "1", d: &scanbool, wantbool: true},
    		{s: 1, d: &scanbool, wantbool: true},
    		{s: int64(1), d: &scanbool, wantbool: true},
    		{s: uint16(1), d: &scanbool, wantbool: true},
    
    		// False bools
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 20:23:22 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top