Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Cond (0.16 sec)

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

    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (CMOVLCC x y (InvertFlags cond))
    	// result: (CMOVLLS x y cond)
    	for {
    		x := v_0
    		y := v_1
    		if v_2.Op != OpAMD64InvertFlags {
    			break
    		}
    		cond := v_2.Args[0]
    		v.reset(OpAMD64CMOVLLS)
    		v.AddArg3(x, y, cond)
    		return true
    	}
    	// match: (CMOVLCC _ x (FlagEQ))
    	// result: x
    	for {
    		x := v_1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM64.go

    	}
    	// match: (CMPWconst (MOVBUreg _) [c])
    	// cond: 0xff < c
    	// result: (FlagConstant [subFlags64(0,1)])
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		if v_0.Op != OpARM64MOVBUreg || !(0xff < c) {
    			break
    		}
    		v.reset(OpARM64FlagConstant)
    		v.AuxInt = flagConstantToAuxInt(subFlags64(0, 1))
    		return true
    	}
    	// match: (CMPWconst (MOVHUreg _) [c])
    	// cond: 0xffff < c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritegeneric.go

    	// match: (Ctz8 (Const8 [c]))
    	// cond: config.PtrSize == 4
    	// result: (Const32 [int32(ntz8(c))])
    	for {
    		if v_0.Op != OpConst8 {
    			break
    		}
    		c := auxIntToInt8(v_0.AuxInt)
    		if !(config.PtrSize == 4) {
    			break
    		}
    		v.reset(OpConst32)
    		v.AuxInt = int32ToAuxInt(int32(ntz8(c)))
    		return true
    	}
    	// match: (Ctz8 (Const8 [c]))
    	// cond: config.PtrSize == 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"TrimPrefix", Func, 1},
    		{"TrimRight", Func, 0},
    		{"TrimRightFunc", Func, 0},
    		{"TrimSpace", Func, 0},
    		{"TrimSuffix", Func, 1},
    	},
    	"sync": {
    		{"(*Cond).Broadcast", Method, 0},
    		{"(*Cond).Signal", Method, 0},
    		{"(*Cond).Wait", Method, 0},
    		{"(*Map).CompareAndDelete", Method, 20},
    		{"(*Map).CompareAndSwap", Method, 20},
    		{"(*Map).Delete", Method, 9},
    		{"(*Map).Load", Method, 9},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. RELEASE.md

    *   `tf.cond` emits a StatelessIf op if the branch functions are stateless and
        do not touch any resources.
    *   `tf.cond`, `tf.while` and `if` and `while` in AutoGraph now accept a
        nonscalar predicate if has a single element. This does not affect non-V2
        control flow.
    *   `tf.while_loop` emits a StatelessWhile op if the cond and body functions are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top