Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 156 for outReg (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/compile/internal/ssa/likelyadjust.go

    }
    
    // outerinner records that outer contains inner
    func (sdom SparseTree) outerinner(outer, inner *loop) {
    	// There could be other outer loops found in some random order,
    	// locate the new outer loop appropriately among them.
    
    	// Outer loop headers dominate inner loop headers.
    	// Use this to put the "new" "outer" loop in the right place.
    	oldouter := inner.outer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. android/guava-tests/test/com/google/common/reflect/TypeTokenSubtypeTest.java

        @TestSubtype
        public Mall<Outdoor>.Shop<Electronics> ownerTypeIsSubtype(
            Outlet<Outdoor>.Shop<Electronics> shop) {
          return isSubtype(shop);
        }
    
        @TestSubtype(suppressGetSupertype = true, suppressGetSubtype = true)
        public Mall<? extends Outdoor>.Shop<Electronics> ownerTypeIsSubtype_supertypeWithWildcard(
            Outlet<Outdoor>.Shop<Electronics> shop) {
          return isSubtype(shop);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  9. src/crypto/internal/boring/aes.go

    	}
    
    	outLen := C.size_t(len(ciphertext) - gcmTagSize)
    	ok := C.EVP_AEAD_CTX_open_wrapper(
    		&g.ctx,
    		base(dst[n:]), outLen,
    		base(nonce), C.size_t(len(nonce)),
    		base(ciphertext), C.size_t(len(ciphertext)),
    		base(additionalData), C.size_t(len(additionalData)))
    	runtime.KeepAlive(g)
    	if ok == 0 {
    		return nil, errOpen
    	}
    	return dst[:n+int(outLen)], nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

      StringRef out_eq = equation.substr(idx_arrow + 2);
    
      int idx_comma = calc_eq.find(',');
      StringRef lhs_eq = calc_eq.substr(0, idx_comma);
      StringRef rhs_eq = calc_eq.substr(idx_comma + 1);
    
      if (absl::StrContains(rhs_eq, ",")) return false;
    
      int lhs_out_idx_start = out_eq.size();
      int lhs_out_idx_end = -1;
      int rhs_out_idx_start = out_eq.size();
      int rhs_out_idx_end = -1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top