Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 136 for Shift3 (0.2 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    	/* Vector shift */
    	{as: AVS, a1: C_VREG, a2: C_VREG, a6: C_VREG, type_: 82, size: 4},                 /* vector shift, vx-form */
    	{as: AVSA, a1: C_VREG, a2: C_VREG, a6: C_VREG, type_: 82, size: 4},                /* vector shift algebraic, vx-form */
    	{as: AVSOI, a1: C_U16CON, a2: C_VREG, a3: C_VREG, a6: C_VREG, type_: 83, size: 4}, /* vector shift by octet immediate, va-form */
    
    	/* Vector count */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. cluster/log-dump/log-dump.sh

    # $3 should be a string array of file names.
    # This function shouldn't ever trigger errexit, but doesn't block stderr.
    function copy-logs-from-node() {
        local -r node="${1}"
        local -r dir="${2}"
        shift
        shift
        local files=("$@")
        # Append "*"
        # The * at the end is needed to also copy rotated logs (which happens
        # in large clusters and long runs).
        files=( "${files[@]/%/*}" )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  3. gradlew

            # NB: a `for` loop captures its iteration list before it begins, so
            # changing the positional parameters here affects neither the number of
            # iterations, nor the values presented in `arg`.
            shift                   # remove old arg
            set -- "$@" "$arg"      # push replacement arg
        done
    fi
    
    
    # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. src/runtime/rand.go

    		mp.cheaprand += 0xa0761d6478bd642f
    		hi, lo := math.Mul64(mp.cheaprand, mp.cheaprand^0xe7037ed1a0b428db)
    		return uint32(hi ^ lo)
    	}
    
    	// Implement xorshift64+: 2 32-bit xorshift sequences added together.
    	// Shift triplet [17,7,16] was calculated as indicated in Marsaglia's
    	// Xorshift paper: https://www.jstatsoft.org/article/view/v008i14/xorshift.pdf
    	// This generator passes the SmallCrush suite, part of TestU01 framework:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. src/image/gif/writer_test.go

    			return
    		}
    
    		rednessAt := func(x int, y int) uint32 {
    			r, _, _, _ := m.At(x, y).RGBA()
    			// Shift by 8 to convert from 16 bit color to 8 bit color.
    			return r >> 8
    		}
    
    		// Round-tripping a still (non-animated) image.Image through
    		// Encode+Decode should shift the origin to (0, 0).
    		if got, want := rednessAt(0, 0), uint32(0x22); got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go

    	Freq      int64
    	Maxerror  int64
    	Esterror  int64
    	Status    int32
    	Constant  int64
    	Precision int64
    	Tolerance int64
    	Time      Timeval
    	Tick      int64
    	Ppsfreq   int64
    	Jitter    int64
    	Shift     int32
    	Stabil    int64
    	Jitcnt    int64
    	Calcnt    int64
    	Errcnt    int64
    	Stbcnt    int64
    	Tai       int32
    	_         [44]byte
    }
    
    type Time_t int64
    
    type Tms struct {
    	Utime  int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go

    	Freq      int32
    	Maxerror  int32
    	Esterror  int32
    	Status    int32
    	Constant  int32
    	Precision int32
    	Tolerance int32
    	Time      Timeval
    	Tick      int32
    	Ppsfreq   int32
    	Jitter    int32
    	Shift     int32
    	Stabil    int32
    	Jitcnt    int32
    	Calcnt    int32
    	Errcnt    int32
    	Stbcnt    int32
    	Tai       int32
    	_         [44]byte
    }
    
    type Time_t int32
    
    type Tms struct {
    	Utime  int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go

    	Freq      int64
    	Maxerror  int64
    	Esterror  int64
    	Status    int32
    	Constant  int64
    	Precision int64
    	Tolerance int64
    	Time      Timeval
    	Tick      int64
    	Ppsfreq   int64
    	Jitter    int64
    	Shift     int32
    	Stabil    int64
    	Jitcnt    int64
    	Calcnt    int64
    	Errcnt    int64
    	Stbcnt    int64
    	Tai       int32
    	_         [44]byte
    }
    
    type Time_t int64
    
    type Tms struct {
    	Utime  int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. src/make.bash

    rm -f ./runtime/runtime_defs.go
    
    # Finally!  Run the build.
    
    verbose=false
    vflag=""
    if [[ "$1" == "-v" ]]; then
    	verbose=true
    	vflag=-v
    	shift
    fi
    
    goroot_bootstrap_set=${GOROOT_BOOTSTRAP+"true"}
    if [[ -z "$GOROOT_BOOTSTRAP" ]]; then
    	GOROOT_BOOTSTRAP="$HOME/go1.4"
    	for d in sdk/go$bootgo go$bootgo; do
    		if [[ -d "$HOME/$d" ]]; then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. src/syscall/syscall_linux.go

    func (w WaitStatus) ExitStatus() int {
    	if !w.Exited() {
    		return -1
    	}
    	return int(w>>shift) & 0xFF
    }
    
    func (w WaitStatus) Signal() Signal {
    	if !w.Signaled() {
    		return -1
    	}
    	return Signal(w & mask)
    }
    
    func (w WaitStatus) StopSignal() Signal {
    	if !w.Stopped() {
    		return -1
    	}
    	return Signal(w>>shift) & 0xFF
    }
    
    func (w WaitStatus) TrapCause() int {
    	if w.StopSignal() != SIGTRAP {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
Back to top