Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 265 for outReg (0.2 sec)

  1. src/reflect/export_test.go

    //
    // Bitmaps like stack, gc, inReg, and outReg are expanded such that each bit
    // takes up one byte, so that writing out test cases is a little clearer.
    // If ptrs is false, gc will be nil.
    func FuncLayout(t Type, rcvr Type) (frametype Type, argSize, retOffset uintptr, stack, gc, inReg, outReg []byte, ptrs bool) {
    	var ft *abi.Type
    	var abid abiDesc
    	if rcvr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. src/crypto/aes/asm_ppc64x.s

    	// The expanded decrypt key is the expanded encrypt key stored in reverse order.
    	// Move OUTDEC to the last key location, and store in descending order.
    	ADD	$160, OUTDEC, OUTDEC
    	BLT	loop128
    	ADD	$32, OUTDEC, OUTDEC
    	BEQ	l192
    	ADD	$32, OUTDEC, OUTDEC
    	JMP	l256
    
    loop128:
    	// Key schedule (Round 1 to 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/rsa.go

    	defer C._goboringcrypto_EVP_PKEY_CTX_free(ctx)
    
    	var outLen C.size_t
    	if crypt(ctx, nil, &outLen, base(in), C.size_t(len(in))) == 0 {
    		return nil, fail("EVP_PKEY_decrypt/encrypt")
    	}
    	out := make([]byte, outLen)
    	if crypt(ctx, base(out), &outLen, base(in), C.size_t(len(in))) == 0 {
    		return nil, fail("EVP_PKEY_decrypt/encrypt")
    	}
    	return out[:outLen], nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 23:38:03 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/log/nflog.go

    			uid = *attrs.UID
    		}
    		if attrs.GID != nil {
    			gid = *attrs.GID
    		}
    		inDev, outDev := "", ""
    		if attrs.InDev != nil {
    			ii, err := net.InterfaceByIndex(int(*attrs.InDev))
    			if err == nil {
    				inDev = ii.Name
    			}
    		}
    		if attrs.OutDev != nil {
    			ii, err := net.InterfaceByIndex(int(*attrs.OutDev))
    			if err == nil {
    				outDev = ii.Name
    			}
    		}
    		iptablesTrace.WithLabels(
    			"command", prefix,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. src/net/http/httputil/reverseproxy.go

    		outreq.Header.Del("Forwarded")
    		outreq.Header.Del("X-Forwarded-For")
    		outreq.Header.Del("X-Forwarded-Host")
    		outreq.Header.Del("X-Forwarded-Proto")
    
    		// Remove unparsable query parameters from the outbound request.
    		outreq.URL.RawQuery = cleanQueryParams(outreq.URL.RawQuery)
    
    		pr := &ProxyRequest{
    			In:  req,
    			Out: outreq,
    		}
    		p.Rewrite(pr)
    		outreq = pr.Out
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. src/cmd/cover/cfg_test.go

    	incfg := filepath.Join(outdir, tag+"incfg.txt")
    	outcfg := filepath.Join(outdir, "outcfg.txt")
    	p := covcmd.CoverPkgConfig{
    		PkgPath:      ppath,
    		PkgName:      pname,
    		Granularity:  gran,
    		OutConfig:    outcfg,
    		EmitMetaFile: mpath,
    	}
    	data, err := json.Marshal(p)
    	if err != nil {
    		t.Fatalf("json.Marshal failed: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. src/crypto/hmac/hmac.go

    			panic(err)
    		}
    	} else {
    		h.outer.Reset()
    		h.outer.Write(h.opad)
    	}
    	h.outer.Write(in[origLen:])
    	return h.outer.Sum(in[:origLen])
    }
    
    func (h *hmac) Write(p []byte) (n int, err error) {
    	return h.inner.Write(p)
    }
    
    func (h *hmac) Size() int      { return h.outer.Size() }
    func (h *hmac) BlockSize() int { return h.inner.BlockSize() }
    
    func (h *hmac) Reset() {
    	if h.marshaled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    		// symbol and the outer end up in the same section).
    		for _, s := range relro {
    			if outer := ldr.OuterSym(s); outer != 0 {
    				st := state.symType(s)
    				ost := state.symType(outer)
    				if st != ost {
    					state.ctxt.Errorf(s, "inconsistent types for symbol and its Outer %s (%v != %v)",
    						ldr.SymName(outer), st, ost)
    				}
    			}
    		}
    
    		state.data[symnro] = ro
    		state.data[symnrelro] = relro
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  9. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorInnerClassTest.groovy

                   $modifier class Inner {
                      public void foo() {}
                   }
                }
            """
    
            when:
            def outer = api.classes.A
            def inner = api.classes['A$Inner']
            def extractedOuter = api.extractAndLoadApiClassFrom(outer)
            def extractedInner = api.extractAndLoadApiClassFrom(inner)
    
            then:
            inner.clazz.getDeclaredMethod('foo').modifiers == Modifier.PUBLIC
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/CustomLambdasTest.kt

        private
        fun applyToOuter(code: String): Outer {
            val reflection = schema.reflect(code)
    
            val outer = Outer()
            val converter = DeclarativeReflectionToObjectConverter(
                emptyMap(), outer, MemberFunctionResolver(functionalLambdaHandler), ReflectionRuntimePropertyResolver, RuntimeCustomAccessors.none
            )
            converter.apply(reflection)
    
            return outer
        }
    }
    
    
    class Outer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top