Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 65 for Fmask (0.07 sec)

  1. src/crypto/internal/nistec/p256_asm_s390x.s

    DATA p256<>+0x40(SB)/8, $0x18191a1b1c1d1e1f // SEL d1 d0 d1 d0
    DATA p256<>+0x48(SB)/8, $0x18191a1b1c1d1e1f // SEL d1 d0 d1 d0
    DATA p256<>+0x50(SB)/8, $0x0706050403020100 // LE2BE permute mask
    DATA p256<>+0x58(SB)/8, $0x0f0e0d0c0b0a0908 // LE2BE permute mask
    DATA p256mul<>+0x00(SB)/8, $0xffffffff00000001 // P256
    DATA p256mul<>+0x08(SB)/8, $0x0000000000000000 // P256
    DATA p256mul<>+0x10(SB)/8, $0x00000000ffffffff // P256
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * <p>This must be a (2^n)-1 as it is used as a mask.
       */
      static final int DRAIN_THRESHOLD = 0x3F;
    
      /**
       * Maximum number of entries to be drained in a single cleanup run. This applies independently to
       * the cleanup queue and both reference queues.
       */
      // TODO(fry): empirically optimize this
      static final int DRAIN_MAX = 16;
    
      // Fields
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * <p>This must be a (2^n)-1 as it is used as a mask.
       */
      static final int DRAIN_THRESHOLD = 0x3F;
    
      /**
       * Maximum number of entries to be drained in a single cleanup run. This applies independently to
       * the cleanup queue and both reference queues.
       */
      // TODO(fry): empirically optimize this
      static final int DRAIN_MAX = 16;
    
      // Fields
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      // CHECK:  %[[XDIVY:.*]] = "tf.Div"(%[[LHS]], %[[RHS]])
      // CHECK:  %[[MASK:.*]] = "tf.Less"(%[[XDIVY]], %[[ZERO]])
      // CHECK:  %[[CEIL:.*]] = "tf.Ceil"(%[[XDIVY]])
      // CHECK:  %[[FLOOR:.*]] = "tf.Floor"(%[[XDIVY]])
      // CHECK:  %[[RESULT:.*]] = "tf.SelectV2"(%[[MASK]], %[[CEIL]], %[[FLOOR]])
      %0 = "tf.TruncateDiv"(%arg0, %arg1)
          : (tensor<*xf32>, tensor<*xf32>) -> tensor<*xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  5. tensorflow/cc/gradients/math_grad.cc

    Output GetZeroClippedIndices(const Scope& scope, const Output& ids) {
      return Maximum(scope, ids, ZerosLike(scope, ids));
    }
    
    // Helper function for unsorted segment ops.
    // Returns a mask of where 'ids' are positive, reshaped so that it will be
    // broadcastable to the result shape of gathering params by ids.
    Output GetIsPositive(const Scope& scope, const Output& params,
                         const Output& ids) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  6. src/net/netip/netip_test.go

    					bits: 20,
    					p:    mustPrefix("255.255.240.0/20"),
    					ok:   true,
    				},
    				{
    					// Partially masking one byte that contains both
    					// 1s and 0s on either side of the mask limit.
    					ip:   mustIP("100.98.156.66"),
    					bits: 10,
    					p:    mustPrefix("100.64.0.0/10"),
    					ok:   true,
    				},
    			},
    		},
    		{
    			family:   "IPv6",
    			subtests: makeIPv6(""),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  7. src/time/format.go

    	stdSeparatorShift = 28                 // extra argument in high 4 bits for fractional second separators
    	stdMask           = 1<<stdArgShift - 1 // mask out argument
    )
    
    // std0x records the std values for "01", "02", ..., "06".
    var std0x = [...]int{stdZeroMonth, stdZeroDay, stdZeroHour12, stdZeroMinute, stdZeroSecond, stdYear}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/prove.go

    	// arbitrary number so we can't list them all here.
    	jumpTable0
    )
    
    // relation represents the set of possible relations between
    // pairs of variables (v, w). Without a priori knowledge the
    // mask is lt | eq | gt meaning v can be less than, equal to or
    // greater than w. When the execution path branches on the condition
    // `v op w` the set of relations is updated to exclude any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    		}
    		bits := *(*uint8)(add(liveInfo, uintptr(liveIdx)+uintptr(slotIdx/8)))
    		return bits&(1<<(slotIdx%8)) != 0
    	}
    
    	print1 := func(off, sz, slotIdx uint8) {
    		x := readUnaligned64(add(argp, uintptr(off)))
    		// mask out irrelevant bits
    		if sz < 8 {
    			shift := 64 - sz*8
    			if goarch.BigEndian {
    				x = x >> shift
    			} else {
    				x = x << shift >> shift
    			}
    		}
    		print(hex(x))
    		if !isLive(off, slotIdx) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    If `x` and `y` are vectors or higher rank, then `condition` must be either a
    scalar, a vector with size matching the first dimension of `x`, or must have
    the same shape as `x`.
    
    The `condition` tensor acts as a mask that chooses, based on the value at each
    element, whether the corresponding element / row in the output should be
    taken from `x` (if true) or `y` (if false).
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top