Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 77 of 77 for cmp1 (0.16 sec)

  1. pkg/controller/disruption/disruption.go

    	// When the user specifies a fraction of pods that must be available, we
    	// use as the fraction's denominator
    	// SUM_{all c in C} scale(c)
    	// 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/ppc64.s

    	// TODO: cleanup inconsistency of printing CMPx opcodes with explicit CR arguments.
    	CMP R3, R4                      // 7c232000
    	CMP R3, R0                      // 7c230000
    	CMP R3, R0, CR1                 // CMP R3,CR1,R0   // 7ca30000
    	CMPU R3, R4                     // 7c232040
    	CMPU R3, R0                     // 7c230040
    	CMPU R3, R0, CR2                // CMPU R3,CR2,R0  // 7d230040
    	CMPW R3, R4                     // 7c032000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. 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)
  4. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	shiftB1Right; shiftC1Right; shiftD1Right
    	shiftB2Right; shiftC2Right; shiftD2Right
    
    	CMPQ itr2, itr1
    	JB   openSSLTail192LoopA
    
    	CMPQ itr2, $160
    	JNE  openSSLTail192LoopB
    
    	CMPQ inl, $176
    	JB   openSSLTail192Store
    
    	polyAdd(160(inp))
    	polyMul
    
    	CMPQ inl, $192
    	JB   openSSLTail192Store
    
    	polyAdd(176(inp))
    	polyMul
    
    openSSLTail192Store:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    		}
    		if p == nil {
    			return false, 0
    		}
    	}
    	cmp := p.As == ACMPB || p.As == ACMPL || p.As == ACMPQ || p.As == ACMPW
    
    	cmpAddSub := p.As == AADDB || p.As == AADDL || p.As == AADDW || p.As == AADDQ ||
    		p.As == ASUBB || p.As == ASUBL || p.As == ASUBW || p.As == ASUBQ || cmp
    
    	testAnd := p.As == ATESTB || p.As == ATESTL || p.As == ATESTQ || p.As == ATESTW ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9.go

    	case C_U8CON:
    		return cmp(C_U5CON, b)
    	case C_U15CON:
    		return cmp(C_U8CON, b)
    	case C_S16CON:
    		return cmp(C_U15CON, b)
    	case C_U16CON:
    		return cmp(C_U15CON, b)
    	case C_16CON:
    		return cmp(C_S16CON, b) || cmp(C_U16CON, b)
    	case C_U31CON:
    		return cmp(C_U16CON, b)
    	case C_U32CON:
    		return cmp(C_U31CON, b)
    	case C_S32CON:
    		return cmp(C_U31CON, b) || cmp(C_S16CON, b)
    	case C_32CON:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/opGen.go

    				{0, 239}, // AX CX DX BX BP SI DI
    			},
    		},
    	},
    	{
    		name:   "CMPL",
    		argLen: 2,
    		asm:    x86.ACMPL,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 255}, // AX CX DX BX SP BP SI DI
    				{1, 255}, // AX CX DX BX SP BP SI DI
    			},
    		},
    	},
    	{
    		name:   "CMPW",
    		argLen: 2,
    		asm:    x86.ACMPW,
    		reg: regInfo{
    			inputs: []inputInfo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top