Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for Ll (0.02 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_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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. istioctl/pkg/proxyconfig/proxyconfig.go

    					resp, err = setupEnvoyLogConfig(kubeClient, "", podName, podNamespace)
    				} else {
    					if ll, ok := destLoggerLevels[defaultLoggerName]; ok {
    						// update levels of all loggers first
    						resp, err = setupEnvoyLogConfig(kubeClient, defaultLoggerName+"="+levelToString[ll], podName, podNamespace)
    					}
    					for lg, ll := range destLoggerLevels {
    						if lg == defaultLoggerName {
    							continue
    						}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/loong64enc1.s

    	MOVW	1(R5), R4		// a4048028
    	MOVWU	1(R5), R4		// a404802a
    	MOVV	1(R5), R4		// a404c028
    	MOVB	1(R5), R4		// a4040028
    	MOVBU	1(R5), R4		// a404002a
    	MOVWL	1(R5), R4		// a404002e
    	MOVVL	1(R5), R4		// a404802e
    	LL	1(R5), R4		// a4040020
    	LLV	1(R5), R4		// a4040022
    	MOVW	$4(R4), R5		// 8510c002
    	MOVV	$4(R4), R5		// 8510c002
    	MOVW	$-1, R4			// 04fcff02
    	MOVV	$-1, R4			// 04fcff02
    	MOVW	$1, R4			// 0404c002
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSA

    000000f0  c5 7b 85 38 4f 2e 09 73  32 a7 bd 3e 9b ad ca 84  |.{.8O..s2..>....|
    00000100  07 e6 0f 3a ff 77 c5 9d  41 85 00 8a b6 9b ee b0  |...:.w..A.......|
    00000110  a4 3f 2d 4c 4c e6 42 3e  bb 51 c8 dd 48 54 f4 0c  |.?-LL.B>.Q..HT..|
    00000120  8e 47 02 03 01 00 01 a3  46 30 44 30 0e 06 03 55  |.G......F0D0...U|
    00000130  1d 0f 01 01 ff 04 04 03  02 05 a0 30 13 06 03 55  |...........0...U|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top