Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for uimm16 (0.11 sec)

  1. src/cmd/internal/obj/s390x/asmz.go

    		cmp[i] = &xcmp[args[i]]
    	}
    	for i := range ops {
    		op := &ops[i]
    		if cmp[0][op.a1] && cmp[1][op.a2] &&
    			cmp[2][op.a3] && cmp[3][op.a4] &&
    			cmp[4][op.a5] && cmp[5][op.a6] {
    			p.Optab = uint16(cap(optab) - cap(ops) + i + 1)
    			return op
    		}
    	}
    
    	// Cannot find a case; abort.
    	s := ""
    	for _, a := range args {
    		s += fmt.Sprintf(" %v", DRconv(int(a)))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (ORNshiftRO (RORconst x [c]) x [c]) => (MOVDconst [-1])
    
    // rev16w | rev16
    // ((x>>8) | (x<<8)) => (REV16W x), the type of x is uint16, "|" can also be "^" or "+".
    ((ADDshiftLL|ORshiftLL|XORshiftLL) <typ.UInt16> [8] (UBFX <typ.UInt16> [armBFAuxInt(8, 8)] x) x) => (REV16W x)
    
    // ((x & 0xff00ff00)>>8) | ((x & 0x00ff00ff)<<8), "|" can also be "^" or "+".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteMIPS.go

    		v.AddArg(x)
    		return true
    	}
    	// match: (MOVHUreg (MOVWconst [c]))
    	// result: (MOVWconst [int32(uint16(c))])
    	for {
    		if v_0.Op != OpMIPSMOVWconst {
    			break
    		}
    		c := auxIntToInt32(v_0.AuxInt)
    		v.reset(OpMIPSMOVWconst)
    		v.AuxInt = int32ToAuxInt(int32(uint16(c)))
    		return true
    	}
    	return false
    }
    func rewriteValueMIPS_OpMIPSMOVHload(v *Value) bool {
    	v_1 := v.Args[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteWasm.go

    	for {
    		if auxIntToInt64(v.AuxInt) != 2 {
    			break
    		}
    		dst := v_0
    		src := v_1
    		mem := v_2
    		v.reset(OpWasmI64Store16)
    		v0 := b.NewValue0(v.Pos, OpWasmI64Load16U, typ.UInt16)
    		v0.AddArg2(src, mem)
    		v.AddArg3(dst, v0, mem)
    		return true
    	}
    	// match: (Move [4] dst src mem)
    	// result: (I64Store32 dst (I64Load32U src mem) mem)
    	for {
    		if auxIntToInt64(v.AuxInt) != 4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  5. cmd/site-replication.go

    	switch binary.LittleEndian.Uint16(data[0:2]) {
    	case siteResyncMetaFormat:
    	default:
    		return rs, fmt.Errorf("resyncMeta: unknown format: %d", binary.LittleEndian.Uint16(data[0:2]))
    	}
    	switch binary.LittleEndian.Uint16(data[2:4]) {
    	case siteResyncMetaVersion:
    	default:
    		return rs, fmt.Errorf("resyncMeta: unknown version: %d", binary.LittleEndian.Uint16(data[2:4]))
    	}
    	// OK, parse data.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    	// cond: c >= 0 && int64(uint16(c)) == c
    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpRISCV64ANDI {
    			break
    		}
    		c := auxIntToInt64(x.AuxInt)
    		if !(c >= 0 && int64(uint16(c)) == c) {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVHUreg (ANDI [c] x))
    	// cond: c < 0
    	// result: (ANDI [int64(uint16(c))] x)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    				st.err.Errorf(s, "pc-relative relocation address for %s is too big: %#x", ldr.SymName(rs), o)
    			} else if o != int64(int16(o)) && o != int64(uint16(o)) {
    				st.err.Errorf(s, "non-pc-relative relocation address for %s is too big: %#x", ldr.SymName(rs), uint64(o))
    			}
    			target.Arch.ByteOrder.PutUint16(P[off:], uint16(o))
    		case 4:
    			if (rt == objabi.R_PCREL || rt == objabi.R_CALL) && o != int64(int32(o)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. cmd/data-usage-cache_gen.go

    		}
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z *dataUsageEntry) EncodeMsg(en *msgp.Writer) (err error) {
    	// check for omitted fields
    	zb0001Len := uint32(10)
    	var zb0001Mask uint16 /* 10 bits */
    	_ = zb0001Mask
    	if z.ReplicationStats == nil {
    		zb0001Len--
    		zb0001Mask |= 0x80
    	}
    	if z.AllTierStats == nil {
    		zb0001Len--
    		zb0001Mask |= 0x100
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 100.8K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    The predeclared architecture-independent numeric types are:
    </p>
    
    <pre class="grammar">
    uint8       the set of all unsigned  8-bit integers (0 to 255)
    uint16      the set of all unsigned 16-bit integers (0 to 65535)
    uint32      the set of all unsigned 32-bit integers (0 to 4294967295)
    uint64      the set of all unsigned 64-bit integers (0 to 18446744073709551615)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    // common Go types and special types provided by the sql package:
    //
    //	*string
    //	*[]byte
    //	*int, *int8, *int16, *int32, *int64
    //	*uint, *uint8, *uint16, *uint32, *uint64
    //	*bool
    //	*float32, *float64
    //	*interface{}
    //	*RawBytes
    //	*Rows (cursor value)
    //	any type implementing Scanner (see Scanner docs)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top