Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 317 for addsym (0.1 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    	res := []model.AddressInfo{}
    	type kindindex struct {
    		k     kind.Kind
    		index int
    	}
    	addrm := map[netip.Addr]kindindex{}
    	for _, wl := range a.workloads.List() {
    		overwrite := -1
    		write := true
    		for _, addr := range wl.Addresses {
    			a := byteIPToAddr(addr)
    			if existing, f := addrm[a]; f {
    				// This address was already found. We want unique addresses in the result.
    				// Pod > WorkloadEntry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64error.s

    	ADDS	$0x10001000100011, R6, RSP                       // ERROR "illegal destination register"
    	ADDSW	$0xff, R6, RSP                                   // ERROR "illegal destination register"
    	ADDSW	$0xffff0, R6, RSP                                // ERROR "illegal destination register"
    	ADDSW	$0x1000100010001000, R6, RSP                     // ERROR "illegal destination register"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 37.8K bytes
    - Viewed (0)
  3. test/codegen/memops.go

    	c := float64(7)
    	// amd64: `ADDSD\t8\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*8\), X[0-9]+`
    	c += a[i+1]
    	// amd64: `SUBSD\t16\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*8\), X[0-9]+`
    	c -= a[i+2]
    	// amd64: `MULSD\t24\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*8\), X[0-9]+`
    	c *= a[i+3]
    	// amd64: `DIVSD\t32\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*8\), X[0-9]+`
    	c /= a[i+4]
    
    	d := float32(8)
    	// amd64: `ADDSS\t4\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*4\), X[0-9]+`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler.go

    	http.Error(w, err.Error(), http.StatusServiceUnavailable)
    }
    
    // Adds a storageversion object to SVMap
    func (h *peerProxyHandler) addSV(obj interface{}) {
    	sv, ok := obj.(*v1alpha1.StorageVersion)
    	if !ok {
    		klog.Errorf("Invalid StorageVersion provided to addSV()")
    		return
    	}
    	h.updateSVMap(nil, sv)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	ADD R25<<54, R17, R16                      // 30da198b
    	ADDSW R12.SXTX<<1, R29, R7                 // a7e72c2b
    	ADDS R24.UXTX<<4, R25, R21                 // 357338ab
    	ADDSW $(3525<<12), R3, R11                 // ADDSW $14438400, R3, R11          // 6b147731
    	ADDS $(3525<<12), R3, R11                  // ADDS $14438400, R3, R11           // 6b1477b1
    	ADDSW R7->22, R14, R13                     // cd59872b
    	ADDS R14>>7, ZR, R4                        // e41f4eab
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 01:11:41 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/doc.go

    Extended registers are written as <Rm>{.<extend>{<<<amount>}}.
    <extend> can be UXTB, UXTH, UXTW, UXTX, SXTB, SXTH, SXTW or SXTX.
    
    Examples:
    
    	ADDS R19.UXTB<<4, R9, R26     <=>    adds x26, x9, w19, uxtb #4
    	ADDSW R14.SXTX, R14, R6       <=>    adds w6, w14, w14, sxtx
    
    Memory references: [<Xn|SP>{,#0}] is written as (Rn|RSP), a base register and an immediate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/nilcheck.go

    				ptrs = append(ptrs, v.Args[1])
    			}
    
    			for _, ptr := range ptrs {
    				// Check to make sure the offset is small.
    				switch opcodeTable[v.Op].auxType {
    				case auxSym:
    					if v.Aux != nil {
    						continue
    					}
    				case auxSymOff:
    					if v.Aux != nil || v.AuxInt < 0 || v.AuxInt >= minZeroPage {
    						continue
    					}
    				case auxSymValAndOff:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. pkg/log/config.go

    		} else {
    			enc = zapcore.NewConsoleEncoder(encCfg)
    			useJSON.Store(false)
    		}
    	}
    
    	var rotaterSink zapcore.WriteSyncer
    	if options.RotateOutputPath != "" {
    		rotaterSink = zapcore.AddSync(&lumberjack.Logger{
    			Filename:   options.RotateOutputPath,
    			MaxSize:    options.RotationMaxSize,
    			MaxBackups: options.RotationMaxBackups,
    			MaxAge:     options.RotationMaxAge,
    		})
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. test/codegen/floats.go

    // For codegen tests on integer types, see arithmetic.go.
    
    // --------------------- //
    //    Strength-reduce    //
    // --------------------- //
    
    func Mul2(f float64) float64 {
    	// 386/sse2:"ADDSD",-"MULSD"
    	// amd64:"ADDSD",-"MULSD"
    	// arm/7:"ADDD",-"MULD"
    	// arm64:"FADDD",-"FMULD"
    	// ppc64x:"FADD",-"FMUL"
    	// riscv64:"FADDD",-"FMULD"
    	return f * 2.0
    }
    
    func DivPow2(f1, f2, f3 float64) (float64, float64, float64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/p256_asm_arm64.s

    	MUL	x0, x1, acc1
    	UMULH	x0, x1, acc2
    
    	MUL	x0, x2, t0
    	ADDS	t0, acc2, acc2
    	UMULH	x0, x2, acc3
    
    	MUL	x0, x3, t0
    	ADCS	t0, acc3, acc3
    	UMULH	x0, x3, acc4
    	ADC	$0, acc4, acc4
    	// x[2:] * x[1]
    	MUL	x1, x2, t0
    	ADDS	t0, acc3
    	UMULH	x1, x2, t1
    	ADCS	t1, acc4
    	ADC	$0, ZR, acc5
    
    	MUL	x1, x3, t0
    	ADDS	t0, acc4
    	UMULH	x1, x3, t1
    	ADC	t1, acc5
    	// x[3] * x[2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top