Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 134 for isel (0.04 sec)

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	FNMSUBS:        "fnmsubs",
    	FNMSUBSCC:      "fnmsubs.",
    	FRES:           "fres",
    	FRESCC:         "fres.",
    	FRSQRTE:        "frsqrte",
    	FRSQRTECC:      "frsqrte.",
    	FSEL:           "fsel",
    	FSELCC:         "fsel.",
    	FSQRTS:         "fsqrts",
    	FSQRTSCC:       "fsqrts.",
    	FSUBS:          "fsubs",
    	FSUBSCC:        "fsubs.",
    	ICBI:           "icbi",
    	LD:             "ld",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    			/* operand order: SHB, VRA, VRB, VRT */
    			shb := int(c.regoff(&p.From))
    			o1 = AOP_IRRR(c.opirrr(p.As), uint32(p.To.Reg), uint32(p.Reg), uint32(p.GetFrom3().Reg), uint32(shb))
    		}
    
    	case 84: // ISEL BC,RA,RB,RT -> isel rt,ra,rb,bc
    		bc := c.vregoff(&p.From)
    		if o.a1 == C_CRBIT {
    			// CR bit is encoded as a register, not a constant.
    			bc = int64(p.From.Reg)
    		}
    
    		// rt = To.Reg, ra = p.Reg, rb = p.From3.Reg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256_asm_arm64.s

    		LDP.P	16(b_ptr), (acc0, acc1)
    		CSEL	EQ, acc0, x0, x0
    		CSEL	EQ, acc1, x1, x1
    		LDP.P	16(b_ptr), (acc2, acc3)
    		CSEL	EQ, acc2, x2, x2
    		CSEL	EQ, acc3, x3, x3
    		LDP.P	16(b_ptr), (acc4, acc5)
    		CSEL	EQ, acc4, y0, y0
    		CSEL	EQ, acc5, y1, y1
    		LDP.P	16(b_ptr), (acc6, acc7)
    		CSEL	EQ, acc6, y2, y2
    		CSEL	EQ, acc7, y3, y3
    		LDP.P	16(b_ptr), (acc0, acc1)
    		CSEL	EQ, acc0, t0, t0
    		CSEL	EQ, acc1, t1, t1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. src/go/printer/gobuild.go

    func appendLines(x, y []byte) []byte {
    	if len(y) > 0 && isNL(y[0]) && // y starts in blank line
    		(len(x) == 0 || len(x) >= 2 && isNL(x[len(x)-1]) && isNL(x[len(x)-2])) { // x is empty or ends in blank line
    		y = y[1:] // delete y's leading blank line
    	}
    	return append(x, y...)
    }
    
    func (p *printer) lineAt(start int) []byte {
    	pos := start
    	for pos < len(p.output) && !isNL(p.output[pos]) {
    		pos++
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data_test.go

    	"cmd/link/internal/loader"
    	"internal/buildcfg"
    	"testing"
    )
    
    func setUpContext(arch *sys.Arch, iself bool, ht objabi.HeadType, bm, lm string) *Link {
    	ctxt := linknew(arch)
    	ctxt.HeadType = ht
    	er := loader.ErrorReporter{}
    	ctxt.loader = loader.NewLoader(0, &er)
    	ctxt.BuildMode.Set(bm)
    	ctxt.LinkMode.Set(lm)
    	ctxt.IsELF = iself
    	ctxt.mustSetHeadType()
    	ctxt.setArchSyms()
    	return ctxt
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 05 19:20:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/target.go

    }
    
    func (t *Target) IsSharedGoLink() bool {
    	return t.linkShared
    }
    
    func (t *Target) CanUsePlugins() bool {
    	return t.canUsePlugins
    }
    
    func (t *Target) IsElf() bool {
    	t.mustSetHeadType()
    	return t.IsELF
    }
    
    func (t *Target) IsDynlinkingGo() bool {
    	return t.IsShared() || t.IsSharedGoLink() || t.IsPlugin() || t.CanUsePlugins()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:14:48 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (NEG (NEG x)) => x
    
    (CSEL [cc] (MOVDconst [-1]) (MOVDconst [0]) flag) => (CSETM [cc] flag)
    (CSEL [cc] (MOVDconst [0]) (MOVDconst [-1]) flag) => (CSETM [arm64Negate(cc)] flag)
    (CSEL [cc] x (MOVDconst [0]) flag) => (CSEL0 [cc] x flag)
    (CSEL [cc] (MOVDconst [0]) y flag) => (CSEL0 [arm64Negate(cc)] y flag)
    (CSEL [cc] x (ADDconst [1] a) flag) => (CSINC [cc] x a flag)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  8. pilot/pkg/model/service_test.go

    			isEq := WorkloadInstancesEqual(testCase.comparer, testCase.comparee)
    			isEqReverse := WorkloadInstancesEqual(testCase.comparee, testCase.comparer)
    
    			if isEq != isEqReverse {
    				t.Errorf(
    					"returned different for reversing arguments for structs: %v , and %v",
    					testCase.comparer,
    					testCase.comparee,
    				)
    			}
    			if isEq != testCase.shouldEq {
    				t.Errorf(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/errsupport.go

    		alt = obj.Name()
    		if obj.Pkg() == check.pkg {
    			assert(alt != sel) // otherwise there is no lookup error
    			e = misspelled
    		} else if isExported(sel) {
    			if isExported(alt) {
    				e = misspelled
    			} else if tail(sel) == tail(alt) {
    				e = unexported
    			}
    		} else if isExported(alt) {
    			if tail(sel) == tail(alt) {
    				e = misspelled
    			}
    		} else if sel == alt {
    			e = inaccessible
    		}
    	}
    
    	if structLit {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. src/crypto/x509/pkcs8_test.go

    			continue
    		}
    		if reflect.TypeOf(privKey) != test.keyType {
    			t.Errorf("%s: decoded PKCS#8 returned unexpected key type: %T", test.name, privKey)
    			continue
    		}
    		if ecKey, isEC := privKey.(*ecdsa.PrivateKey); isEC && ecKey.Curve != test.curve {
    			t.Errorf("%s: decoded PKCS#8 returned unexpected curve %#v", test.name, ecKey.Curve)
    			continue
    		}
    		reserialised, err := MarshalPKCS8PrivateKey(privKey)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 19 16:45:10 UTC 2022
    - 9K bytes
    - Viewed (0)
Back to top