Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 127 for REG (0.02 sec)

  1. src/cmd/asm/internal/asm/parse.go

    	// Expect (SB), (FP), (PC), or (SP)
    	p.get('(')
    	reg := p.get(scanner.Ident).String()
    	p.get(')')
    	p.setPseudoRegister(a, reg, isStatic, prefix)
    }
    
    // setPseudoRegister sets the NAME field of addr for a pseudo-register reference such as (SB).
    func (p *Parser) setPseudoRegister(addr *obj.Addr, reg string, isStatic bool, prefix rune) {
    	if addr.Reg != 0 {
    		p.errorf("internal error: reg %s already set in pseudo", reg)
    	}
    	switch reg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishArtifactCustomizationIntegTest.groovy

            ivy.expectArtifact('ivyPublish', 'reg').hasType("reg").hasConf(null)
            ivy.expectArtifact('ivyPublish', 'foo').hasType("foo").hasConf(null)
            ivy.expectArtifact('ivyPublish', 'bar').hasType("bar").hasConf(null)
    
            and:
            resolveArtifacts(module) {
                withoutModuleMetadata {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    	}
    
    	op := inst.Op.String()
    
    	switch inst.Op &^ 15 {
    	case LDR_EQ, LDRB_EQ, LDRH_EQ, LDRSB_EQ, LDRSH_EQ, VLDR_EQ:
    		// Check for RET
    		reg, _ := inst.Args[0].(Reg)
    		mem, _ := inst.Args[1].(Mem)
    		if inst.Op&^15 == LDR_EQ && reg == R15 && mem.Base == SP && mem.Sign == 0 && mem.Mode == AddrPostIndex {
    			return fmt.Sprintf("RET%s #%d", op[3:], mem.Offset)
    		}
    
    		// Check for PC-relative load.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/a.out.go

    	C_SACON    /* $n(REG) where n <= int16 */
    	C_LACON    /* $n(REG) where n <= int32 */
    	C_DACON    /* $n(REG) where n <= int64 */
    	C_BRA      /* A short offset argument to a branching instruction */
    	C_BRAPIC   /* Like C_BRA, but requires an extra NOP for potential TOC restore by the linker. */
    	C_ZOREG    /* An $0+reg memory op */
    	C_SOREG    /* An $n+reg memory arg where n is a 16 bit signed offset */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/coverage.go

    // consecutive range, it simply returns a slice of numbers in increasing order.
    // The "undefined" region is not returned.
    func (s allSubtags) Regions() []Region {
    	reg := make([]Region, language.NumRegions)
    	for i := range reg {
    		reg[i] = Region{language.Region(i + 1)}
    	}
    	return reg
    }
    
    // Scripts returns the list of supported scripts. As all scripts are in a
    // consecutive range, it simply returns a slice of numbers in increasing order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/runtime/traceback_test.go

    	n := runtime.Stack(testTracebackArgsBuf[:], false)
    	if a < 0 {
    		// use in-reg args to keep them alive
    		return a + b + c + d + e
    	}
    	return n
    }
    
    //go:noinline
    func testTracebackArgs2(a bool, b struct {
    	a, b, c int
    	x       [2]int
    }, _ [0]int, d [3]byte) int {
    	n := runtime.Stack(testTracebackArgsBuf[:], false)
    	if a {
    		// use in-reg args to keep them alive
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  7. tests/integration/ambient/testdata/wasm-filter.yaml

    spec:
      phase: STATS
      targetRef:
        kind: {{ .TargetKind }}
        group: {{ .TargetGroup }}
        name: {{ .TargetName }}
      {{- if .TestWasmModuleURL }}
      url: {{ .TestWasmModuleURL }}
      {{- end }}
      imagePullSecret: reg-cred
      {{- if .ImagePullPolicy }}
      imagePullPolicy: {{ .ImagePullPolicy }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 513 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (MOVHZreg y:(MOVHBRload _ _)) => y
    
    (MOVHreg y:(MOV(H|B)reg _)) => y // repeat
    
    (MOV(H|HZ)reg y:(MOV(HZ|H)reg x)) => (MOV(H|HZ)reg x)
    
    // W - there are more combinations than these
    
    (MOV(WZ|WZ|WZ|W|W|W)reg y:(MOV(WZ|HZ|BZ|W|H|B)reg _)) => y // repeat
    (MOVWZreg y:(MOV(H|W)BRload _ _)) => y
    
    (MOV(W|WZ)reg y:(MOV(WZ|W)reg x)) => (MOV(W|WZ)reg x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  9. pkg/config/schema/kubetypes/common.go

    		return gvk
    	}
    	panic("unknown kind: " + obj.GetObjectKind().GroupVersionKind().String())
    }
    
    var registeredTypes = typemap.NewTypeMap()
    
    func Register[T runtime.Object](reg RegisterType[T]) {
    	typemap.Set[RegisterType[T]](registeredTypes, reg)
    }
    
    type RegisterType[T runtime.Object] interface {
    	GetGVK() config.GroupVersionKind
    	GetGVR() schema.GroupVersionResource
    	Object() T
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. tests/integration/ambient/testdata/registry-secret.yaml

    apiVersion: v1
    data:
      .dockerconfigjson: {{ .DockerConfigJson }}
    kind: Secret
    metadata:
      name: reg-cred
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 143 bytes
    - Viewed (0)
Back to top