Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 140 for Shift1 (0.11 sec)

  1. samples/kind-lb/setupkind.sh

        -n|--cluster-name)
          CLUSTERNAME="$2"; shift 2;;
        -r|--k8s-release)
          K8SRELEASE="--image=kindest/node:v$2"; shift 2;;
        -s|--ip-space)
          IPSPACE="$2"; shift 2;;
        -m|--mode)
          MODE="$2"; shift 2;;
        -w|--worker-nodes)
          NUMNODES="$2"; shift 2;;
        --pod-subnet)
          PODSUBNET="$2"; shift 2;;
        --service-subnet)
          SERVICESUBNET="$2"; shift 2;;
        -i|--ip-family)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. src/crypto/md5/md5block_arm64.s

    	MOVW	R5, R13
    	MOVW	R6, R14
    	MOVW	R7, R15
    
    	MOVW	(0*4)(R1), R8
    	MOVW	R7, R9
    
    #define ROUND1(a, b, c, d, index, const, shift) \
    	ADDW	$const, a; \
    	ADDW	R8, a; \
    	MOVW	(index*4)(R1), R8; \
    	EORW	c, R9; \
    	ANDW	b, R9; \
    	EORW	d, R9; \
    	ADDW	R9, a; \
    	RORW	$(32-shift), a; \
    	MOVW	c, R9; \
    	ADDW	b, a
    
    	ROUND1(R4,R5,R6,R7, 1,0xd76aa478, 7);
    	ROUND1(R7,R4,R5,R6, 2,0xe8c7b756,12);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. samples/multicluster/gen-eastwest-gateway.sh

          SINGLE_CLUSTER=1
          shift
        ;;
        --cluster)
          # No longer does anything, but keep it around to avoid breaking users
          shift 2
        ;;
        --network)
          NETWORK=$2
          shift 2
        ;;
        --mesh)
          # No longer does anything, but keep it around to avoid breaking users
          shift 2
        ;;
        --revision)
          REVISION=$2
          shift 2
        ;;
        -*)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 04 02:52:25 UTC 2021
    - 3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/lower_quantized.mlir

      // CHECK-DAG: %[[CAST:.*]] = "tf.Cast"(%arg0) <{Truncate = false}>
      // CHECK-DAG: %[[SHIFT:.*]] = "tf.AddV2"(%[[CAST]], %[[HALF_RANGE]])
      // CHECK-DAG: %[[DRANGE:.*]] = "tf.Sub"(%arg2, %arg1)
      // CHECK-DAG: %[[SCALE:.*]] = "tf.Div"(%[[DRANGE]], %[[C255:.*]])
      // CHECK-DAG: %[[SS:.*]] = "tf.Mul"(%[[SHIFT]], %[[SCALE]])
      // CHECK-DAG: %[[RESULT:.*]] = "tf.AddV2"(%[[SS]], %arg1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. src/math/floor.go

    	bits := Float64bits(x)
    	e := uint(bits>>shift) & mask
    	if e >= bias {
    		// Round abs(x) >= 1.
    		// - Large numbers without fractional components, infinity, and NaN are unchanged.
    		// - Add 0.499.. or 0.5 before truncating depending on whether the truncated
    		//   number is even or odd (respectively).
    		const halfMinusULP = (1 << (shift - 1)) - 1
    		e -= bias
    		bits += (halfMinusULP + (bits>>(shift-e))&1) >> e
    		bits &^= fracMask >> e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  6. apache-maven/src/assembly/shared/init.cmd

    @REM POM location, if supplied.
    
    set FILE_ARG=
    :arg_loop
    if "%~1" == "-f" (
      set "FILE_ARG=%~2"
      shift
      goto process_file_arg
    )
    if "%~1" == "--file" (
      set "FILE_ARG=%~2"
      shift
      goto process_file_arg
    )
    @REM If none of the above, skip the argument
    shift
    if not "%~1" == "" (
      goto arg_loop
    ) else (
      goto findBaseDir
    )
    
    :process_file_arg
    if "%FILE_ARG%" == "" (
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 16 21:35:28 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/inline/inlheur/serialize.go

    		funcProps.ResultFlags[i] = ResultPropBits(v)
    	}
    	return &funcProps
    }
    
    func readULEB128(sl []byte) (value uint64, rsl []byte) {
    	var shift uint
    
    	for {
    		b := sl[0]
    		sl = sl[1:]
    		value |= (uint64(b&0x7F) << shift)
    		if b&0x80 == 0 {
    			break
    		}
    		shift += 7
    	}
    	return value, sl
    }
    
    func writeUleb128(sb *strings.Builder, v uint64) {
    	if v < 128 {
    		sb.WriteByte(uint8(v))
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:02:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. src/crypto/md5/md5block_ppc64x.s

    #define ROUND1(a, b, c, d, index, const, shift) \
    	ADD	$const, index, R9; \
    	ADD	R9, a; \
    	AND     b, c, R9; \
    	ANDN    b, d, R31; \
    	OR	R9, R31, R9; \
    	ADD	R9, a; \
    	ROTLW	$shift, a; \
    	ADD	b, a;
    
    #define ROUND2(a, b, c, d, index, const, shift) \
    	ADD	$const, index, R9; \
    	ADD	R9, a; \
    	AND	b, d, R31; \
    	ANDN	d, c, R9; \
    	OR	R9, R31; \
    	ADD	R31, a; \
    	ROTLW	$shift, a; \
    	ADD	b, a;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/math/bits.go

    package math
    
    const (
    	uvnan    = 0x7FF8000000000001
    	uvinf    = 0x7FF0000000000000
    	uvneginf = 0xFFF0000000000000
    	uvone    = 0x3FF0000000000000
    	mask     = 0x7FF
    	shift    = 64 - 11 - 1
    	bias     = 1023
    	signMask = 1 << 63
    	fracMask = 1<<shift - 1
    )
    
    // Inf returns positive infinity if sign >= 0, negative infinity if sign < 0.
    func Inf(sign int) float64 {
    	var v uint64
    	if sign >= 0 {
    		v = uvinf
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. test/fixedbugs/issue28079b.go

    type T [uintptr(unsafe.Pointer(nil))]int // ERROR "non-constant array bound|array bound is not constant|must be constant"
    
    func f() {
    	_ = complex(1<<uintptr(unsafe.Pointer(nil)), 0) // ERROR "shift of type float64|non-integer type for left operand of shift|must be integer"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 547 bytes
    - Viewed (0)
Back to top