Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for offsetsof (0.14 sec)

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

    				typ := s.load(byteptr, off)
    				idata := s.newValue1(ssa.OpIData, byteptr, iface)
    				res = s.newValue2(ssa.OpIMake, dst, typ, idata)
    				return
    			}
    
    			s.startBlock(bOk)
    			// nonempty -> empty
    			// Need to load type from itab
    			off := s.newValue1I(ssa.OpOffPtr, byteptr, rttype.ITab.OffsetOf("Type"), itab)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    H.darkVariants,H.screenVariants,H.orientationVariants,H.directionVariants,H.forcedColorsVariants,H.printVariant]),[...t,...a,...r,...s,...n]}function EC(i,e){let t=[],r=new Map;e.variantMap=r;let n=new so;e.offsets=n;let a=new Set,s=AC(e.tailwindConfig,e,{variantList:t,variantMap:r,offsets:n,classList:a});for(let f of i)if(Array.isArray(f))for(let d of f)d(s);else f?.(s);n.recordVariants(t,f=>r.get(f).length);for(let[f,d]of r.entries())e.variantMap.set(f,d.map((p,m)=>[n.forVariant(f,m),p]));let ...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  3. doc/go_spec.html

    or fields of variable size. Otherwise the size is <i>constant</i>.
    Calls to <code>Alignof</code>, <code>Offsetof</code>, and <code>Sizeof</code>
    are compile-time <a href="#Constant_expressions">constant expressions</a> of
    type <code>uintptr</code> if their arguments (or the struct <code>s</code> in
    the selector expression <code>s.f</code> for <code>Offsetof</code>) are types
    of constant size.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        }
        ArrayRef<int64_t> input_shape = input_ty.getShape();
        int input_rank = input_ty.getRank();
        if (axis < 0) axis += input_rank;
    
        // Adjust large offsets into [0, axis_size). This also makes negative
        // offsets positive.
        // offset = ((offset % axis_size) + axis_size) % axis_size
        ImplicitLocOpBuilder b(op.getLoc(), rewriter);
        Value offset = op.getShift();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top