Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 189 for REG (0.02 sec)

  1. src/cmd/internal/obj/ppc64/anames9.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ppc64
    
    var cnames9 = []string{
    	"NONE",
    	"REGP",
    	"REG",
    	"FREGP",
    	"FREG",
    	"VREG",
    	"VSREGP",
    	"VSREG",
    	"CREG",
    	"CRBIT",
    	"SPR",
    	"MREG",
    	"ZCON",
    	"U1CON",
    	"U2CON",
    	"U3CON",
    	"U4CON",
    	"U5CON",
    	"U8CON",
    	"U15CON",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 673 bytes
    - Viewed (0)
  2. pkg/monitoring/monitoring.go

    func RegisterPrometheusExporter(reg prometheus.Registerer, gatherer prometheus.Gatherer) (http.Handler, error) {
    	if reg == nil {
    		reg = prometheus.DefaultRegisterer
    	}
    	if gatherer == nil {
    		gatherer = prometheus.DefaultGatherer
    	}
    	promOpts := []otelprom.Option{
    		otelprom.WithoutScopeInfo(),
    		otelprom.WithoutTargetInfo(),
    		otelprom.WithoutUnits(),
    		otelprom.WithRegisterer(reg),
    		otelprom.WithoutCounterSuffixes(),
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/loong64/a.out.go

    	C_AND0CON
    	C_ADDCON // -0x800 <= v < 0
    	C_ANDCON // 0 < v <= 0xFFF
    	C_LCON   // other 32
    	C_DCON   // other 64 (could subdivide further)
    	C_SACON  // $n(REG) where n <= int12
    	C_SECON
    	C_LACON // $n(REG) where int12 < n <= int32
    	C_LECON
    	C_DACON // $n(REG) where int32 < n
    	C_STCON // $tlsvar
    	C_SBRA
    	C_LBRA
    	C_SAUTO
    	C_LAUTO
    	C_SEXT
    	C_LEXT
    	C_ZOREG
    	C_SOREG
    	C_LOREG
    	C_GOK
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. pkg/controller/validatingadmissionpolicystatus/controller.go

    		policyClient: policyClient,
    		typeChecker:  typeChecker,
    	}
    	reg, err := policyInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc: func(obj interface{}) {
    			c.enqueuePolicy(obj)
    		},
    		UpdateFunc: func(oldObj, newObj interface{}) {
    			c.enqueuePolicy(newObj)
    		},
    	})
    	if err != nil {
    		return nil, err
    	}
    	c.policySynced = reg.HasSynced
    	return c, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. src/internal/chacha8rand/chacha8_amd64.s

    #define REPL(val, XR) \
    	MOVL $val, DX; \
    	REPLREG(DX, XR)
    
    // SEED copies the off'th uint32 of the seed into the register XR,
    // replicating it into all four stripes of the register.
    #define SEED(off, reg, XR) \
    	MOVL (4*off)(AX), reg; \
    	REPLREG(reg, XR) \
    
    // block runs 4 ChaCha8 block transformations in the four stripes of the X registers.
    
    // func block(seed *[8]uint32, blocks *[16][4]uint32, counter uint32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    		}
    		return fmt.Sprintf("%#x", addr)
    	case Label:
    		return fmt.Sprintf("%#x", int(arg))
    	case Offset:
    		reg := inst.Args[argIndex+1].(Reg)
    		removeArg(inst, argIndex+1)
    		if reg == R0 {
    			return fmt.Sprintf("%d(0)", int(arg))
    		}
    		return fmt.Sprintf("%d(R%d)", int(arg), reg-R0)
    	}
    	return fmt.Sprintf("???(%v)", arg)
    }
    
    func reverseMiddleOps(op Op) bool {
    	switch op {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  7. src/reflect/float32reg_riscv64.s

    	// Normally a float64->float32 conversion
    	// would need rounding, but riscv64 store valid
    	// float32 in the lower 32 bits, thus we only need to
    	// unboxed the NaN-box by store a float32.
    	MOVD	reg+0(FP), F1
    	MOVF	F1, ret+8(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 04 13:38:32 UTC 2022
    - 794 bytes
    - Viewed (0)
  8. src/reflect/float32reg_ppc64x.s

    // Convert float32->uint64
    TEXT ·archFloat32ToReg(SB),NOSPLIT,$0-16
    	FMOVS	val+0(FP), F1
    	FMOVD	F1, ret+8(FP)
    	RET
    
    // Convert uint64->float32
    TEXT ·archFloat32FromReg(SB),NOSPLIT,$0-12
    	FMOVD	reg+0(FP), F1
    	// Normally a float64->float32 conversion
    	// would need rounding, but that is not needed
    	// here since the uint64 was originally converted
    	// from float32, and should be avoided to
    	// preserve SNaN values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 838 bytes
    - Viewed (0)
  9. tools/bug-report/pkg/cluster/cluster.go

    			return true
    		}
    	}
    	return false
    }
    
    func entryPatternToRegexp(pattern string) string {
    	var reg string
    	for i, literal := range strings.Split(pattern, "*") {
    		if i > 0 {
    			reg += ".*"
    		}
    		reg += regexp.QuoteMeta(literal)
    	}
    	return reg
    }
    
    // GetClusterResources returns cluster resources for the given REST config and k8s Clientset.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 14 02:11:31 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/anames7.go

    // license that can be found in the LICENSE file.
    
    package arm64
    
    // This order should be strictly consistent to that in a.out.go
    var cnames7 = []string{
    	"", // C_NONE starts from 1
    	"NONE",
    	"REG",
    	"ZREG",
    	"RSP",
    	"FREG",
    	"VREG",
    	"PAIR",
    	"SHIFT",
    	"EXTREG",
    	"SPR",
    	"SPOP",
    	"COND",
    	"ARNG",
    	"ELEM",
    	"LIST",
    	"ZCON",
    	"ABCON0",
    	"ADDCON0",
    	"ABCON",
    	"AMCON",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 16:37:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top