Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for uimm16 (0.12 sec)

  1. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    		v.AddArg(x)
    		return true
    	}
    	// match: (MOVHUreg (MOVVconst [c]))
    	// result: (MOVVconst [int64(uint16(c))])
    	for {
    		if v_0.Op != OpLOONG64MOVVconst {
    			break
    		}
    		c := auxIntToInt64(v_0.AuxInt)
    		v.reset(OpLOONG64MOVVconst)
    		v.AuxInt = int64ToAuxInt(int64(uint16(c)))
    		return true
    	}
    	return false
    }
    func rewriteValueLOONG64_OpLOONG64MOVHload(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    		v.AddArg(x)
    		return true
    	}
    	// match: (MOVHUreg (MOVVconst [c]))
    	// result: (MOVVconst [int64(uint16(c))])
    	for {
    		if v_0.Op != OpMIPS64MOVVconst {
    			break
    		}
    		c := auxIntToInt64(v_0.AuxInt)
    		v.reset(OpMIPS64MOVVconst)
    		v.AuxInt = int64ToAuxInt(int64(uint16(c)))
    		return true
    	}
    	return false
    }
    func rewriteValueMIPS64_OpMIPS64MOVHload(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/bidi/tables15.0.0.go

    	0x40bc: 0x000b, 0x40bd: 0x000b, 0x40be: 0x000b, 0x40bf: 0x000b,
    }
    
    // bidiIndex: 26 blocks, 1664 entries, 3328 bytes
    // Block 0 is the zero block.
    var bidiIndex = [1664]uint16{
    	// Block 0x0, offset 0x0
    	// Block 0x1, offset 0x40
    	// Block 0x2, offset 0x80
    	// Block 0x3, offset 0xc0
    	0xc2: 0x01, 0xc3: 0x02,
    	0xca: 0x03, 0xcb: 0x04, 0xcc: 0x05, 0xcd: 0x06, 0xce: 0x07, 0xcf: 0x08,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 127.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

          ConversionPatternRewriter& rewriter) const final {
        RankedTensorType type =
            mlir::dyn_cast_or_null<RankedTensorType>(iota_op.getType());
        // TF::RangeOp doesn't support UI16.
        if (!type || type.getElementType().isUnsignedInteger(16)) return failure();
    
        const uint64_t dimension = iota_op.getIotaDimension();
        Type element_type = type.getElementType();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  5. src/unicode/tables.go

    	0xFA: pLl | pp, // 'ú'
    	0xFB: pLl | pp, // 'û'
    	0xFC: pLl | pp, // 'ü'
    	0xFD: pLl | pp, // 'ý'
    	0xFE: pLl | pp, // 'þ'
    	0xFF: pLl | pp, // 'ÿ'
    }
    
    var asciiFold = [MaxASCII + 1]uint16{
    	0x0000,
    	0x0001,
    	0x0002,
    	0x0003,
    	0x0004,
    	0x0005,
    	0x0006,
    	0x0007,
    	0x0008,
    	0x0009,
    	0x000A,
    	0x000B,
    	0x000C,
    	0x000D,
    	0x000E,
    	0x000F,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    			return
    		}
    		if _, err := io.ReadFull(s, buf[4:ipLen+6]); err != nil {
    			t.Errorf("socks5 proxy address read: %v", err)
    			return
    		}
    		ip := net.IP(buf[4 : ipLen+4])
    		port := binary.BigEndian.Uint16(buf[ipLen+4 : ipLen+6])
    		copy(buf[:3], []byte{5, 0, 0})
    		if _, err := s.Write(buf[:ipLen+6]); err != nil {
    			t.Errorf("socks5 proxy connect write: %v", err)
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top