Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 165 for outReg (0.11 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/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)
  6. 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)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/convert_tf_xla_op_to_tf_op.cc

          c++;
        }
      }
    
      // Create out_eq by merging lhs and rhs.
      // In XlaDotv2 style - batch dim - leftover from lhs - leftover from rhs.
      for (const char c : lhs_batch_dims) {
        absl::StrAppend(&out_eq, std::string(1, c));
      }
      for (const char c : lhs_eq) {
        if (!absl::StrContains(out_eq, c) && !absl::StrContains(rhs_eq, c)) {
          absl::StrAppend(&out_eq, std::string(1, c));
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/NestedConfigureDslIntegrationTest.groovy

        def "can read property from configure closure outer scope"() {
            buildFile """
    ext.prop = "value"
    tasks.help {
        println "1: " + prop
        1.times {
            println "2: " + prop
        }
    }
    """
    
            expect:
            succeeds()
            outputContains("1: value")
            outputContains("2: value")
        }
    
        def "can set property in configure closure outer scope"() {
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. src/runtime/chanbarrier_test.go

    	t.Parallel()
    	testChanSendBarrier(false)
    }
    
    func testChanSendBarrier(useSelect bool) {
    	var wg sync.WaitGroup
    	outer := 100
    	inner := 100000
    	if testing.Short() || runtime.GOARCH == "wasm" {
    		outer = 10
    		inner = 1000
    	}
    	for i := 0; i < outer; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			var garbage []byte
    			for j := 0; j < inner; j++ {
    				_, err := doRequest(useSelect)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

          c++;
        }
      }
    
      // Create out_eq by merging lhs and rhs.
      // In XlaDotv2 style - batch dim - leftover from lhs - leftover from rhs.
      for (auto c : lhs_batch_dims) {
        absl::StrAppend(&out_eq, std::string(1, c));
      }
      for (auto c : lhs_eq) {
        if (!absl::StrContains(out_eq, c) && !absl::StrContains(rhs_eq, c)) {
          absl::StrAppend(&out_eq, std::string(1, c));
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top