Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 158 for Cmp (0.04 sec)

  1. test/codegen/comparisons.go

    	// arm64:`CMN`,-`CMP`
    	if a < -8 {
    		c1 = 1
    	}
    	// arm64:`CMN`,-`CMP`
    	if a+1 == 0 {
    		c2 = 1
    	}
    	// arm64:`CMN`,-`CMP`
    	if a+3 != 0 {
    		c3 = 1
    	}
    	// arm64:`CMN`,-`CMP`
    	if a+b == 0 {
    		c4 = 1
    	}
    	// arm64:`CMN`,-`CMP`
    	if b+c != 0 {
    		c5 = 1
    	}
    	// arm64:`CMN`,-`CMP`
    	if a == -c {
    		c6 = 1
    	}
    	// arm64:`CMN`,-`CMP`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. src/math/big/arith_ppc64x.s

    	ADD   $-4, R11		// R11 = z_len - 4
    	BDNZ  loop
    
    	// We may have some elements to read
    	CMP R11, $0
    	BEQ final
    
    tail:
    	MOVDU 8(R8), R20
    	ADDZE R20, R24
    	ADD $-1, R11
    	MOVDU R24, 8(R10)
    	CMP R11, $0
    	BEQ final
    
    	MOVDU 8(R8), R20
    	ADDZE R20, R24
    	ADD $-1, R11
    	MOVDU R24, 8(R10)
    	CMP R11, $0
    	BEQ final
    
    	MOVD 8(R8), R20
    	ADDZE R20, R24
    	MOVD R24, 8(R10)
    
    final:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  3. operator/pkg/compare/compare.go

    		return found && IsLeafNode(treeNode)
    	}, cmp.Ignore()), nil
    }
    
    // genPathIgnoreOpt returns a cmp.Option to ignore paths specified in parameter ignorePaths.
    func genPathIgnoreOpt(ignorePaths []string) cmp.Option {
    	return cmp.FilterPath(func(curPath cmp.Path) bool {
    		cp := strings.Join(pathToStringList(curPath), ".")
    		for _, ip := range ignorePaths {
    			if res, err := filepath.Match(ip, cp); err == nil && res {
    				return true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewritePPC64latelower.go

    		v0.AuxInt = int64ToAuxInt(1)
    		v.AddArg2(v0, cmp)
    		return true
    	}
    	// match: (SETBC [0] cmp)
    	// cond: buildcfg.GOPPC64 <= 9
    	// result: (ISELZ [0] (MOVDconst [1]) cmp)
    	for {
    		if auxIntToInt32(v.AuxInt) != 0 {
    			break
    		}
    		cmp := v_0
    		if !(buildcfg.GOPPC64 <= 9) {
    			break
    		}
    		v.reset(OpPPC64ISELZ)
    		v.AuxInt = int32ToAuxInt(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. test/codegen/mathbits.go

    func Add(x, y, ci uint) (r, co uint) {
    	// arm64:"ADDS","ADCS","ADC",-"ADD\t",-"CMP"
    	// amd64:"NEGL","ADCQ","SBBQ","NEGQ"
    	// ppc64x: "ADDC", "ADDE", "ADDZE"
    	// s390x:"ADDE","ADDC\t[$]-1,"
    	// riscv64: "ADD","SLTU"
    	return bits.Add(x, y, ci)
    }
    
    func AddC(x, ci uint) (r, co uint) {
    	// arm64:"ADDS","ADCS","ADC",-"ADD\t",-"CMP"
    	// amd64:"NEGL","ADCQ","SBBQ","NEGQ"
    	// loong64: "ADDV", "SGTU"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/asm_zos_s390x.s

    	//  arg 1 ---> R1
    	CMP  R8, $0
    	BEQ  docall
    	SUB  $1, R8
    	MOVD 0(R7), R1
    
    	//  arg 2 ---> R2
    	CMP  R8, $0
    	BEQ  docall
    	SUB  $1, R8
    	ADD  $8, R7
    	MOVD 0(R7), R2
    
    	//  arg 3 --> R3
    	CMP  R8, $0
    	BEQ  docall
    	SUB  $1, R8
    	ADD  $8, R7
    	MOVD 0(R7), R3
    
    	CMP  R8, $0
    	BEQ  docall
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. src/runtime/sys_linux_ppc64x.s

    	// compared to ARM64 and others.
    	CMP	$0, R9
    	BEQ	sigtrampnog // g == nil
    
    	// g is not nil. Check further.
    	MOVD	g_m(R9), R6
    	CMP	$0, R6
    	BEQ	sigtramp    // g.m == nil
    	MOVW	m_ncgo(R6), R7
    	CMPW	$0, R7
    	BEQ	sigtramp    // g.m.ncgo = 0
    	MOVD	m_curg(R6), R7
    	CMP	$0, R7
    	BEQ	sigtramp    // g.m.curg == nil
    	MOVD	g_syscallsp(R7), R7
    	CMP	$0, R7
    	BEQ	sigtramp    // g.m.curg.syscallsp == 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/config/upgradeconfiguration_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package config
    
    import (
    	"os"
    	"path/filepath"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/google/go-cmp/cmp/cmpopts"
    	"github.com/lithammer/dedent"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/utils/ptr"
    	"sigs.k8s.io/yaml"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. pkg/scheduler/apis/config/validation/validation_pluginargs_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package validation
    
    import (
    	"fmt"
    	"strings"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/google/go-cmp/cmp/cmpopts"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/errors"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	"k8s.io/apiserver/pkg/util/feature"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  10. pkg/controller/job/indexed_job_utils_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package job
    
    import (
    	"math"
    	"strconv"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	batch "k8s.io/api/batch/v1"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/klog/v2/ktesting"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top