Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 129 for Shift1 (0.32 sec)

  1. src/cmd/compile/internal/types2/check_test.go

    	testFiles(t, []string{"index.go"}, [][]byte{[]byte(src)}, 0, false, withSizes(&StdSizes{4, 4}))
    }
    
    func TestIssue47243_TypedRHS(t *testing.T) {
    	// The RHS of the shift expression below overflows uint on 32bit platforms,
    	// but this is OK as it is explicitly typed.
    	const src = `package issue47243; var a uint64; var _ = a << uint64(4294967296)` // uint64(1<<32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    	}
    
    	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) {
    			print("?")
    		}
    	}
    
    	start := true
    	printcomma := func() {
    		if !start {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	// applied to a string.
    	//
    	// Example:
    	//  var s = "hello"
    	//  var x = s[1:2:3]
    	InvalidSliceExpr
    
    	/* exprs > shift */
    
    	// InvalidShiftCount occurs when the right-hand side of a shift operation is
    	// either non-integer, negative, or too large.
    	//
    	// Example:
    	//  var (
    	//  	x string
    	//  	y int = 1 << x
    	//  )
    	InvalidShiftCount
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. src/go/types/check_test.go

    	testFiles(t, []string{"index.go"}, [][]byte{[]byte(src)}, false, withSizes(&StdSizes{4, 4}))
    }
    
    func TestIssue47243_TypedRHS(t *testing.T) {
    	// The RHS of the shift expression below overflows uint on 32bit platforms,
    	// but this is OK as it is explicitly typed.
    	const src = `package issue47243; var a uint64; var _ = a << uint64(4294967296)` // uint64(1<<32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure.sh

    #
    # $1 is the sha512/sha1 hash of the URL. Can be "" if the sha512/sha1 hash is unknown.
    # $2+ are the URLs to download.
    function download-or-bust {
      local -r hash="$1"
      shift 1
    
      while true; do
        for url in "$@"; do
          local file="${url##*/}"
          rm -f "${file}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/primitives/UnsignedBytes.java

                 * little-endian. Long.numberOfTrailingZeros(diff) tells us the least significant
                 * nonzero bit, and zeroing out the first three bits of L.nTZ gives us the shift to get
                 * that least significant nonzero byte.
                 */
                int n = Long.numberOfTrailingZeros(lw ^ rw) & ~0x7;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. src/crypto/cipher/gcm.go

    // gcmDouble returns the result of doubling an element of GF(2¹²⁸).
    func gcmDouble(x *gcmFieldElement) (double gcmFieldElement) {
    	msbSet := x.high&1 == 1
    
    	// Because of the bit-ordering, doubling is actually a right shift.
    	double.high = x.high >> 1
    	double.high |= x.low << 63
    	double.low = x.low >> 1
    
    	// If the most-significant bit was set before shifting then it,
    	// conceptually, becomes a term of x^128. This is greater than the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

              op, "require the type of input to have static shapes");
        }
    
        DenseIntElementsAttr shift_attr;
        Value shift = tf_roll_op.getShift();
        auto shift_ranked_attr_type =
            mlir::dyn_cast<RankedTensorType>(shift.getType());
        if (!shift_ranked_attr_type ||
            !matchPattern(shift, m_Constant(&shift_attr))) {
          return failure();
        }
    
        DenseIntElementsAttr axis_attr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/UnsignedBytes.java

                 * little-endian. Long.numberOfTrailingZeros(diff) tells us the least significant
                 * nonzero bit, and zeroing out the first three bits of L.nTZ gives us the shift to get
                 * that least significant nonzero byte.
                 */
                int n = Long.numberOfTrailingZeros(lw ^ rw) & ~0x7;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "ROTLW", argLength: 2, reg: gp21, asm: "ROTLW"}, // uint32(arg0) rotate left by arg1 mod 32
    		// The following are ops to implement the extended mnemonics for shifts as described in section C.8 of the ISA.
    		// The constant shift values are packed into the aux int32.
    		{name: "CLRLSLWI", argLength: 1, reg: gp11, asm: "CLRLSLWI", aux: "Int32"}, //
    		{name: "CLRLSLDI", argLength: 1, reg: gp11, asm: "CLRLSLDI", aux: "Int32"}, //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
Back to top