Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for shr2 (0.04 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    ((SHLL|SHRL|SARL) x (NEGQ <t> (ADDQconst [c] y))) && c & 31 == 0  => ((SHLL|SHRL|SARL) x (NEGQ <t> y))
    ((SHLL|SHRL|SARL) x (ANDQconst [c] y)) && c & 31 == 31 => ((SHLL|SHRL|SARL) x y)
    ((SHLL|SHRL|SARL) x (NEGQ <t> (ANDQconst [c] y))) && c & 31 == 31 => ((SHLL|SHRL|SARL) x (NEGQ <t> y))
    
    ((SHLQ|SHRQ|SARQ) x (ADDLconst [c] y)) && c & 63 == 0  => ((SHLQ|SHRQ|SARQ) x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    //		csor(3) algorithms(4) id-dsa-with-sha2(3) 2}
    //
    // RFC 5758 3.2 ECDSA Signature Algorithm
    //
    //	ecdsa-with-SHA256 OBJECT IDENTIFIER ::= { iso(1) member-body(2)
    //		us(840) ansi-X9-62(10045) signatures(4) ecdsa-with-SHA2(3) 2 }
    //
    //	ecdsa-with-SHA384 OBJECT IDENTIFIER ::= { iso(1) member-body(2)
    //		us(840) ansi-X9-62(10045) signatures(4) ecdsa-with-SHA2(3) 3 }
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/expr.go

    	syntax.Mul:    token.MUL,
    	syntax.Div:    token.QUO,
    	syntax.Rem:    token.REM,
    	syntax.And:    token.AND,
    	syntax.AndNot: token.AND_NOT,
    	syntax.Shl:    token.SHL,
    	syntax.Shr:    token.SHR,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  4. src/go/types/expr.go

    		x.expr = e
    		check.overflow(x, x.Pos())
    		return
    	}
    
    	x.mode = value
    	// x.typ remains unchanged
    }
    
    func isShift(op token.Token) bool {
    	return op == token.SHL || op == token.SHR
    }
    
    func isComparison(op token.Token) bool {
    	// Note: tokens are not ordered well to make this much easier
    	switch op {
    	case token.EQL, token.NEQ, token.LSS, token.LEQ, token.GTR, token.GEQ:
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    	PXOR	X0, X8
    	PXOR	X1, X9
    	PXOR	X2, X10
    	PXOR	X3, X11
    	PXOR	X4, X12
    	PXOR	X5, X13
    	PXOR	X6, X14
    	PXOR	X7, X15
    
    	// compute number of remaining 128-byte blocks
    	DECQ	CX
    	SHRQ	$7, CX
    
    	PCALIGN $16
    aesloop:
    	// scramble state
    	AESENC	X8, X8
    	AESENC	X9, X9
    	AESENC	X10, X10
    	AESENC	X11, X11
    	AESENC	X12, X12
    	AESENC	X13, X13
    	AESENC	X14, X14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top