Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for new_g (0.58 sec)

  1. src/cmd/compile/internal/ssa/rewritePPC64.go

    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (AtomicCompareAndSwap32 ptr old new_ mem)
    	// result: (LoweredAtomicCas32 [1] ptr old new_ mem)
    	for {
    		ptr := v_0
    		old := v_1
    		new_ := v_2
    		mem := v_3
    		v.reset(OpPPC64LoweredAtomicCas32)
    		v.AuxInt = int64ToAuxInt(1)
    		v.AddArg4(ptr, old, new_, mem)
    		return true
    	}
    }
    func rewriteValuePPC64_OpAtomicCompareAndSwap64(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (AtomicCompareAndSwap32 ptr old new_ mem)
    	// result: (CMPXCHGLlock ptr old new_ mem)
    	for {
    		ptr := v_0
    		old := v_1
    		new_ := v_2
    		mem := v_3
    		v.reset(OpAMD64CMPXCHGLlock)
    		v.AddArg4(ptr, old, new_, mem)
    		return true
    	}
    }
    func rewriteValueAMD64_OpAtomicCompareAndSwap64(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteS390X.go

    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (AtomicCompareAndSwap32 ptr old new_ mem)
    	// result: (LoweredAtomicCas32 ptr old new_ mem)
    	for {
    		ptr := v_0
    		old := v_1
    		new_ := v_2
    		mem := v_3
    		v.reset(OpS390XLoweredAtomicCas32)
    		v.AddArg4(ptr, old, new_, mem)
    		return true
    	}
    }
    func rewriteValueS390X_OpAtomicCompareAndSwap64(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// allocating or deallocating the plugin specific data. That is, in the 4
    /// `cleanup` functions (one for each data structure), the `init` function for
    /// `TF_Filesystem` and the `new_*` methods of `TF_FilesystemOps` to initialize
    /// the 3 types of files. In all other cases, there is no need to modify the
    /// address of the opaque data pointer, hence the wrapper pointer is marked
    /// `const`.
    ///
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
Back to top