Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for W1 (0.1 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    	kind := asmKindForType(t, size)
    	cc = append(cc, newComponent(suffix, kind, s, off, size, suffix))
    
    	switch kind {
    	case 8:
    		if arch.ptrSize == 4 {
    			w1, w2 := "lo", "hi"
    			if arch.bigEndian {
    				w1, w2 = w2, w1
    			}
    			cc = append(cc, newComponent(suffix+"_"+w1, 4, "half "+s, off, 4, suffix))
    			cc = append(cc, newComponent(suffix+"_"+w2, 4, "half "+s, off+4, 4, suffix))
    		}
    
    	case asmEmptyInterface:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. src/crypto/sha256/sha256block_arm64.s

    	VREV32	V5.B16, V5.B16
    	VREV32	V6.B16, V6.B16
    	VREV32	V7.B16, V7.B16
    
    	VADD	V16.S4, V4.S4, V9.S4                        // V18(W0+K0...W3+K3)
    	SHA256SU0	V5.S4, V4.S4                        // V4: (su0(W1)+W0,...,su0(W4)+W3)
    	HASHUPDATE                                          // H4
    
    	VADD	V17.S4, V5.S4, V9.S4                        // V18(W4+K4...W7+K7)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/bidi/core.go

    	}
    }
    
    // Resolving weak types Rules W1-W7.
    //
    // Note that some weak types (EN, AN) remain after this processing is
    // complete.
    func (s *isolatingRunSequence) resolveWeakTypes() {
    
    	// on entry, only these types remain
    	s.assertOnly(L, R, AL, EN, ES, ET, AN, CS, B, S, WS, ON, NSM, LRI, RLI, FSI, PDI)
    
    	// Rule W1.
    	// Changes all NSMs.
    	precedingCharacterType := s.sos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  4. src/math/bits/bits.go

    func Mul64(x, y uint64) (hi, lo uint64) {
    	const mask32 = 1<<32 - 1
    	x0 := x & mask32
    	x1 := x >> 32
    	y0 := y & mask32
    	y1 := y >> 32
    	w0 := x0 * y0
    	t := x1*y0 + w0>>32
    	w1 := t & mask32
    	w2 := t >> 32
    	w1 += x0 * y1
    	hi = x1*y1 + w2 + w1>>32
    	lo = x * y
    	return
    }
    
    // --- Full-width divide ---
    
    // Div returns the quotient and remainder of (hi, lo) divided by y:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/prepare-quantize-signed.mlir

    // CHECK-DAG: %[[w1:.*]] = arith.constant dense<{{\[\[\[\[}}-1.000000e+00, 1.000000e+00]]]
    // CHECK-DAG: %[[b_q:.*]] = "tfl.quantize"(%[[bias]]){{.*}}{7.8740158861230386E-10,1.9998891450408216E-8,1.9998891805679583E-7}
    // CHECK-DAG: %[[b_dq:.*]] = "tfl.dequantize"(%[[b_q]])
    // CHECK-DAG: %[[w1_q:.*]] = "tfl.quantize"(%[[w1]]){{.*}}{0.0078740157480314959,0.015748031496062992,0.015748031496062992}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

      return success();
    }
    
    // Convert:
    //   %y0 = dot_general(%x0, %w0)
    //   %y1 = dot_general(%x1, %w1)
    //   ...
    //   concatenate(%y0, %y1, ...)
    // To:
    //   %x = concatenate(%x0, %x1, ...)
    //   %w = concatenate(%w0, %w1, ...)
    //   dot_general(%x, %w)
    //
    // To simplify the implementation, we only handle the case where the final
    // concat is on the only batching dim.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	totalPods := 100
    
    	// Create watcher that will be slowing down reading.
    	w1, err := cacher.Watch(context.TODO(), "pods/ns", storage.ListOptions{
    		ResourceVersion: "999",
    		Predicate:       storage.Everything,
    	})
    	if err != nil {
    		t.Fatalf("Failed to create watch: %v", err)
    	}
    	defer w1.Stop()
    	go func() {
    		a := 0
    		for range w1.ResultChan() {
    			time.Sleep(time.Millisecond)
    			a++
    			if a == 100 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  8. src/math/lgamma.go

    //      Let z = 1/x, then we approximation
    //              f(z) = lgamma(x) - (x-0.5)(log(x)-1)
    //      by
    //                                  3       5             11
    //              w = w0 + w1*z + w2*z  + w3*z  + ... + w6*z
    //      where
    //              |w - f(z)| < 2**-58.74
    //
    //   4. For negative x, since (G is gamma function)
    //              -x*G(-x)*G(x) = pi/sin(pi*x),
    //      we have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 11K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteS390X.go

    		v.AddArg3(base, val, mem)
    		return true
    	}
    	// match: (MOVDstore [i] {s} p w1 x:(MOVDstore [i-8] {s} p w0 mem))
    	// cond: p.Op != OpSB && x.Uses == 1 && is20Bit(int64(i)-8) && setPos(v, x.Pos) && clobber(x)
    	// result: (STMG2 [i-8] {s} p w0 w1 mem)
    	for {
    		i := auxIntToInt32(v.AuxInt)
    		s := auxToSym(v.Aux)
    		p := v_0
    		w1 := v_1
    		x := v_2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Server-TLSv12-ClientAuthRequestedAndECDSAGiven

    00000090  35 35 33 5a 30 41 31 0b  30 09 06 03 55 04 06 13  |553Z0A1.0...U...|
    000000a0  02 41 55 31 0c 30 0a 06  03 55 04 08 13 03 4e 53  |.AU1.0...U....NS|
    000000b0  57 31 10 30 0e 06 03 55  04 07 13 07 50 79 72 6d  |W1.0...U....Pyrm|
    000000c0  6f 6e 74 31 12 30 10 06  03 55 04 03 13 09 4a 6f  |ont1.0...U....Jo|
    000000d0  65 6c 20 53 69 6e 67 30  81 9b 30 10 06 07 2a 86  |el Sing0..0...*.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top