Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for w2 (0.05 sec)

  1. src/cmd/compile/internal/ssa/value.go

    func (v *Value) AddArg4(w1, w2, w3, w4 *Value) {
    	v.Args = append(v.Args, w1, w2, w3, w4)
    	w1.Uses++
    	w2.Uses++
    	w3.Uses++
    	w4.Uses++
    }
    
    //go:noinline
    func (v *Value) AddArg5(w1, w2, w3, w4, w5 *Value) {
    	v.Args = append(v.Args, w1, w2, w3, w4, w5)
    	w1.Uses++
    	w2.Uses++
    	w3.Uses++
    	w4.Uses++
    	w5.Uses++
    }
    
    //go:noinline
    func (v *Value) AddArg6(w1, w2, w3, w4, w5, w6 *Value) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

        const w1 = vb.baseVal.width;
        const w2 = initWidth / s;
        const h1 = vb.baseVal.height;
        const h2 = initHeight / s;
        vb.baseVal.width = w2;
        vb.baseVal.height = h2;
    
        // We also want to adjust vb.baseVal.x so that u.x remains at same
        // screen X coordinate.  In other words, want to change it from x1 to x2
        // so that:
        //     (u.x - x1) / w1 = (u.x - x2) / w2
        // Simplifying that, we get
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. tests/integration/ambient/waypoint_test.go

    			istioctl.NewOrFail(t, t, istioctl.Config{}).InvokeOrFail(t, []string{
    				"waypoint",
    				"-n",
    				nsConfig.Name(),
    				"delete",
    				"w1",
    				"w2",
    			})
    			retry.UntilSuccessOrFail(t, func() error {
    				for _, name := range []string{"w1", "w2"} {
    					if err := checkWaypointIsReady(t, nsConfig.Name(), name); err != nil {
    						if !errors.Is(err, kubetest.ErrNoPodsFetched) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

                    list.add((WebConfig) crawlingConfigHelper.getCrawlingConfig("W2"));
                    list.add((WebConfig) crawlingConfigHelper.getCrawlingConfig("W3"));
                    return list;
                }
            }, WebConfigBhv.class.getCanonicalName());
            final List<WebConfig> configList = crawlingConfigHelper.getWebConfigListByIds(List.of("W1", "W2", "W3"));
            assertEquals(3, configList.size());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  5. test/codegen/memcombine.go

    }
    
    func zero_uint32_2(w1, w2 []uint32) {
    	_, _ = w1[1], w2[1]
    	// arm64:"MOVD\tZR",-"MOVB",-"MOVH",-"MOVW"
    	// amd64:`MOVQ\s[$]0,\s\([A-Z]+\)`
    	// ppc64x:`MOVD\s`
    	w1[0], w1[1] = 0, 0
    	// arm64:"MOVD\tZR",-"MOVB",-"MOVH",-"MOVW"
    	// amd64:`MOVQ\s[$]0,\s\([A-Z]+\)`
    	// ppc64x:`MOVD\s`
    	w2[1], w2[0] = 0, 0
    }
    
    func zero_uint32_4(w1, w2 []uint32) {
    	_, _ = w1[3], w2[3]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. src/net/http/pattern_test.go

    		{"/path/to/something", pattern{segments: []segment{
    			lit("path"), lit("to"), lit("something"),
    		}}},
    		{
    			"/{w1}/lit/{w2}",
    			pattern{
    				segments: []segment{wild("w1"), lit("lit"), wild("w2")},
    			},
    		},
    		{
    			"/{w1}/lit/{w2}/",
    			pattern{
    				segments: []segment{wild("w1"), lit("lit"), wild("w2"), multi("")},
    			},
    		},
    		{
    			"example.com/",
    			pattern{host: "example.com", segments: []segment{multi("")}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/quantize-dynamic-range.mlir

    // PerChannelWeightOnly-DAG: %[[w2:.*]] = "tfl.pseudo_qconst"() <{qtype = tensor<64x3x3x3x!quant.uniform<i8<-127:127>:f32:3, {1.000000e+00,1.000000e+00,1.000000e+00}
    // PerChannelWeightOnly-DAG: %[[dq_w2:.*]] = "tfl.dequantize"(%[[w2]]) : (tensor<64x3x3x3x!quant.uniform<i8<-127:127>:f32:3, {1.000000e+00,1.000000e+00,1.000000e+00}>>) -> tensor<64x3x3x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 21:09:00 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    	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)
  9. src/cmd/asm/internal/asm/testdata/mips64.s

    	VMOVH	(R24), W12     // 7800c321
    	VMOVH	110(R19), W8   // 78379a21
    	VMOVH	-70(R12), W3   // 7bdd60e1
    	VMOVW	(R3), W31      // 78001fe2
    	VMOVW	64(R20), W16   // 7810a422
    	VMOVW	-104(R17), W24 // 7be68e22
    	VMOVD	(R3), W2       // 780018a3
    	VMOVD	128(R23), W19  // 7810bce3
    	VMOVD	-256(R31), W0  // 7be0f823
    
    	VMOVB	W8, (R0)       // 78000224
    	VMOVB	W0, 511(R3)    // 79ff1824
    	VMOVB	W21, -512(R12) // 7a006564
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/prepare-quantize-signed.mlir

    // CHECK-DAG: %[[w1_dq:.*]] = "tfl.dequantize"(%[[w1_q]])
    // Weight with adjusted scales
    // CHECK-DAG: %[[w2:.*]] = arith.constant dense<{{\[\[\[\[}}-1.000000e+00, 1.000000e+00]]]
    // CHECK-DAG: %[[w2_q:.*]] = "tfl.quantize"(%[[w2]]){{.*}}{0.0078740157480314959,0.19998891099675145,1.9998891454946508}
    // CHECK-DAG: %[[w2_dq:.*]] = "tfl.dequantize"(%[[w2_q]])
    // Bias with adjusted scales
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top