Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Cmp (0.06 sec)

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

    			cmp := v_0.Args[0]
    			b.resetWithControl(Block386GE, cmp)
    			return true
    		}
    		// match: (If (SETEQ cmp) yes no)
    		// result: (EQ cmp yes no)
    		for b.Controls[0].Op == Op386SETEQ {
    			v_0 := b.Controls[0]
    			cmp := v_0.Args[0]
    			b.resetWithControl(Block386EQ, cmp)
    			return true
    		}
    		// match: (If (SETNE cmp) yes no)
    		// result: (NE cmp yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritePPC64.go

    	typ := &b.Func.Config.Types
    	// match: (FGreaterEqual cmp)
    	// result: (OR (SETBC [2] cmp) (SETBC [1] cmp))
    	for {
    		cmp := v_0
    		v.reset(OpPPC64OR)
    		v0 := b.NewValue0(v.Pos, OpPPC64SETBC, typ.Int32)
    		v0.AuxInt = int32ToAuxInt(2)
    		v0.AddArg(cmp)
    		v1 := b.NewValue0(v.Pos, OpPPC64SETBC, typ.Int32)
    		v1.AuxInt = int32ToAuxInt(1)
    		v1.AddArg(cmp)
    		v.AddArg2(v0, v1)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteARM.go

    			b.swapSuccessors()
    			return true
    		}
    		// match: (EQ (InvertFlags cmp) yes no)
    		// result: (EQ cmp yes no)
    		for b.Controls[0].Op == OpARMInvertFlags {
    			v_0 := b.Controls[0]
    			cmp := v_0.Args[0]
    			b.resetWithControl(BlockARMEQ, cmp)
    			return true
    		}
    		// match: (EQ (CMP x (RSBconst [0] y)))
    		// result: (EQ (CMN x y))
    		for b.Controls[0].Op == OpARMCMP {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm/armasm/tables.go

    	CMP_EQ:            "CMP.EQ",
    	CMP_NE:            "CMP.NE",
    	CMP_CS:            "CMP.CS",
    	CMP_CC:            "CMP.CC",
    	CMP_MI:            "CMP.MI",
    	CMP_PL:            "CMP.PL",
    	CMP_VS:            "CMP.VS",
    	CMP_VC:            "CMP.VC",
    	CMP_HI:            "CMP.HI",
    	CMP_LS:            "CMP.LS",
    	CMP_GE:            "CMP.GE",
    	CMP_LT:            "CMP.LT",
    	CMP_GT:            "CMP.GT",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 267.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	/*8671*/ uint16(xSetOp), uint16(CMP),
    	/*8673*/ uint16(xReadSlashR),
    	/*8674*/ uint16(xArgRM32),
    	/*8675*/ uint16(xArgR32),
    	/*8676*/ uint16(xMatch),
    	/*8677*/ uint16(xCondDataSize), 8665, 8671, 8681,
    	/*8681*/ uint16(xSetOp), uint16(CMP),
    	/*8683*/ uint16(xReadSlashR),
    	/*8684*/ uint16(xArgRM64),
    	/*8685*/ uint16(xArgR64),
    	/*8686*/ uint16(xMatch),
    	/*8687*/ uint16(xSetOp), uint16(CMP),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    			kind = ssa.BoundsSlice3CU
    		}
    	}
    
    	var cmp *ssa.Value
    	if kind == ssa.BoundsIndex || kind == ssa.BoundsIndexU {
    		cmp = s.newValue2(ssa.OpIsInBounds, types.Types[types.TBOOL], idx, len)
    	} else {
    		cmp = s.newValue2(ssa.OpIsSliceInBounds, types.Types[types.TBOOL], idx, len)
    	}
    	b := s.endBlock()
    	b.Kind = ssa.BlockIf
    	b.SetControl(cmp)
    	b.Likely = ssa.BranchLikely
    	b.AddEdgeTo(bNext)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    package validation
    
    import (
    	"encoding/json"
    	"fmt"
    	"math"
    	"net"
    	"path"
    	"path/filepath"
    	"reflect"
    	"regexp"
    	"strings"
    	"sync"
    	"unicode"
    	"unicode/utf8"
    
    	"github.com/google/go-cmp/cmp"
    	v1 "k8s.io/api/core/v1"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	"k8s.io/apimachinery/pkg/api/resource"
    	apimachineryvalidation "k8s.io/apimachinery/pkg/api/validation"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

        // CHECK-NEXT: %[[LEAKY:.*]] = mhlo.multiply %[[INP:.*]], %[[ALPHA]] : tensor<1x4x4x3xf32>
        // CHECK-NEXT: %[[CMP:.*]] = mhlo.compare GT, %[[INP]], %[[ZERO]], NOTYPE : (tensor<1x4x4x3xf32>, tensor<1x4x4x3xf32>) -> tensor<1x4x4x3xi1>
        // CHECK-NEXT: %[[RES:.*]] = mhlo.select %[[CMP]], %[[INP]], %[[LEAKY]] : tensor<1x4x4x3xi1>, tensor<1x4x4x3xf32>
        // CHECK-NEXT: return %[[RES]] : tensor<1x4x4x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteS390X.go

    	v_0 := v.Args[0]
    	// match: (LOCGR {c} x y (InvertFlags cmp))
    	// result: (LOCGR {c.ReverseComparison()} x y cmp)
    	for {
    		c := auxToS390xCCMask(v.Aux)
    		x := v_0
    		y := v_1
    		if v_2.Op != OpS390XInvertFlags {
    			break
    		}
    		cmp := v_2.Args[0]
    		v.reset(OpS390XLOCGR)
    		v.Aux = s390xCCMaskToAux(c.ReverseComparison())
    		v.AddArg3(x, y, cmp)
    		return true
    	}
    	// match: (LOCGR {c} _ x (FlagEQ))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  10. pkg/registry/core/service/storage/storage_test.go

    limitations under the License.
    */
    
    package storage
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"reflect"
    	stdruntime "runtime"
    	"strings"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/google/go-cmp/cmp/cmpopts"
    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/fields"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
Back to top