Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 211 for Shift3 (1.16 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/intstr/generated.pb.go

    		case 0:
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return 0, ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return 0, io.ErrUnexpectedEOF
    				}
    				iNdEx++
    				if dAtA[iNdEx-1] < 0x80 {
    					break
    				}
    			}
    		case 1:
    			iNdEx += 8
    		case 2:
    			var length int
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return 0, ErrIntOverflowGenerated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm/armasm/inst.go

    		return "BE"
    	}
    	return "LE"
    }
    
    // A Shift describes an ARM shift operation.
    type Shift uint8
    
    const (
    	ShiftLeft        Shift = 0 // left shift
    	ShiftRight       Shift = 1 // logical (unsigned) right shift
    	ShiftRightSigned Shift = 2 // arithmetic (signed) right shift
    	RotateRight      Shift = 3 // right rotate
    	RotateRightExt   Shift = 4 // right rotate through carry (Count will always be 1)
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 7.5K bytes
    - Viewed (0)
  3. src/runtime/libfuzzer_amd64.s

    // as well as
    // https://github.com/llvm/llvm-project/blob/704d92607d26e696daba596b72cb70effe79a872/compiler-rt/lib/fuzzer/FuzzerValueBitMap.h#L34
    // ValueProfileMap.AddValue() truncates its argument to 16 bits and shifts the
    // PC to the left by log_2(128)=7, which means that only the lowest 16 - 7 bits
    // of the return address matter. String compare hooks use the lowest 12 bits,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 04:57:07 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_proto.go

    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return 0, ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return 0, io.ErrUnexpectedEOF
    				}
    				iNdEx++
    				if data[iNdEx-1] < 0x80 {
    					break
    				}
    			}
    			return iNdEx, nil
    		case 1:
    			iNdEx += 8
    			return iNdEx, nil
    		case 2:
    			var length int
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 21 05:31:33 UTC 2021
    - 6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/numerical_utils.cc

      if (quantized_multiplier == (1LL << 31)) {
        quantized_multiplier /= 2;
        ++shift;
      }
      assert(quantized_multiplier <= std::numeric_limits<int32_t>::max());
    
      // Check that the shift amount is not greater than 31 or less than -31.
      if (shift > 31 || shift < -31) {
        return {0, 0};
      }
    
      return {static_cast<int32_t>(quantized_multiplier), shift};
    }
    
    // Calculates the quantized range for a given scale, zero point, minimum and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 17 19:57:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/AbstractSwiftXCTestComponentWithTestedComponentIntegrationTest.groovy

                ${testedComponentDsl} {
                    sourceCompatibility = SwiftVersion.SWIFT3
                }
    
                task verifyBinariesSwiftVersion {
                    doLast {
                        ${componentUnderTestDsl}.binaries.get().each {
                            assert it.targetPlatform.sourceCompatibility == SwiftVersion.SWIFT3
                        }
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/utils/math_utils.cc

      // no matter what.
      if (quantized_fraction == (1L << 15)) {
        quantized_fraction /= 2;
        ++shift;
      }
      if (shift < -15) {
        shift = 0;
        quantized_fraction = 0;
      }
      if (shift > 14) {
        shift = 14;
        quantized_fraction = (1LL << 15) - 1;
      }
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 08:32:43 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. tensorflow/c/generate-pc.sh

                case "$2" in
                    "") shift 2 ;;
                    *) TF_PREFIX=$2 ; shift 2 ;;
                esac ;;
            -l|--libdir)
                case "$2" in
                    "") shift 2 ;;
                    *) LIBDIR=$2 ; shift 2 ;;
                esac ;;
            -v|--version)
                case "$2" in
                    "") shift 2 ;;
                    *) TF_VERSION=$2 ; shift 2 ;;
                esac ;;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Aug 04 07:01:14 UTC 2019
    - 2.7K bytes
    - Viewed (0)
  9. test/fixedbugs/bug363.go

    // license that can be found in the LICENSE file.
    
    // issue 1664
    
    package main
    
    func main() {
    	var i uint = 33
    	var a = (1<<i) + 4.5  // ERROR "shift of type float64|invalid.*shift"
    	println(a)
    	
    	var b = (1<<i) + 4.0  // ERROR "shift of type float64|invalid.*shift"
    	println(b)
    
    	var c int64 = (1<<i) + 4.0  // ok - it's all int64
    	println(c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 470 bytes
    - Viewed (0)
  10. src/crypto/md5/md5block_amd64.s

    #define ROUND3FIRST(a, b, c, d, index, const, shift) \
    	MOVL	d,		R9; \
    	XORL	c,		R9; \
    	XORL	b,		R9; \
    	ADDL	$const,	a; \
    	ADDL	R8,		a; \
    	MOVL	(index*4)(SI),R8; \
    	ADDL	R9,		a; \
    	ROLL	$shift,		a; \
    	ADDL	b,		a
    
    #define ROUND3(a, b, c, d, index, const, shift) \
    	XORL	a,		R9; \
    	XORL	b,		R9; \
    	ADDL	$const,	a; \
    	ADDL	R8,		a; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top