Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for MASK (0.06 sec)

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"marshall_islands":                     "\U0001f1f2\U0001f1ed",
    	"martial_arts_uniform":                 "\U0001f94b",
    	"martinique":                           "\U0001f1f2\U0001f1f6",
    	"mask":                                 "\U0001f637",
    	"massage":                              "\U0001f486",
    	"massage_man":                          "\U0001f486\u200d\u2642\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    				)
    				(Const64 <typ.UInt64> [64-sdivisible64(c).k])
    			)
    			(Const64 <typ.UInt64> [int64(sdivisible64(c).max)])
    		)
    
    // Divisibility check for signed integers for power of two constant are simple mask.
    // However, we must match against the rewritten n%c == 0 -> n - c*(n/c) == 0 -> n == c*(n/c)
    // where n/c contains fixup code to handle signed n.
    ((Eq8|Neq8) n (Lsh8x64
      (Rsh8x64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

       * of reads and delaying a lock acquisition until the threshold is crossed or a mutation occurs.
       *
       * <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.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/LocalCache.java

       * of reads and delaying a lock acquisition until the threshold is crossed or a mutation occurs.
       *
       * <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.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // On ARM64 the bitmask can fit into an instruction.
    (SRLconst [c] (SLLconst [c] x)) && 0 < c && c < 64 => (ANDconst [1<<uint(64-c)-1] x) // mask out high bits
    (SLLconst [c] (SRLconst [c] x)) && 0 < c && c < 64 => (ANDconst [^(1<<uint(c)-1)] x) // mask out low bits
    
    // Special case setting bit as 1. An example is math.Copysign(c,-1)
    (ORconst [c1] (ANDconst [c2] x)) && c2|c1 == ^0  => (ORconst [c1] x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    				}
    				o1 |= uint32(p.From.Index&0x1f) << 16
    			}
    		}
    		o1 |= uint32(p.To.Offset)
    		// cmd/asm/internal/arch/arm64.go:ARM64RegisterListOffset
    		// add opcode(bit 12-15) for vld1, mask it off if it's not vld1
    		o1 = c.maskOpvldvst(p, o1)
    		o1 |= uint32(r&31) << 5
    
    	case 82: /* vmov/vdup Rn, Vd.<T> */
    		rf := int(p.From.Reg)
    		rt := int(p.To.Reg)
    		o1 = 7<<25 | 3<<10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. src/crypto/x509/x509_test.go

    	block, _ := pem.Decode([]byte(badIPMaskPEM))
    	_, err := ParseCertificate(block.Bytes)
    	if err == nil {
    		t.Fatalf("unexpected success")
    	}
    
    	const expected = "contained invalid mask"
    	if !strings.Contains(err.Error(), expected) {
    		t.Fatalf("expected %q in error but got: %s", expected, err)
    	}
    }
    
    const additionalGeneralSubtreePEM = `
    -----BEGIN CERTIFICATE-----
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  8. cluster/gce/util.sh

    #   KUBECFG_CERT_BASE64
    #   KUBECFG_KEY_BASE64
    function create-certs {
      local -r primary_cn="${1}"
    
      # Determine extra certificate names for master
    
      # Create service_ip by stripping the network mask part from
      # SERVICE_CLUSTER_IP_RANGE and incrementing the host part with 1
      service_ip=${SERVICE_CLUSTER_IP_RANGE%/*}
      service_ip="${service_ip%.*}.$((${service_ip##*.} + 1))"
      local sans=""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    Four * 100   // product 400 cannot be represented as an int8 (type of Four)
    </pre>
    
    <p>
    The mask used by the unary bitwise complement operator <code>^</code> matches
    the rule for non-constants: the mask is all 1s for unsigned constants
    and -1 for signed and untyped constants.
    </p>
    
    <pre>
    ^1         // untyped integer constant, equal to -2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. src/encoding/json/testdata/code.json.gz

    ive-offset-repeat-expected.checksum","kids":[],"cl_weight":0.00012874983906270118,"touches":1,"min_t":1236205616,"max_t":1236205616,"mean_t":1236205616},{"name":"mask-negative-offset-repeat-expected.checksum","kids":[],"cl_weight":0.0004266211604095563,"touches":1,"min_t":1229478785,"max_t":1229478785,"mean_t":1229478785},{"name":"mask-negative-offset-repeat-expected.png","kids":[],"cl_weight":0.0004266211604095563,"touches":1,"min_t":1229478785,"max_t":1229478785,"mean_t":1229478785},{"name":"n...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
Back to top