Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 167 for fadds (0.04 sec)

  1. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "ADDCCconst", argLength: 1, reg: gp11cxer, asm: "ADDCCC", aux: "Int64", typ: "(Int,Flags)"}, // arg0 + auxInt sets CC, clobbers XER
    		{name: "FADD", argLength: 2, reg: fp21, asm: "FADD", commutative: true},                            // arg0+arg1
    		{name: "FADDS", argLength: 2, reg: fp21, asm: "FADDS", commutative: true},                          // arg0+arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  2. JavadocStyleGuide.md

    | 4  | `@see`        | Adds a “See Also” heading with a link or text entry that points to a reference | `@see string`<br>`@see <a href=”URL#value”>label</a>`<br>`@see package.class#member label`                                                                                                                         |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. pkg/kubelet/config/config.go

    	seenBefore := s.sourcesSeen.Has(source)
    	adds, updates, deletes, removes, reconciles := s.merge(source, change)
    	firstSet := !seenBefore && s.sourcesSeen.Has(source)
    
    	// deliver update notifications
    	switch s.mode {
    	case PodConfigNotificationIncremental:
    		if len(removes.Pods) > 0 {
    			s.updates <- *removes
    		}
    		if len(adds.Pods) > 0 {
    			s.updates <- *adds
    		}
    		if len(updates.Pods) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. test/codegen/mathbits.go

    // --------------- //
    
    func Add(x, y, ci uint) (r, co uint) {
    	// arm64:"ADDS","ADCS","ADC",-"ADD\t",-"CMP"
    	// amd64:"NEGL","ADCQ","SBBQ","NEGQ"
    	// ppc64x: "ADDC", "ADDE", "ADDZE"
    	// s390x:"ADDE","ADDC\t[$]-1,"
    	// riscv64: "ADD","SLTU"
    	return bits.Add(x, y, ci)
    }
    
    func AddC(x, ci uint) (r, co uint) {
    	// arm64:"ADDS","ADCS","ADC",-"ADD\t",-"CMP"
    	// amd64:"NEGL","ADCQ","SBBQ","NEGQ"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

            dispatchedPaths.computeIfAbsent(type, (t) -> new ArrayList<>()).add(path);
        }
    
        /**
         * Adds main and test output directories to the result. This method adds the main output directory
         * to the module-path if it contains a {@code module-info.class}, or to the class-path otherwise.
         * For the test output directory, the rules are more complex and are governed by the fact that
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. src/sync/atomic/doc.go

    func CompareAndSwapPointer(addr *unsafe.Pointer, old, new unsafe.Pointer) (swapped bool)
    
    // AddInt32 atomically adds delta to *addr and returns the new value.
    // Consider using the more ergonomic and less error-prone [Int32.Add] instead.
    func AddInt32(addr *int32, delta int32) (new int32)
    
    // AddUint32 atomically adds delta to *addr and returns the new value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Task.java

         */
        @Internal
        String getPath();
    
        /**
         * <p>Adds the given {@link Action} to the beginning of this task's action list.</p>
         *
         * @param action The action to add
         * @return the task object this method is applied to
         */
        Task doFirst(Action<? super Task> action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  8. src/internal/trace/generation.go

    	}
    	// Sort the CPU samples.
    	slices.SortFunc(g.cpuSamples, func(a, b cpuSample) int {
    		return cmp.Compare(a.time, b.time)
    	})
    	return g, spill, spillErr
    }
    
    // processBatch adds the batch to the generation.
    func processBatch(g *generation, b batch) error {
    	switch {
    	case b.isStringsBatch():
    		if err := addStrings(&g.strings, b); err != nil {
    			return err
    		}
    	case b.isStacksBatch():
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableMultiset.java

        }
    
        Builder(boolean forSubtype) {
          // for ImmutableSortedMultiset not to allocate data structures not used there
          this.contents = null;
        }
    
        /**
         * Adds {@code element} to the {@code ImmutableMultiset}.
         *
         * @param element the element to add
         * @return this {@code Builder} object
         * @throws NullPointerException if {@code element} is null
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

                            FunctionLibraryDefinition* flib_def,
                            absl::flat_hash_set<Node*>* control_ret_nodes);
    
      // Converts a given FuncOp to a FunctionDef and adds it to the function
      // definition library
      static Status ConvertLibFunction(
          const GraphExportConfig& configs, const Dialect* tf_dialect,
          const SymbolTable& symbol_table, FuncOp function,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
Back to top