Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for fsubs (0.07 sec)

  1. src/cmd/asm/internal/asm/testdata/ppc64.s

    	FADDS F1, F2, F3                // ec62082a
    	FADDSCC F1, F2, F3              // ec62082b
    	FSUB F1, F2                     // fc420828
    	FSUB F1, F2, F3                 // fc620828
    	FSUBCC F1, F2, F3               // fc620829
    	FSUBS F1, F2                    // ec420828
    	FSUBS F1, F2, F3                // ec620828
    	FSUBCC F1, F2, F3               // fc620829
    	FSUBSCC F1, F2, F3              // ec620829
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "FSUBS", argLength: 2, reg: fp21clobber, typ: "(Float32,Flags)", asm: "FSUBS", resultInArg0: true},                    // fp32 arg0 - arg1
    		{name: "FSUB", argLength: 2, reg: fp21clobber, typ: "(Float64,Flags)", asm: "FSUB", resultInArg0: true},                      // fp64 arg0 - arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "FADDD", argLength: 2, reg: fp21, asm: "FADDD", commutative: true},   // arg0 + arg1
    		{name: "FSUBS", argLength: 2, reg: fp21, asm: "FSUBS"},                      // arg0 - arg1
    		{name: "FSUBD", argLength: 2, reg: fp21, asm: "FSUBD"},                      // arg0 - arg1
    		{name: "FMULS", argLength: 2, reg: fp21, asm: "FMULS", commutative: true},   // arg0 * arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (Select0 (F(ADDS|SUBS) (FMULS y z) x)) && x.Block.Func.useFMA(v) => (FM(ADDS|SUBS) x y z)
    
    // Convert floating point comparisons against zero into 'load and test' instructions.
    (F(CMP|CMPS) x (FMOV(D|S)const [0.0])) => (LT(D|E)BR x)
    (F(CMP|CMPS) (FMOV(D|S)const [0.0]) x) => (InvertFlags (LT(D|E)BR <v.Type> x))
    
    // FSUB, FSUBS, FADD, FADDS now produce a condition code representing the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // and will not run on earlier targets.
    //
    (Add(Ptr|64|32|16|8) ...) => (ADD ...)
    (Add64F ...) => (FADD ...)
    (Add32F ...) => (FADDS ...)
    
    (Sub(Ptr|64|32|16|8) ...) => (SUB ...)
    (Sub32F ...) => (FSUBS ...)
    (Sub64F ...) => (FSUB ...)
    
    (Min(32|64)F x y) && buildcfg.GOPPC64 >= 9 => (XSMINJDP x y)
    (Max(32|64)F x y) && buildcfg.GOPPC64 >= 9 => (XSMAXJDP x y)
    
    // Combine 64 bit integer multiply and adds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    					if q, ok := s.(*Qualified); ok {
    						a := q.Scope
    						if t, ok := a.(*Template); ok {
    							st.subs.add(t.Name)
    							st.subs.add(t)
    						} else {
    							st.subs.add(a)
    						}
    						return s
    					}
    				}
    				n := st.sourceName()
    				if len(st.str) > 0 && st.str[0] == 'I' {
    					st.subs.add(n)
    					args := st.templateArgs()
    					n = &Template{Name: n, Args: args}
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  7. src/regexp/syntax/parse.go

    	for i > 0 && p.stack[i-1].Op < opPseudo {
    		i--
    	}
    	subs := p.stack[i:]
    	p.stack = p.stack[:i]
    
    	// Make sure top class is clean.
    	// All the others already are (see swapVerticalBar).
    	if len(subs) > 0 {
    		cleanAlt(subs[len(subs)-1])
    	}
    
    	// Empty alternate is special case
    	// (shouldn't happen but easy to handle).
    	if len(subs) == 0 {
    		return p.push(p.newRegexp(OpNoMatch))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

    dependencies {
        conf 'foo:bar:1'
        conf project(':sub')
    }
    
    configurations.all {
      resolutionStrategy {
          dependencySubstitution { DependencySubstitutions subs ->
              subs.substitute(subs.module('foo:bar:1')).using(subs.project(':sub'))
          }
          failOnVersionConflict()
      }
    }
    
    """
    
            when:
            succeeds ':checkDeps'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/arm64.s

    	VUMIN	V3.S4, V2.S4, V1.S4             // 416ca36e
    	FCCMPS	LT, F1, F2, $1	                // 41b4211e
    	FMADDS	F1, F3, F2, F4                  // 440c011f
    	FMADDD	F4, F5, F4, F4                  // 8414441f
    	FMSUBS	F13, F21, F13, F19              // b3d50d1f
    	FMSUBD	F11, F7, F15, F31               // ff9d4b1f
    	FNMADDS	F1, F3, F2, F4                  // 440c211f
    	FNMADDD	F1, F3, F2, F4                  // 440c611f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/riscv/obj.go

    	AFLW & obj.AMask: iFEncoding,
    	AFSW & obj.AMask: sFEncoding,
    
    	// 11.6: Single-Precision Floating-Point Computational Instructions
    	AFADDS & obj.AMask:   rFFFEncoding,
    	AFSUBS & obj.AMask:   rFFFEncoding,
    	AFMULS & obj.AMask:   rFFFEncoding,
    	AFDIVS & obj.AMask:   rFFFEncoding,
    	AFMINS & obj.AMask:   rFFFEncoding,
    	AFMAXS & obj.AMask:   rFFFEncoding,
    	AFSQRTS & obj.AMask:  rFFFEncoding,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top