Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 137 for ROUND (0.04 sec)

  1. src/crypto/sha1/sha1block_amd64.s

    //   - rounds 60-79 are type 4 and do not load data (ROUND4 macro).
    //
    // Each round loads or shuffles the data, then computes a per-round
    // function of b, c, d, and then mixes the result into and rotates the
    // five registers a, b, c, d, e holding the intermediate results.
    //
    // The register rotation is implemented by rotating the arguments to
    // the round macros instead of by explicit move instructions.
    
    #define LOAD(index) \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  2. src/crypto/aes/asm_ppc64x.s

    	VXOR	IN0, TMP, IN0       // vxor 1,1,6
    	VADDUWM	RCON, RCON, RCON    // vadduwm 4,4,4
    	VXOR	IN0, KEY, IN0       // vxor 1,1,3
    	BDNZ	loop128
    
    	LVX	(PTR)(R0), RCON // lvx 4,0,6     Last two round keys
    
    	// Key schedule (Round 9)
    	VPERM	IN0, IN0, MASK, KEY              // vperm 3,1,1,5   Rotate-n-spat
    	VSLDOI	$12, ZERO, IN0, TMP              // vsldoi 6,0,1,12
    	STXVD2X	IN0, (R0+OUTENC)
    	STXVD2X	IN0, (R0+OUTDEC)
    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/cmd/compile/internal/ssa/config.go

    	lowerBlock     blockRewriter  // block lowering function, first round
    	lowerValue     valueRewriter  // value lowering function, first round
    	lateLowerBlock blockRewriter  // block lowering function that needs to be run after the first round; only used on some architectures
    	lateLowerValue valueRewriter  // value lowering function that needs to be run after the first round; only used on some architectures
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go

    		Body:       io.NopCloser(&bytes.Buffer{}),
    		Request:    req,
    	}, nil
    }
    
    // MirrorRequest is a round tripper that can be called to get back the calling request as
    // the core round tripper in a chain.
    var MirrorRequest http.RoundTripper = onewayRoundTripper{}
    
    // NewUpgradeRequestRoundTripper takes two round trippers - one for the underlying TCP connection, and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. platforms/jvm/java-platform/src/test/java/org/gradle/internal/component/model/JavaEcosystemAttributeMatcherTest.groovy

         * @param requested The requested attributes.
         *
         * @return The single matched variant.
         *
         * @throws AssertionError If the first round of attribute matching failed to match a single configuration
         *      or the second round failed to match a single variant.
         */
        def matchConfigurations(List<List<AttributeContainerInternal>> candidates, AttributeContainerInternal requested) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

    // Rounds on integers should just be bypassed.
    def LowerRoundOpOnIntTensor : Pat<
      (TF_RoundOp:$res TF_IntTensor:$input),
      (TF_IdentityOp $input)>;
    
    // Implements TF Round on floats using basic operations. TF Round is specified
    // as RoundHalfToEven to be compatible with Numpy.
    def LowerRoundOpOnFloatTensor : Pat<
      (TF_RoundOp:$res TF_FloatTensor:$input),
      (TF_SelectV2Op
        (TF_EqualOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_xla.mlir

    // CHECK: %[[avgpool_f32:.*]] = "tf.AvgPool"(%[[fcast]])
    // CHECK-SAME: (tensor<*xf32>) -> tensor<*xf32>
    // CHECK: %[[round:.*]] = "tf.Round"(%[[avgpool_f32]])
    // CHECK: %[[icast:.*]] = "tf.Cast"(%[[round]]) <{Truncate = false}> : (tensor<*xf32>) -> tensor<*xi8>
    // CHECK: %[[reshape:.*]] = "tf.Reshape"(%[[icast]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:32:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. pkg/proxy/metrics/metrics.go

    	kubeproxyconfig "k8s.io/kubernetes/pkg/proxy/apis/config"
    	"k8s.io/kubernetes/pkg/proxy/util/nfacct"
    )
    
    const kubeProxySubsystem = "kubeproxy"
    
    var (
    	// SyncProxyRulesLatency is the latency of one round of kube-proxy syncing proxy
    	// rules. (With the iptables proxy, this includes both full and partial syncs.)
    	SyncProxyRulesLatency = metrics.NewHistogram(
    		&metrics.HistogramOpts{
    			Subsystem:      kubeProxySubsystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. src/crypto/aes/gcm_arm64.s

    	CMP	$128, srcPtrLen
    
    	MOVD	ks, H0
    	// For AES-128 round keys are stored in: K0 .. K10, KLAST
    	VLD1.P	64(H0), [K0.B16, K1.B16, K2.B16, K3.B16]
    	VLD1.P	64(H0), [K4.B16, K5.B16, K6.B16, K7.B16]
    	VLD1.P	48(H0), [K8.B16, K9.B16, K10.B16]
    	VMOV	K10.B16, KLAST.B16
    
    	BLT	startSingles
    	// There are at least 8 blocks to encrypt
    	TBZ	$4, NR, octetsLoop
    
    	// For AES-192 round keys occupy: K0 .. K7, K10, K11, K8, K9, KLAST
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    			j.APIVersion = ""
    			j.Kind = ""
    		},
    		func(j *runtime.Object, c fuzz.Continue) {
    			// TODO: uncomment when round trip starts from a versioned object
    			if true { //c.RandBool() {
    				*j = &runtime.Unknown{
    					// We do not set TypeMeta here because it is not carried through a round trip
    					Raw:         []byte(`{"apiVersion":"unknown.group/unknown","kind":"Something","someKey":"someValue"}`),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top