Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for uimm16 (0.4 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    			rt = REGZERO
    		}
    		if r == obj.REG_NONE {
    			r = rt
    		}
    		o1 |= (uint32(rf&31) << 16) | (uint32(r&31) << 5) | uint32(rt&31)
    
    	case 2: /* add/sub $(uimm12|uimm24)[,R],R; cmp $(uimm12|uimm24),R */
    		if p.To.Reg == REG_RSP && isADDSop(p.As) {
    			c.ctxt.Diag("illegal destination register: %v\n", p)
    		}
    		o1 = c.opirr(p, p.As)
    
    		rt, r := p.To.Reg, p.Reg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    type DNSSRVData struct {
    	Target   *uint16
    	Priority uint16
    	Weight   uint16
    	Port     uint16
    	Pad      uint16
    }
    
    type DNSPTRData struct {
    	Host *uint16
    }
    
    type DNSMXData struct {
    	NameExchange *uint16
    	Preference   uint16
    	Pad          uint16
    }
    
    type DNSTXTData struct {
    	StringCount uint16
    	StringArray [1]*uint16
    }
    
    type DNSRecord struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func CreateService(mgr Handle, serviceName *uint16, displayName *uint16, access uint32, srvType uint32, startType uint32, errCtl uint32, pathName *uint16, loadOrderGroup *uint16, tagId *uint32, dependencies *uint16, serviceStartName *uint16, password *uint16) (handle Handle, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  4. 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)
  5. pkg/proxy/ipvs/proxier_test.go

    						Protocol:  "TCP",
    						Port:      uint16(80),
    						Scheduler: "rr",
    					},
    					{
    						IP:       "100.101.102.103",
    						Port:     3001,
    						Protocol: "TCP",
    					}: {
    						Address:   netutils.ParseIPSloppy("100.101.102.103"),
    						Protocol:  "TCP",
    						Port:      uint16(3001),
    						Scheduler: "rr",
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  6. src/debug/elf/elf.go

    	Ehsize    uint16          /* Size of ELF header in bytes. */
    	Phentsize uint16          /* Size of program header entry. */
    	Phnum     uint16          /* Number of program header entries. */
    	Shentsize uint16          /* Size of section header entry. */
    	Shnum     uint16          /* Number of section header entries. */
    	Shstrndx  uint16          /* Section name strings section. */
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    	{V(float64(69)), V(int16(69))},
    	{V(uint16(70)), V(uint16(70))},
    	{V(uint16(71)), V(int32(71))},
    	{V(int32(72)), V(uint16(72))},
    	{V(uint16(73)), V(uint32(73))},
    	{V(uint32(74)), V(uint16(74))},
    	{V(uint16(75)), V(int64(75))},
    	{V(int64(76)), V(uint16(76))},
    	{V(uint16(77)), V(uint64(77))},
    	{V(uint64(78)), V(uint16(78))},
    	{V(uint16(79)), V(int(79))},
    	{V(int(80)), V(uint16(80))},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	0x43,
    }
    
    type parentRel struct {
    	lang       uint16
    	script     uint16
    	maxScript  uint16
    	toRegion   uint16
    	fromRegion []uint16
    }
    
    // Size: 414 bytes, 5 elements
    var parents = [5]parentRel{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  9. src/reflect/value.go

    func (v Value) SetUint(x uint64) {
    	v.mustBeAssignable()
    	switch k := v.kind(); k {
    	default:
    		panic(&ValueError{"reflect.Value.SetUint", v.kind()})
    	case Uint:
    		*(*uint)(v.ptr) = uint(x)
    	case Uint8:
    		*(*uint8)(v.ptr) = uint8(x)
    	case Uint16:
    		*(*uint16)(v.ptr) = uint16(x)
    	case Uint32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/cases/tables13.0.0.go

    func (t *caseTrie) lookupValue(n uint32, b byte) uint16 {
    	switch {
    	case n < 20:
    		return uint16(caseValues[n<<6+uint32(b)])
    	default:
    		n -= 20
    		return uint16(sparse.lookup(n, b))
    	}
    }
    
    // caseValues: 22 blocks, 1408 entries, 2816 bytes
    // The third block is the zero block.
    var caseValues = [1408]uint16{
    	// Block 0x0, offset 0x0
    	0x27: 0x0054,
    	0x2e: 0x0054,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 100.7K bytes
    - Viewed (0)
Back to top