Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Or32 (1.36 sec)

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

    (Rsh64x64 x y)  => (Rsh64x32  x (Or32 <typ.UInt32> (Zeromask (Int64Hi y)) (Int64Lo y)))
    (Rsh64Ux64 x y) => (Rsh64Ux32 x (Or32 <typ.UInt32> (Zeromask (Int64Hi y)) (Int64Lo y)))
    (Lsh32x64 x y)  => (Lsh32x32  x (Or32 <typ.UInt32> (Zeromask (Int64Hi y)) (Int64Lo y)))
    (Rsh32x64 x y)  => (Rsh32x32  x (Or32 <typ.UInt32> (Zeromask (Int64Hi y)) (Int64Lo y)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/MIPS.rules

    (RotateLeft16 <t> x (MOVWconst [c])) => (Or16 (Lsh16x32 <t> x (MOVWconst [c&15])) (Rsh16Ux32 <t> x (MOVWconst [-c&15])))
    (RotateLeft32 <t> x (MOVWconst [c])) => (Or32 (Lsh32x32 <t> x (MOVWconst [c&31])) (Rsh32Ux32 <t> x (MOVWconst [-c&31])))
    (RotateLeft64 <t> x (MOVWconst [c])) => (Or64 (Lsh64x32 <t> x (MOVWconst [c&63])) (Rsh64Ux32 <t> x (MOVWconst [-c&63])))
    
    // unary ops
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 35.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/MIPS64.rules

    (RotateLeft16 <t> x (MOVVconst [c])) => (Or16 (Lsh16x64 <t> x (MOVVconst [c&15])) (Rsh16Ux64 <t> x (MOVVconst [-c&15])))
    (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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 41.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "And32", argLength: 2, commutative: true},
    	{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},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. src/unicode/letter.go

    	r16 := rangeTab.R16
    	// Compare as uint32 to correctly handle negative runes.
    	if len(r16) > 0 && uint32(r) <= uint32(r16[len(r16)-1].Hi) {
    		return is16(r16, uint16(r))
    	}
    	r32 := rangeTab.R32
    	if len(r32) > 0 && r >= rune(r32[0].Lo) {
    		return is32(r32, uint32(r))
    	}
    	return false
    }
    
    func isExcludingLatin(rangeTab *RangeTable, r rune) bool {
    	r16 := rangeTab.R16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    	xArgPtr16colon16 // arg ptr16:16
    	xArgPtr16colon32 // arg ptr16:32
    	xArgR16          // arg r16
    	xArgR16op        // arg r16 with +rw in opcode
    	xArgR32          // arg r32
    	xArgR32M16       // arg r32/m16
    	xArgR32M8        // arg r32/m8
    	xArgR32op        // arg r32 with +rd in opcode
    	xArgR64          // arg r64
    	xArgR64M16       // arg r64/m16
    	xArgR64op        // arg r64 with +rd in opcode
    	xArgR8           // arg r8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
Back to top