Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Or64 (0.43 sec)

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

    (RotateLeft32 <t> x (MOVVconst [c])) => (Or32 (Lsh32x64 <t> x (MOVVconst [c&31])) (Rsh32Ux64 <t> x (MOVVconst [-c&31])))
    (RotateLeft64 <t> x (MOVVconst [c])) => (Or64 (Lsh64x64 <t> x (MOVVconst [c&63])) (Rsh64Ux64 <t> x (MOVVconst [-c&63])))
    
    // unary ops
    (Neg(64|32|16|8) ...) => (NEGV ...)
    (Neg(32|64)F ...) => (NEG(F|D) ...)
    
    (Com(64|32|16|8) x) => (NOR (MOVVconst [0]) x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 41.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "And64", argLength: 2, commutative: true},
    
    	{name: "Or8", argLength: 2, commutative: true}, // arg0 | arg1
    	{name: "Or16", argLength: 2, commutative: true},
    	{name: "Or32", argLength: 2, commutative: true},
    	{name: "Or64", argLength: 2, commutative: true},
    
    	{name: "Xor8", argLength: 2, commutative: true}, // arg0 ^ arg1
    	{name: "Xor16", argLength: 2, commutative: true},
    	{name: "Xor32", argLength: 2, commutative: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/html.go

    			// hex
    			i++
    			j := i
    			for j < len(s) && isHexDigit(s[j]) {
    				j++
    			}
    			if j-i < 1 || j-i > 6 || j >= len(s) || s[j] != ';' {
    				return nil, 0, 0, false
    			}
    			r64, _ := strconv.ParseInt(s[i:j], 16, 0)
    			r = int(r64)
    			end = j + 1
    		} else {
    			// decimal
    			j := i
    			for j < len(s) && isDigit(s[j]) {
    				j++
    			}
    			if j-i < 1 || j-i > 7 || j >= len(s) || s[j] != ';' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top