Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 104 for cmpi (0.11 sec)

  1. src/crypto/internal/bigmod/nat_amd64.s

    //go:build !purego
    
    // func addMulVVW1024(z *uint, x *uint, y uint) (c uint)
    // Requires: ADX, BMI2
    TEXT ·addMulVVW1024(SB), $0-32
    	CMPB ·supportADX+0(SB), $0x01
    	JEQ  adx
    	MOVQ z+0(FP), CX
    	MOVQ x+8(FP), BX
    	MOVQ y+16(FP), SI
    	XORQ DI, DI
    
    	// Iteration 0
    	MOVQ (BX), AX
    	MULQ SI
    	ADDQ (CX), AX
    	ADCQ $0x00, DX
    	ADDQ DI, AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 22:37:58 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  2. src/cmd/objdump/objdump_test.go

    	"jmp",
    	"callq",
    	"cmpb",
    }
    
    var i386GnuNeed = []string{
    	"jmp",
    	"call",
    	"cmp",
    }
    
    var armNeed = []string{
    	"B main.main(SB)",
    	"BL main.Println(SB)",
    	"RET",
    }
    
    var arm64Need = []string{
    	"JMP main.main(SB)",
    	"CALL main.Println(SB)",
    	"RET",
    }
    
    var armGnuNeed = []string{ // for both ARM and AMR64
    	"ldr",
    	"bl",
    	"cmp",
    }
    
    var ppcNeed = []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// CMPx: compare arg0 to arg1.
    		{name: "CMPQ", argLength: 2, reg: gp2flags, asm: "CMPQ", typ: "Flags"},
    		{name: "CMPL", argLength: 2, reg: gp2flags, asm: "CMPL", typ: "Flags"},
    		{name: "CMPW", argLength: 2, reg: gp2flags, asm: "CMPW", typ: "Flags"},
    		{name: "CMPB", argLength: 2, reg: gp2flags, asm: "CMPB", typ: "Flags"},
    
    		// CMPxconst: compare arg0 to auxint.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  4. test/codegen/bits.go

    	return x | ^y
    }
    
    // check bitsets
    func bitSetPowerOf2Test(x int) bool {
    	// amd64:"BTL\t[$]3"
    	return x&8 == 8
    }
    
    func bitSetTest(x int) bool {
    	// amd64:"ANDL\t[$]9, AX"
    	// amd64:"CMPQ\tAX, [$]9"
    	return x&9 == 9
    }
    
    // mask contiguous one bits
    func cont1Mask64U(x uint64) uint64 {
    	// s390x:"RISBGZ\t[$]16, [$]47, [$]0,"
    	return x & 0x0000ffffffff0000
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/anames.go

    	"CMOVWLS",
    	"CMOVWLT",
    	"CMOVWMI",
    	"CMOVWNE",
    	"CMOVWOC",
    	"CMOVWOS",
    	"CMOVWPC",
    	"CMOVWPL",
    	"CMOVWPS",
    	"CMPB",
    	"CMPL",
    	"CMPPD",
    	"CMPPS",
    	"CMPQ",
    	"CMPSB",
    	"CMPSD",
    	"CMPSL",
    	"CMPSQ",
    	"CMPSS",
    	"CMPSW",
    	"CMPW",
    	"CMPXCHG16B",
    	"CMPXCHG8B",
    	"CMPXCHGB",
    	"CMPXCHGL",
    	"CMPXCHGQ",
    	"CMPXCHGW",
    	"COMISD",
    	"COMISS",
    	"CPUID",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteAMD64.go

    			b.resetWithControl(BlockAMD64LE, cmp)
    			return true
    		}
    		// match: (If (SETG cmp) yes no)
    		// result: (GT cmp yes no)
    		for b.Controls[0].Op == OpAMD64SETG {
    			v_0 := b.Controls[0]
    			cmp := v_0.Args[0]
    			b.resetWithControl(BlockAMD64GT, cmp)
    			return true
    		}
    		// match: (If (SETGE cmp) yes no)
    		// result: (GE cmp yes no)
    		for b.Controls[0].Op == OpAMD64SETGE {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  7. src/runtime/asm_amd64.s

    	MOVQ	SP, (g_stack+stack_hi)(DI)
    
    	// find out information about the processor we're on
    	MOVL	$0, AX
    	CPUID
    	CMPL	AX, $0
    	JE	nocpuinfo
    
    	CMPL	BX, $0x756E6547  // "Genu"
    	JNE	notintel
    	CMPL	DX, $0x49656E69  // "ineI"
    	JNE	notintel
    	CMPL	CX, $0x6C65746E  // "ntel"
    	JNE	notintel
    	MOVB	$1, runtime·isIntel(SB)
    
    notintel:
    	// Load EAX=1 cpuid flags
    	MOVL	$1, AX
    	CPUID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. src/crypto/sha512/sha512block_amd64.s

    	SHA512ROUND(index, const, a, b, c, d, e, f, g, h)
    
    TEXT ·blockAMD64(SB),0,$648-32
    	MOVQ	p_base+8(FP), SI
    	MOVQ	p_len+16(FP), DX
    	SHRQ	$7, DX
    	SHLQ	$7, DX
    
    	LEAQ	(SI)(DX*1), DI
    	MOVQ	DI, 640(SP)
    	CMPQ	SI, DI
    	JEQ	end
    
    	MOVQ	dig+0(FP), BP
    	MOVQ	(0*8)(BP), R8		// a = H0
    	MOVQ	(1*8)(BP), R9		// b = H1
    	MOVQ	(2*8)(BP), R10		// c = H2
    	MOVQ	(3*8)(BP), R11		// d = H3
    	MOVQ	(4*8)(BP), R12		// e = H4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal_test.go

    			for i, level := range tc.reportedLevels {
    				podMetric := cmapi.MetricValue{
    					DescribedObject: v1.ObjectReference{
    						Kind:      "Pod",
    						Name:      fmt.Sprintf("%s-%d", podNamePrefix, i),
    						Namespace: namespace,
    					},
    					Timestamp: metav1.Time{Time: time.Now()},
    					Metric: cmapi.MetricIdentifier{
    						Name: "qps",
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  10. pkg/controller/disruption/disruption.go

    	// where C is the union of C_p1, C_p2, ..., C_pN
    	// and each C_pi is the set of controllers controlling the pod pi
    
    	// k8s only defines what will happens when 0 or 1 controllers control a
    	// given pod.  We explicitly exclude the 0 controllers case here, and we
    	// report an error if we find a pod with more than 1 controller.  Thus in
    	// practice each C_pi is a set of exactly 1 controller.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
Back to top