Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for uint16_t (0.24 sec)

  1. 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)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        int num_elements;
        if (elem_type.isUnsignedInteger()) {
          uint64_t start = start_attr.getUInt();
          uint64_t limit = limit_attr.getUInt();
          uint64_t delta = delta_attr.getUInt();
          assert(start <= (uint64_t)INT_MAX);
          assert(limit <= (uint64_t)INT_MAX);
          assert(delta <= (uint64_t)INT_MAX);
          num_elements =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

          int64_t output_spatial_size =
              align_corners ? output_spatial - 1 : output_spatial;
    
          int64_t gcd =
              tensorflow::MathUtil::GCD(static_cast<uint64_t>(input_spatial_size),
                                        static_cast<uint64_t>(output_spatial_size));
          if ((input_spatial_size % gcd != 0) ||
              (input_spatial_size / gcd != stride) || (dilation - 1 != padding)) {
            return false;
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      }
    
      // The kernel will reshape the input tensor with new axis, it only supports
      // this reshaped tensor up to 5D.
      uint32_t ellipsis_mask = op.getEllipsisMask();
      uint32_t new_axis_mask = op.getNewAxisMask();
      int num_added_axis = 0;
      for (int i = 0; i < 8; ++i) {
        if (!((1 << i) & ellipsis_mask) && ((1 << i) & new_axis_mask)) {
          num_added_axis++;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K 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