Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for uimm16 (0.73 sec)

  1. api/go1.3.txt

    pkg debug/pe, type OptionalHeader32 struct, MajorSubsystemVersion uint16
    pkg debug/pe, type OptionalHeader32 struct, MinorImageVersion uint16
    pkg debug/pe, type OptionalHeader32 struct, MinorLinkerVersion uint8
    pkg debug/pe, type OptionalHeader32 struct, MinorOperatingSystemVersion uint16
    pkg debug/pe, type OptionalHeader32 struct, MinorSubsystemVersion uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/cmd/vendor/golang.org/x/text/cases/tables12.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
    - 99.2K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    	// Read resync meta header
    	switch binary.LittleEndian.Uint16(data[0:2]) {
    	case resyncMetaFormat:
    	default:
    		return brs, fmt.Errorf("resyncMeta: unknown format: %d", binary.LittleEndian.Uint16(data[0:2]))
    	}
    	switch binary.LittleEndian.Uint16(data[2:4]) {
    	case resyncMetaVersion:
    	default:
    		return brs, 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: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/cases/tables15.0.0.go

    func (t *caseTrie) lookupValue(n uint32, b byte) uint16 {
    	switch {
    	case n < 22:
    		return uint16(caseValues[n<<6+uint32(b)])
    	default:
    		n -= 22
    		return uint16(sparse.lookup(n, b))
    	}
    }
    
    // caseValues: 24 blocks, 1536 entries, 3072 bytes
    // The third block is the zero block.
    var caseValues = [1536]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
    - 106.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    		return LOP_IRR(OP_ORIS, uint32(r), REGZERO, uint32(v))
    	}
    	return AOP_IRR(OP_ADDIS, uint32(r), REGZERO, uint32(v))
    }
    
    func high16adjusted(d int32) uint16 {
    	if d&0x8000 != 0 {
    		return uint16((d >> 16) + 1)
    	}
    	return uint16(d >> 16)
    }
    
    func asmout(c *ctxt9, p *obj.Prog, o *Optab, out *[5]uint32) {
    	o1 := uint32(0)
    	o2 := uint32(0)
    	o3 := uint32(0)
    	o4 := uint32(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // is ui16. ui16 storage type for quantized type is not compatible with
    // `tfl.quantize`.
    
    func.func @uniform_quantize_op_uint16_output(%arg: tensor<2x2xf32>) -> tensor<2x2x!quant.uniform<ui16:f32, 3.000000e+0:127>> {
      %0 = stablehlo.uniform_quantize %arg : (tensor<2x2xf32>) -> tensor<2x2x!quant.uniform<ui16:f32, 3.000000e+0:127>>
      return %0 : tensor<2x2x!quant.uniform<ui16:f32, 3.000000e+0:127>>
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let arguments = (ins
         TFL_TensorOf<[I8, I16, I32, I64, UI8, UI16, UI32, UI64, F32, F64]>:$input,
         TFL_TensorOf<[I32]>:$dilations,
         TFL_0DTensorOf<[I8, I16, I32, I64, UI8, UI16, UI32, UI64, F32, F64]>:$padding_value
      );
    
      let results = (outs TFL_TensorOf<[I8, I16, I32, I64, UI8, UI16, UI32, UI64, F32, F64]>:$output);
    }
    
    def TFL_AddOp : TFL_Op<"add", [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "DIVLU", argLength: 2, reg: gp11div, typ: "(UInt32,UInt32)", asm: "DIVL", clobberFlags: true},
    		{name: "DIVWU", argLength: 2, reg: gp11div, typ: "(UInt16,UInt16)", asm: "DIVW", clobberFlags: true},
    
    		// computes -arg0, flags set for 0-arg0.
    		{name: "NEGLflags", argLength: 1, reg: gp11flags, typ: "(UInt32,Flags)", asm: "NEGL", resultInArg0: true},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
Back to top