Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for maddld (0.2 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    			opset(ACNTTZW, r0)
    			opset(ACNTTZWCC, r0)
    			opset(ACNTTZD, r0)
    			opset(ACNTTZDCC, r0)
    
    		case ACOPY: /* copy, paste. */
    			opset(APASTECC, r0)
    
    		case AMADDHD: /* maddhd, maddhdu, maddld */
    			opset(AMADDHDU, r0)
    			opset(AMADDLD, r0)
    
    		case AMOVBZ: /* lbz, stz, rlwm(r/r), lhz, lha, stz, and x variants */
    			opset(AMOVH, r0)
    			opset(AMOVHZ, r0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

            ivyRepo.module("org", "middle", "1.0")
                .dependsOn("org", "leaf", "1.0")
                .dependsOn("org", "leaf", "[1.0,2.0]")
                .dependsOn("org", "leaf", "latest.integration")
                .publish()
            ivyRepo.module("org", "top", "1.0")
                .dependsOn("org", "middle", "1.0")
                .dependsOn("org", "middle", "[1.0,2.0]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        TFL_TCresVTEtIsSameAsOp<0, 0>>]> {
      let summary = [{
        Returns a tensor with the provided diagonal and everything else padded with zeros.
      }];
    
      let description = [{
        Given a diagonal, returns a tensor with the diagonal and everything else padded with zeros.
        Assume diagonal has k dimensions `[I, J, K, ..., N]`, then the output is a tensor of rank `k+1`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    }
    
    // Special2 is like special, but uses two values.
    type Special2 struct {
    	Prefix string
    	Val1   AST
    	Middle string
    	Val2   AST
    }
    
    func (s *Special2) print(ps *printState) {
    	ps.writeString(s.Prefix)
    	ps.print(s.Val1)
    	ps.writeString(s.Middle)
    	ps.print(s.Val2)
    }
    
    func (s *Special2) Traverse(fn func(AST) bool) {
    	if fn(s) {
    		s.Val1.Traverse(fn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  5. src/reflect/all_test.go

    		t.Errorf("function returned %d, want 101", r[0].Int())
    	}
    }
    
    func TestStructArg(t *testing.T) {
    	type padded struct {
    		B string
    		C int32
    	}
    	var (
    		gotA  padded
    		gotB  uint32
    		wantA = padded{"3", 4}
    		wantB = uint32(5)
    	)
    	f := func(a padded, b uint32) {
    		gotA, gotB = a, b
    	}
    	ValueOf(f).Call([]Value{ValueOf(wantA), ValueOf(wantB)})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/asm6.go

    // The actual bytes laid down are a function of the 3rd entry in the line (that
    // is, the Ztype) and the z bytes.
    //
    // For example, let's look at AADDL.  The optab line says:
    //
    //	{AADDL, yaddl, Px, opBytes{0x83, 00, 0x05, 0x81, 00, 0x01, 0x03}},
    //
    // and yaddl says
    //
    //	var yaddl = []ytab{
    //	        {Yi8, Ynone, Yml, Zibo_m, 2},
    //	        {Yi32, Ynone, Yax, Zil_, 1},
    //	        {Yi32, Ynone, Yml, Zilo_m, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (MADD a (MOVDconst [-1]) x) => (SUB a x)
    (MADD a (MOVDconst [0]) _) => a
    (MADD a (MOVDconst [1]) x) => (ADD a x)
    (MADD a (MOVDconst [c]) x) && isPowerOfTwo64(c) => (ADDshiftLL a x [log64(c)])
    (MADD a (MOVDconst [c]) x) && isPowerOfTwo64(c-1) && c>=3 => (ADD a (ADDshiftLL <x.Type> x x [log64(c-1)]))
    (MADD a (MOVDconst [c]) x) && isPowerOfTwo64(c+1) && c>=7 => (SUB a (SUBshiftLL <x.Type> x x [log64(c+1)]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		v.AddArg(z)
    		return true
    	}
    	return false
    }
    func rewriteValueRISCV64_OpRISCV64FADDD(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (FADDD a (FMULD x y))
    	// cond: a.Block.Func.useFMA(v)
    	// result: (FMADDD x y a)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			a := v_0
    			if v_1.Op != OpRISCV64FMULD {
    				continue
    			}
    			y := v_1.Args[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/LocalCache.java

        /**
         * A queue of elements currently in the map, ordered by write time. Elements are added to the
         * tail of the queue on write.
         */
        @GuardedBy("this")
        final Queue<ReferenceEntry<K, V>> writeQueue;
    
        /**
         * A queue of elements currently in the map, ordered by access time. Elements are added to the
         * tail of the queue on access (note that writes count as accesses).
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  10. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    lundbeck
    
    // luxe : 2014-01-09 Registry Services, LLC
    luxe
    
    // luxury : 2013-10-17 Luxury Partners, LLC
    luxury
    
    // macys : 2015-07-31 Macys, Inc.
    macys
    
    // madrid : 2014-05-01 Comunidad de Madrid
    madrid
    
    // maif : 2014-10-02 Mutuelle Assurance Instituteur France (MAIF)
    maif
    
    // maison : 2013-12-05 Binky Moon, LLC
    maison
    
    // makeup : 2015-01-15 XYZ.COM LLC
    makeup
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top