Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 553 for Shift1 (1.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/math/big/arith_arm.s

    	MOVW.W	-4(R2), R6
    	ORR	R6>>R4, R7
    	MOVW.W	R7, -4(R5)
    	MOVW	R6<<R3, R7
    E7:
    	TEQ	R1, R5
    	BNE	L7
    
    	MOVW	R7, -4(R5)
    	RET
    
    Y7:	// copy loop, because shift 0 == shift 32
    	MOVW.W	-4(R2), R6
    	MOVW.W	R6, -4(R5)
    	TEQ	R1, R5
    	BNE Y7
    
    X7:
    	MOVW	$0, R1
    	MOVW	R1, c+28(FP)
    	RET
    
    
    // func shrVU(z, x []Word, s uint) (c Word)
    TEXT ·shrVU(SB),NOSPLIT,$0
    	MOVW	z_len+4(FP), R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"BIC (shifted register)","Bits":"0|0|0|0|1|0|1|0|shift:2|1|Rm:5|imm6:6|Rn:5|Rd:5","Arch":"32-bit variant","Syntax":"BIC <Wd>, <Wn>, <Wm>{, <shift> #<amount>}","Code":"","Alias":""},
    {"Name":"BIC (shifted register)","Bits":"1|0|0|0|1|0|1|0|shift:2|1|Rm:5|imm6:6|Rn:5|Rd:5","Arch":"64-bit variant","Syntax":"BIC <Xd>, <Xn>, <Xm>{, <shift> #<amount>}","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  7. src/syscall/mksyscall_libc.pl

    binmode STDOUT;
    
    if($ARGV[0] eq "-b32") {
    	$_32bit = "big-endian";
    	shift;
    } elsif($ARGV[0] eq "-l32") {
    	$_32bit = "little-endian";
    	shift;
    }
    if($ARGV[0] eq "-aix") {
    	$aix = 1;
    	shift;
    }
    if($ARGV[0] eq "-solaris") {
    	$solaris = 1;
    	shift;
    }
    if($ARGV[0] eq "-tags") {
    	shift;
    	$tags = $ARGV[0];
    	shift;
    }
    
    
    if($ARGV[0] =~ /^-/) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 11:28:51 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. src/runtime/softfloat64.go

    		return f ^ gs
    
    	case gm == 0: // x * 0 = 0 (with sign adjusted)
    		return g ^ fs
    	}
    
    	// 53-bit * 53-bit = 107- or 108-bit
    	lo, hi := mullu(fm, gm)
    	shift := mantbits64 - 1
    	trunc := lo & (1<<shift - 1)
    	mant := hi<<(64-shift) | lo>>shift
    	return fpack64(fs^gs, mant, fe+ge-1, trunc)
    }
    
    func fdiv64(f, g uint64) uint64 {
    	fs, fm, fe, fi, fn := funpack64(f)
    	gs, gm, ge, gi, gn := funpack64(g)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 17:58:41 UTC 2021
    - 11.5K bytes
    - Viewed (0)
  9. test-site/activator.bat

          ) else (
            rem Port was given, shift arguments
            set JPDA_PORT=%~2
            shift
          )
        ) else (
          set JPDA_PORT=9999
        )
        shift
    
        set DEBUG_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=!JPDA_PORT!
        goto argsloop
      )
      rem else
      set "args=%args% "%~1""
      shift
      goto argsloop
    )
    
    :run
    
    if "!args!"=="" (
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 7.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	ap_VecReg_16_20                  = &argField{Type: TypeVecReg, Shift: 0, BitFields: BitFields{{16, 5, 0}}}
    	ap_VecReg_6_10                   = &argField{Type: TypeVecReg, Shift: 0, BitFields: BitFields{{6, 5, 0}}}
    	ap_FPReg_16_20                   = &argField{Type: TypeFPReg, Shift: 0, BitFields: BitFields{{16, 5, 0}}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
Back to top