Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for uimm16 (0.36 sec)

  1. src/vendor/golang.org/x/net/idna/tables15.0.0.go

    func (t *idnaTrie) lookupValue(n uint32, b byte) uint16 {
    	switch {
    	case n < 133:
    		return uint16(idnaValues[n<<6+uint32(b)])
    	default:
    		n -= 133
    		return uint16(idnaSparse.lookup(n, b))
    	}
    }
    
    // idnaValues: 135 blocks, 8640 entries, 17280 bytes
    // The third block is the zero block.
    var idnaValues = [8640]uint16{
    	// Block 0x0, offset 0x0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 297.4K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/idna/tables12.0.0.go

    func (t *idnaTrie) lookupValue(n uint32, b byte) uint16 {
    	switch {
    	case n < 125:
    		return uint16(idnaValues[n<<6+uint32(b)])
    	default:
    		n -= 125
    		return uint16(idnaSparse.lookup(n, b))
    	}
    }
    
    // idnaValues: 127 blocks, 8128 entries, 16256 bytes
    // The third block is the zero block.
    var idnaValues = [8128]uint16{
    	// Block 0x0, offset 0x0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 273.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritePPC64.go

    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVHZreg (MOVDconst [c]))
    	// result: (MOVDconst [int64(uint16(c))])
    	for {
    		if v_0.Op != OpPPC64MOVDconst {
    			break
    		}
    		c := auxIntToInt64(v_0.AuxInt)
    		v.reset(OpPPC64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(uint16(c)))
    		return true
    	}
    	return false
    }
    func rewriteValuePPC64_OpPPC64MOVHload(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  4. doc/go_spec.html

    They are collectively called <i>numeric types</i>.
    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: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  5. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK-SAME:                      %[[ARG:.*]]: tensor<7x9x11xui16>) -> tensor<7x9x11xui16> {
    // CHECK:           %[[CST:.*]] = "tf.Const"() <{value = dense<65535> : tensor<ui16>}> : () -> tensor<ui16>
    // CHECK:           %[[RES:.*]] = "tf.BitwiseXor"(%[[ARG]], %[[CST]]) : (tensor<7x9x11xui16>, tensor<ui16>) -> tensor<7x9x11xui16>
    // CHECK:           return %[[RES]] : tensor<7x9x11xui16>
    // CHECK:         }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
Back to top