Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for SHR (2.8 sec)

  1. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappedRange.kt

        val b1: Int
          get() =
            when {
              codepointDelta < 0 -> 0x40 or (absoluteDelta shr 14)
              codepointDelta > 0 -> 0x50 or (absoluteDelta shr 14)
              else -> error("Unexpected codepointDelta of 0")
            }
    
        val b2: Int
          get() = absoluteDelta shr 7 and 0x7f
    
        val b3: Int
          get() = absoluteDelta and 0x7f
    
        companion object {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/math/big/decimal.go

    	x.mant = append(x.mant[:0], s[:n]...)
    
    	// Do any (remaining) shift right in decimal representation.
    	if shift < 0 {
    		for shift < -maxShift {
    			shr(x, maxShift)
    			shift += maxShift
    		}
    		shr(x, uint(-shift))
    	}
    }
    
    // shr implements x >> s, for s <= maxShift.
    func shr(x *decimal, s uint) {
    	// Division by 1<<s using shift-and-subtract algorithm.
    
    	// pick up enough leading digits to cover first shift
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 22:45:29 UTC 2020
    - 6.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

            String urlpath = getURLPath();
            String shr = getShare();
            if ( urlpath.length() > 1 ) {
                int i = urlpath.length() - 2;
                while ( urlpath.charAt(i) != '/' ) {
                    i--;
                }
                return urlpath.substring(i + 1);
            }
            else if ( shr != null ) {
                return shr + '/';
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:24:53 UTC 2019
    - 23.9K bytes
    - Viewed (0)
  4. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappingTables.kt

        val sectionOffset = rangesBuffer.size.toInt() / 4
    
        // Section prefix.
        sectionIndexBuffer.writeByte(section and 0x1fc000 shr 14)
        sectionIndexBuffer.writeByte((section and 0x3f80) shr 7)
    
        // Section index.
        sectionIndexBuffer.writeByte((sectionOffset and 0x3f80) shr 7)
        sectionIndexBuffer.writeByte(sectionOffset and 0x7f)
    
        // Ranges.
        for (range in sectionMappedRanges) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerWriter.kt

          val lengthByteCount = (lengthBitCount + 7) / 8
          sink.writeByte(0b1000_0000 or lengthByteCount)
          for (shift in (lengthByteCount - 1) * 8 downTo 0 step 8) {
            sink.writeByte((length shr shift).toInt())
          }
        }
    
        // Write the payload.
        sink.writeAll(content)
      }
    
      /**
       * Execute [block] with a new namespace for type hints. Type hints from the enclosing type are no
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/go/token/token.go

    	STRING // "abc"
    	literal_end
    
    	operator_beg
    	// Operators and delimiters
    	ADD // +
    	SUB // -
    	MUL // *
    	QUO // /
    	REM // %
    
    	AND     // &
    	OR      // |
    	XOR     // ^
    	SHL     // <<
    	SHR     // >>
    	AND_NOT // &^
    
    	ADD_ASSIGN // +=
    	SUB_ASSIGN // -=
    	MUL_ASSIGN // *=
    	QUO_ASSIGN // /=
    	REM_ASSIGN // %=
    
    	AND_ASSIGN     // &=
    	OR_ASSIGN      // |=
    	XOR_ASSIGN     // ^=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. src/math/fma.go

    	switch {
    	case n == 0:
    		return u1, u2
    	case n == 64:
    		return 0, u1 | nonzero(u2)
    	case n >= 128:
    		return 0, nonzero(u1 | u2)
    	case n < 64:
    		r1, r2 = shr(u1, u2, n)
    		r2 |= nonzero(u2 & (1<<n - 1))
    	case n < 128:
    		r1, r2 = shr(u1, u2, n)
    		r2 |= nonzero(u1&(1<<(n-64)-1) | u2)
    	}
    	return
    }
    
    func lz(u1, u2 uint64) (l int32) {
    	l = int32(bits.LeadingZeros64(u1))
    	if l == 64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 05 22:05:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64latelower.rules

    (MOVBQZX x) && zeroUpper56Bits(x,3)...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 636 bytes
    - Viewed (0)
  9. src/go/types/token_test.go

    	token.REM_ASSIGN:     token.REM,
    	token.AND_ASSIGN:     token.AND,
    	token.OR_ASSIGN:      token.OR,
    	token.XOR_ASSIGN:     token.XOR,
    	token.SHL_ASSIGN:     token.SHL,
    	token.SHR_ASSIGN:     token.SHR,
    	token.AND_NOT_ASSIGN: token.AND_NOT,
    }
    
    func TestZeroTok(t *testing.T) {
    	// zero value for token.Token must be token.ILLEGAL
    	var zero token.Token
    	if token.ILLEGAL != zero {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 08 03:40:04 UTC 2015
    - 1.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/operator_string.go

    	_ = x[Gtr-11]
    	_ = x[Geq-12]
    	_ = x[Add-13]
    	_ = x[Sub-14]
    	_ = x[Or-15]
    	_ = x[Xor-16]
    	_ = x[Mul-17]
    	_ = x[Div-18]
    	_ = x[Rem-19]
    	_ = x[And-20]
    	_ = x[AndNot-21]
    	_ = x[Shl-22]
    	_ = x[Shr-23]
    }
    
    const _Operator_name = ":!<-~||&&==!=<<=>>=+-|^*/%&&^<<>>"
    
    var _Operator_index = [...]uint8{0, 1, 2, 4, 5, 7, 9, 11, 13, 14, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 33}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 07 05:19:41 UTC 2021
    - 1K bytes
    - Viewed (0)
Back to top