Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 63 for maskstr (0.15 sec)

  1. src/runtime/mbitmap.go

    				println()
    				print("runtime: type mask=")
    				for _, b := range maskFromType {
    					print(b)
    				}
    				println()
    				print("runtime: type=", toRType(et).string(), "\n")
    				throw("found two different masks from two different methods")
    			}
    		}
    
    		// Select the heap mask to return. We may not have a type mask.
    		mask = maskFromHeap
    
    		// Make sure we keep ep alive. We may have stopped referencing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ppc64/asm.go

    	// This is a special, preferred form of bcl to obtain the next
    	// instruction address (NIA, aka PC+4) in LR.
    	OP_BCL_NIA = OP_BCL | 20<<21 | 31<<16 | 1<<2 // bcl 20,31,$+4
    
    	// Masks to match opcodes
    	MASK_PLD_PFX  = 0xfff70000
    	MASK_PLD_SFX  = 0xfc1f0000 // Also checks RA = 0 if check value is OP_PLD_SFX.
    	MASK_PLD_RT   = 0x03e00000 // Extract RT from the pld suffix.
    	MASK_OP_LD    = 0xfc000003
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// This field will remain optional even if it graduates.
    	// +optional
    	StorageVersionHash string `json:"storageVersionHash,omitempty" protobuf:"bytes,10,opt,name=storageVersionHash"`
    }
    
    // Verbs masks the value so protobuf can generate
    //
    // +protobuf.nullable=true
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    type Verbs []string
    
    func (vs Verbs) String() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/LocalCache.java

            copyAccessEntry(original, newEntry);
            copyWriteEntry(original, newEntry);
            return newEntry;
          }
        };
    
        // Masks used to compute indices in the following table.
    
        static final int ACCESS_MASK = 1;
        static final int WRITE_MASK = 2;
        static final int WEAK_MASK = 4;
    
        /** Look-up table for factories. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/LocalCache.java

            copyAccessEntry(original, newEntry);
            copyWriteEntry(original, newEntry);
            return newEntry;
          }
        };
    
        // Masks used to compute indices in the following table.
    
        static final int ACCESS_MASK = 1;
        static final int WRITE_MASK = 2;
        static final int WEAK_MASK = 4;
    
        /** Look-up table for factories. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (ANDQ (MOVQconst [c]) x) && isUint64PowerOfTwo(^c) && uint64(^c) >= 1<<31 => (BTRQconst [int8(log64(^c))] x)
    
    // Special-case bit patterns on first/last bit.
    // generic.rules changes ANDs of high-part/low-part masks into a couple of shifts,
    // for instance:
    //    x & 0xFFFF0000 -> (x >> 16) << 16
    //    x & 0x80000000 -> (x >> 31) << 31
    //
    // In case the mask is just one bit (like second example above), it conflicts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

          num_added_axis++;
        }
      }
      if (num_input_dims + num_added_axis > 5) return failure();
      return success();
    }
    
    OpFoldResult StridedSliceOp::fold(FoldAdaptor) {
      // Currently only support all masks being 0.
      if (getBeginMask() != 0 || getEndMask() != 0 || getEllipsisMask() != 0 ||
          getNewAxisMask() != 0 || getShrinkAxisMask() != 0)
        return {};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // Output shape needs to be static to apply 'new_axis_mask' or
        // 'shrink_axis_mask' by reshaping tensor after slice.
        //
        // TODO(hinsu): Relax this constraint for ops without the above masks.
        auto result_ty = mlir::dyn_cast<RankedTensorType>(op.getType());
        if (!result_ty || !result_ty.hasStaticShape()) return failure();
    
        DenseIntElementsAttr sparse_begin_attr, sparse_end_attr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    	// which can change underfoot once we no longer block
    	// safe-points. We don't need to snapshot the contents because
    	// everything up to cap(allp) is immutable.
    	allpSnapshot := allp
    	// Also snapshot masks. Value changes are OK, but we can't allow
    	// len to change out from under us.
    	idlepMaskSnapshot := idlepMask
    	timerpMaskSnapshot := timerpMask
    
    	// return P and block
    	lock(&sched.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. CREDITS

      0. Definitions.
    
      "This License" refers to version 3 of the GNU Affero General Public License.
    
      "Copyright" also means copyright-like laws that apply to other kinds of
    works, such as semiconductor masks.
    
      "The Program" refers to any copyrightable work licensed under this
    License.  Each licensee is addressed as "you".  "Licensees" and
    "recipients" may be individuals or organizations.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
Back to top