Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 116 for ADDS (0.16 sec)

  1. src/cmd/link/internal/ld/xcoff.go

    	stringsLen int
    }
    
    // size returns size of string table t.
    func (t *xcoffStringTable) size() int {
    	// string table starts with 4-byte length at the beginning
    	return t.stringsLen + 4
    }
    
    // add adds string str to string table t.
    func (t *xcoffStringTable) add(str string) int {
    	off := t.size()
    	t.strings = append(t.strings, str)
    	t.stringsLen += len(str) + 1 // each string will have 0 appended to it
    	return off
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Adds a failure if the key is a reserved attribute of Google Test
      // testcase tags.  Returns true if the property is valid.
      // TODO(russr): Validate attribute names are legal and human readable.
      static bool ValidateTestProperty(const std::string& xml_element,
                                       const TestProperty& test_property);
    
      // Adds a test part result to the list.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Adds a failure if the key is a reserved attribute of Google Test
      // testcase tags.  Returns true if the property is valid.
      // TODO(russr): Validate attribute names are legal and human readable.
      static bool ValidateTestProperty(const std::string& xml_element,
                                       const TestProperty& test_property);
    
      // Adds a test part result to the list.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (ADC x (SRA y z) flags) => (ADCshiftRAreg x y z flags)
    (ADDS x (SLLconst [c] y)) => (ADDSshiftLL x y [c])
    (ADDS x (SRLconst [c] y)) => (ADDSshiftRL x y [c])
    (ADDS x (SRAconst [c] y)) => (ADDSshiftRA x y [c])
    (ADDS x (SLL y z)) => (ADDSshiftLLreg x y z)
    (ADDS x (SRL y z)) => (ADDSshiftRLreg x y z)
    (ADDS x (SRA y z)) => (ADDSshiftRAreg x y z)
    (SUB x (SLLconst [c] y)) => (SUBshiftLL x y [c])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    		match := modload.MatchInModule(ctx, pattern, m, imports.AnyTags())
    		if len(match.Errs) > 0 {
    			return match.Pkgs, match.Errs[0]
    		}
    		return match.Pkgs, nil
    	})
    }
    
    // queryNone adds a candidate set to q for each module matching q.pattern.
    // Each candidate set has only one possible module version: the matched
    // module at version "none".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    The plugin achieves this by doing the following:
    
     * Applies the link:https://kotlinlang.org/docs/reference/using-gradle.html#targeting-the-jvm[Kotlin Plugin], which adds support for compiling Kotlin source files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // fused multiply-add
    (Select0 (F(ADD|SUB) (FMUL y z) x)) && x.Block.Func.useFMA(v) => (FM(ADD|SUB) x y z)
    (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)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            output.contains("result = [lib2-5.6.jar.txt, lib1-1.3.jar.txt]")
        }
    
        @ToBeFixedForConfigurationCache(because = "treating file collection visit failures as a configuration cache problem adds an additional failure to the build summary")
        def "transform does not execute when dependencies cannot be found"() {
            given:
            mavenHttpRepo.module("unknown", "not-found", "4.3").allowAll().assertNotPublished()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    			root := ld.pkg(ctx, path, pkgIsRoot)
    			if !inRoots[root] {
    				ld.roots = append(ld.roots, root)
    				inRoots[root] = true
    			}
    		}
    
    		// ld.pkg adds imported packages to the work queue and calls applyPkgFlags,
    		// which adds tests (and test dependencies) as needed.
    		//
    		// When all of the work in the queue has completed, we'll know that the
    		// transitive closure of dependencies has been loaded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/dwarf.go

    	}
    	d.addDwarfAddrField(su, v)
    }
    
    // addDwarfAddrField adds a DWARF field in DWARF 64bits or 32bits.
    func (d *dwctxt) addDwarfAddrField(sb *loader.SymbolBuilder, v uint64) {
    	if isDwarf64(d.linkctxt) {
    		sb.AddUint(d.arch, v)
    	} else {
    		sb.AddUint32(d.arch, uint32(v))
    	}
    }
    
    // addDwarfAddrRef adds a DWARF pointer in DWARF 64bits or 32bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top