Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AtomicOr32Variant (0.18 sec)

  1. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "AtomicAnd32Variant", argLength: 3, typ: "(Uint32, Mem)", hasSideEffects: true},         // *arg0 &= arg1.  arg2=memory.  Returns old contents of *arg0 and new memory.
    	{name: "AtomicOr32Variant", argLength: 3, typ: "(Uint32, Mem)", hasSideEffects: true},          // *arg0 |= arg1.  arg2=memory.  Returns old contents of *arg0 and new memory.
    
    	// Publication barrier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/opGen.go

    		generic:        true,
    	},
    	{
    		name:           "AtomicAnd32Variant",
    		argLen:         3,
    		hasSideEffects: true,
    		generic:        true,
    	},
    	{
    		name:           "AtomicOr32Variant",
    		argLen:         3,
    		hasSideEffects: true,
    		generic:        true,
    	},
    	{
    		name:           "PubBarrier",
    		argLen:         1,
    		hasSideEffects: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top