Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 232 for Shift2 (0.09 sec)

  1. src/syscall/syscall_solaris.go

    func (w WaitStatus) Stopped() bool { return w&mask == stopped && Signal(w>>shift) != SIGSTOP }
    
    func (w WaitStatus) Continued() bool { return w&mask == stopped && Signal(w>>shift) == SIGSTOP }
    
    func (w WaitStatus) StopSignal() Signal {
    	if !w.Stopped() {
    		return -1
    	}
    	return Signal(w>>shift) & 0xFF
    }
    
    func (w WaitStatus) TrapCause() int { return -1 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SID.java

                ret += Hexdump.toHexString(this.identifier_authority, 0, 6);
            }
            else {
                long shift = 0;
                long id = 0;
                for ( int i = 5; i > 1; i-- ) {
                    id += ( this.identifier_authority[ i ] & 0xFFL ) << shift;
                    shift += 8;
                }
                ret += id;
            }
    
            for ( int i = 0; i < this.sub_authority_count; i++ )
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    		if a.Extend == lsl {
    			// Refer to ARM reference manual, for byte load/store(register), the index
    			// shift amount must be 0, encoded in "S" as 0 if omitted, or as 1 if present.
    			// a.Amount indicates the index shift amount, encoded in "S" field.
    			// a.ShiftMustBeZero is set true indicates the index shift amount must be 0.
    			// When a.ShiftMustBeZero is true, GNU syntax prints "[Xn, Xm lsl #0]" if "S"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  4. src/go/constant/value_test.go

    	`0xb | 0xa0 = 0xab`,
    	`? | 0 = ?`,
    	`0 | ? = ?`,
    
    	`0 ^ 0 = 0`,
    	`1 ^ -1 = -2`,
    	`? ^ 0 = ?`,
    	`0 ^ ? = ?`,
    
    	`0 &^ 0 = 0`,
    	`0xf &^ 1 = 0xe`,
    	`1 &^ 0xf = 0`,
    	// etc.
    
    	// shifts
    	`0 << 0 = 0`,
    	`1 << 10 = 1024`,
    	`0 >> 0 = 0`,
    	`1024 >> 10 == 1`,
    	`? << 0 == ?`,
    	`? >> 10 == ?`,
    	// etc.
    
    	// comparisons
    	`false == false = true`,
    	`false == true = false`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    	if math.Abs(score) < 0.2 {
    		saturation *= math.Abs(score) / 0.2
    	}
    
    	// Apply 'shift' to move scores away from 0.0 (grey).
    	if score > 0.0 {
    		score = math.Pow(score, (1.0 - shift))
    	}
    	if score < 0.0 {
    		score = -math.Pow(-score, (1.0 - shift))
    	}
    
    	var r, g, b float64 // red, green, blue
    	if score < 0.0 {
    		g = value
    		r = value * (1 + saturation*score)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/http2/Hpack.kt

            var result = prefixMask
            var shift = 0
            while (true) {
              val b = readByte()
              if (b and 0x80 != 0) { // Equivalent to (b >= 128) since b is in [0..255].
                result += b and 0x7f shl shift
                shift += 7
              } else {
                result += b shl shift // Last byte.
                break
              }
            }
            return result
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  7. hack/lib/util.sh

        local sudo=$1
        local dest_dir=$2
        local ca=$3
        local id=$4
        local cn=${5:-$4}
        local groups=""
        local SEP=""
        shift 5
        while [ -n "${1:-}" ]; do
            groups+="${SEP}{\"O\":\"$1\"}"
            SEP=","
            shift 1
        done
        ${sudo} /usr/bin/env bash -e <<EOF
        cd ${dest_dir}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. src/go/types/builtins.go

    			//    floating-point numbers if possible,
    			// 2) if one of them is not constant (possible because
    			//    it contains a shift that is yet untyped), convert
    			//    both of them to float64 since they must have the
    			//    same type to succeed (this will result in an error
    			//    because shifts of floats are not permitted)
    			if x.mode == constant_ && y.mode == constant_ {
    				toFloat := func(x *operand) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.h

          // Are we past the insertion portion of the new operation sequence?
          // Then we need to convert indices back to the original sequence.
          const int shift = (m.op_index >= remat.insert + len) ? len : 0;
          m.size += patch ? 0 : operations_[m.op_index - shift].alloc;
          // deltas is sorted by location; apply any corrections to the current
          // operator.
          for (; idelta != deltas.end() && idelta->op_index == m.op_index;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 12K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/magic.go

    //          = ⎡2^(n+s-1)/c⎤
    //          = ⎡m/2⎤
    //   ⎣x / c⎦ = ⎣x' * m' / 2^(n'+s')⎦
    //   ⎣x / c⎦ = ⎣⎣x/2⎦ * ⎡m/2⎤ / 2^(n+s-2)⎦
    //   ⎣x / c⎦ = ⎣⎣⎣x/2⎦ * ⎡m/2⎤ / 2^n⎦ / 2^(s-2)⎦
    //   shift + multiply + shift
    //
    // Case 3: everything else
    //   let k = m - 2^n. k fits in n bits.
    //   ⎣x / c⎦ = ⎣x * m / 2^(n+s)⎦
    //   ⎣x / c⎦ = ⎣x * (2^n + k) / 2^(n+s)⎦
    //   ⎣x / c⎦ = ⎣(x + x * k / 2^n) / 2^s⎦
    //   ⎣x / c⎦ = ⎣(x + ⎣x * k / 2^n⎦) / 2^s⎦
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top