Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for Ll (0.06 sec)

  1. src/internal/runtime/atomic/atomic_mipsx.s

    	OR	R5, R2	// Shift val for aligned ptr. R2 = val << R4 | ^(0xFF << R4)
    	SYNC
    try_and8:
    	LL	(R3), R4	// R4 = *R3
    	AND	R2, R4
    	SC	R4, (R3)	// *R3 = R4
    	BEQ	R4, try_and8
    	SYNC
    	RET
    
    // func Or(addr *uint32, v uint32)
    TEXT ·Or(SB), NOSPLIT, $0-8
    	MOVW	ptr+0(FP), R1
    	MOVW	val+4(FP), R2
    
    	SYNC
    	LL	(R1), R3
    	OR	R2, R3
    	SC	R3, (R1)
    	BEQ	R3, -4(PC)
    	SYNC
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/atomic_loong64.s

    	MOVV	$0xFF, R8
    	SLLV	R7, R5
    	SLLV	R7, R8
    	NOR	R0, R8
    	OR	R8, R5
    
    	DBAR
    	LL	(R6), R7
    	AND	R5, R7
    	SC	R7, (R6)
    	BEQ	R7, -4(PC)
    	DBAR
    	RET
    
    // func Or(addr *uint32, v uint32)
    TEXT ·Or(SB), NOSPLIT, $0-12
    	MOVV	ptr+0(FP), R4
    	MOVW	val+8(FP), R5
    	DBAR
    	LL	(R4), R6
    	OR	R5, R6
    	SC	R6, (R4)
    	BEQ	R6, -4(PC)
    	DBAR
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/atomic_mips64x.s

    	MOVV	$0xFF, R5
    	SLLV	R4, R2
    	SLLV	R4, R5
    	NOR	R0, R5
    	OR	R5, R2
    
    	SYNC
    	LL	(R3), R4
    	AND	R2, R4
    	SC	R4, (R3)
    	BEQ	R4, -4(PC)
    	SYNC
    	RET
    
    // func Or(addr *uint32, v uint32)
    TEXT ·Or(SB), NOSPLIT, $0-12
    	MOVV	ptr+0(FP), R1
    	MOVW	val+8(FP), R2
    
    	SYNC
    	LL	(R1), R3
    	OR	R2, R3
    	SC	R3, (R1)
    	BEQ	R3, -4(PC)
    	SYNC
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/grpcgen/lds.go

    		extrAddresses := si.Service.GetExtraAddressesForProxy(node)
    		if len(extrAddresses) > 0 {
    			ll.AdditionalAddresses = util.BuildAdditionalAddresses(extrAddresses, uint32(listenPort))
    		}
    
    		out = append(out, &discovery.Resource{
    			Name:     ll.Name,
    			Resource: protoconv.MessageToAny(ll),
    		})
    	}
    	return out
    }
    
    // nolint: unparam
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/assign.go

    			walkStmtList(init)
    			early.Append(init...)
    
    			switch ll := l.(type) {
    			case *ir.IndexExpr:
    				if ll.X.Type().IsArray() {
    					save(&ll.Index)
    					l = ll.X
    					continue
    				}
    			case *ir.ParenExpr:
    				l = ll.X
    				continue
    			case *ir.SelectorExpr:
    				if ll.Op() == ir.ODOT {
    					l = ll.X
    					continue
    				}
    			}
    			break
    		}
    
    		var name *ir.Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. pkg/adsc/adsc.go

    		case v3.ListenerType:
    			listeners := make([]*listener.Listener, 0, len(msg.Resources))
    			for _, rsc := range msg.Resources {
    				valBytes := rsc.Value
    				ll := &listener.Listener{}
    				_ = proto.Unmarshal(valBytes, ll)
    				listeners = append(listeners, ll)
    			}
    			a.handleLDS(listeners)
    		case v3.ClusterType:
    			clusters := make([]*cluster.Cluster, 0, len(msg.Resources))
    			for _, rsc := range msg.Resources {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/loong64/anames.go

    	"CMPGTD",
    	"CMPGTF",
    	"LU12IW",
    	"LU32ID",
    	"LU52ID",
    	"PCALAU12I",
    	"PCADDU12I",
    	"JIRL",
    	"BGE",
    	"BLT",
    	"BLTU",
    	"BGEU",
    	"DIV",
    	"DIVD",
    	"DIVF",
    	"DIVU",
    	"DIVW",
    	"LL",
    	"LLV",
    	"LUI",
    	"MOVB",
    	"MOVBU",
    	"MOVD",
    	"MOVDF",
    	"MOVDW",
    	"MOVF",
    	"MOVFD",
    	"MOVFW",
    	"MOVH",
    	"MOVHU",
    	"MOVW",
    	"MOVWD",
    	"MOVWF",
    	"MOVWL",
    	"MOVWR",
    	"MUL",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/grpcgen/grpcgen_test.go

    		sc := &cookiev3.CookieBasedSessionState{}
    		filterIndex := -1
    		for _, rsc := range msg.Resources {
    			valBytes := rsc.Value
    			ll := &listener.Listener{}
    			_ = proto.Unmarshal(valBytes, ll)
    			if strings.HasPrefix(ll.Name, "echo-persistent.test.svc.cluster.local:") {
    				proto.Unmarshal(ll.ApiListener.ApiListener.Value, hcm)
    				for index, f := range hcm.HttpFilters {
    					if f.Name == util.StatefulSessionFilter {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. istioctl/pkg/admin/istiodconfig.go

    	}
    
    	return nil
    }
    
    type logLevelState struct {
    	client         *ControlzClient
    	outputLogLevel string
    }
    
    func (ll *logLevelState) run(_ io.Writer) error {
    	scopeInfos, err := newScopeInfosFromScopeLevelPairs(ll.outputLogLevel)
    	if err != nil {
    		return err
    	}
    	err = ll.client.PutScopes(scopeInfos)
    	if err != nil {
    		return err
    	}
    	return nil
    }
    
    type stackTraceLevelState struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/fake.go

    			}
    			cfgs = append(cfgs, c)
    		}
    	}
    	return cfgs
    }
    
    // copied from xdstest to avoid import issues
    func ExtractRoutesFromListeners(ll []*listener.Listener) []string {
    	routes := []string{}
    	for _, l := range ll {
    		for _, fc := range l.FilterChains {
    			for _, filter := range fc.Filters {
    				if filter.Name == wellknown.HTTPConnectionManager {
    					h := &hcm.HttpConnectionManager{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top