Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 570 for Shift3 (0.1 sec)

  1. 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)
  2. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// S{HL, HR, AR}x: shift operations
    		// SHL: shift left
    		// SHR: shift right logical (0s are shifted in from beyond the word size)
    		// SAR: shift right arithmetic (sign bit is shifted in from beyond the word size)
    		// arg0 is the value being shifted
    		// arg1 is the amount to shift, interpreted mod (Q=64,L=32,W=32,B=32)
    		// (Note: x86 is weird, the 16 and 8 byte shifts still use all 5 bits of shift amount!)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/AbstractXcodeSwiftWithXCTestProjectIntegrationTest.groovy

            new Swift3WithSwift4XCTest(rootProjectName) | SwiftVersion.SWIFT3          | SwiftVersion.SWIFT4
            new Swift4WithSwift3XCTest(rootProjectName) | SwiftVersion.SWIFT4          | SwiftVersion.SWIFT3
            new Swift5WithSwift4XCTest(rootProjectName) | SwiftVersion.SWIFT5          | SwiftVersion.SWIFT4
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/arg.go

    //
    // - arg_Wm_shift__LSL_0__LSR_1__ASR_2__0_31:
    //     a W register encoded in Rm with a shift encoded in shift[23:22] and an amount
    //     encoded in imm6[15:10] in the range [0,31].
    //
    // - arg_IAddSub:
    //     An immediate for a add/sub instruction encoded in imm12[21:10] with an optional
    //     left shift of 12 encoded in shift[23:22].
    //
    // - arg_Rt_31_1__W_0__X_1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 20K bytes
    - Viewed (0)
  5. src/math/cmplx/tan.go

    	}
    	// Must apply Payne-Hanek range reduction
    	const (
    		mask     = 0x7FF
    		shift    = 64 - 11 - 1
    		bias     = 1023
    		fracMask = 1<<shift - 1
    	)
    	// Extract out the integer and exponent such that,
    	// x = ix * 2 ** exp.
    	ix := math.Float64bits(x)
    	exp := int(ix>>shift&mask) - bias - shift
    	ix &= fracMask
    	ix |= 1 << shift
    
    	// mPi is the binary digits of 1/Pi as a uint64 array,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  6. 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)
  7. test/fixedbugs/bug193.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	s := uint(10)
    	ss := 1 << s
    	y1 := float64(ss)
    	y2 := float64(1 << s) // ERROR "shift"
    	y3 := string(1 << s)  // ERROR "shift"
    	_, _, _, _, _ = s, ss, y1, y2, y3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 18 23:59:40 UTC 2022
    - 368 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_vet.txt

    ! go test p1_test.go
    stderr 'Logf format %d'
    go test -vet=off
    stdout '^ok'
    
    # Non-test file
    ! go test p1.go
    stderr 'Printf format %d'
    go test -x -vet=shift p1.go
    stderr '[\\/]vet.*-shift'
    stdout '\[no test files\]'
    go test -vet=off p1.go
    ! stderr '[\\/]vet.*-shift'
    stdout '\[no test files\]'
    
    # ensure all runs non-default vet
    ! go test -vet=all ./vetall/...
    stderr 'using resp before checking for errors'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 27 20:14:44 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  9. samples/helloworld/gen-helloworld.sh

      case "$1" in
        -h|--help)
          display_usage
          exit 0
          ;;
    
        --version)
          SERVICE_VERSION=$2
          shift 2
          ;;
    
        --includeService)
          INCLUDE_SERVICE=$2
          shift 2
          ;;
    
        --includeDeployment)
          INCLUDE_DEPLOYMENT=$2
          shift 2
          ;;
    
        *)
          echo "Error: Unsupported flag $1" >&2
          display_usage
          exit 1
          ;;
      esac
    done
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 19 14:18:35 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  10. tools/go-stress-test

            -test.count=*) COUNT="${1#-test.count=}" ;;
            -stress.runs=*) RUNS="${1#-stress.runs=}" ;;
            -stress.runs) RUNS="${2}"; shift ;;
            -stress.time=*) TIME="${1#-stress.time=}" ;;
            -stress.time) TIME="${2}"; shift ;;
        esac
        shift
    done
    
    RESULTS=/tmp/test-results"$(dirname ${binary})"
    mkdir -p "${RESULTS}"
    code=0
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 04 23:04:41 UTC 2022
    - 2.3K bytes
    - Viewed (0)
Back to top