Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 128 for Negate (0.38 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.ir.txt

                      receiver: GET_VAR '<this>: <root>.Operation.Negate declared in <root>.Operation.Negate.<get-value>' type=<root>.Operation.Negate origin=null
            CONSTRUCTOR visibility:public <> (value:kotlin.Int) returnType:<root>.Operation.Negate [primary]
              VALUE_PARAMETER name:value index:0 type:kotlin.Int
              BLOCK_BODY
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 04 09:35:38 UTC 2024
    - 25K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

            scopesToCollect.addAll(scopesToResolve);
    
            DependencyFilter collectionFilter = new ScopeDependencyFilter(null, negate(scopesToCollect));
            DependencyFilter resolutionFilter = new ScopeDependencyFilter(null, negate(scopesToResolve));
            resolutionFilter = AndDependencyFilter.newInstance(collectionFilter, resolutionFilter);
            resolutionFilter =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. src/crypto/internal/edwards25519/field/fe.go

    	v.l2 = (a.l2 + 0xFFFFFFFFFFFFE) - b.l2
    	v.l3 = (a.l3 + 0xFFFFFFFFFFFFE) - b.l3
    	v.l4 = (a.l4 + 0xFFFFFFFFFFFFE) - b.l4
    	return v.carryPropagate()
    }
    
    // Negate sets v = -a, and returns v.
    func (v *Element) Negate(a *Element) *Element {
    	return v.Subtract(feZero, a)
    }
    
    // Invert sets v = 1/z mod p, and returns v.
    //
    // If z == 0, Invert returns v = 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_cluster_util_test.cc

      Output variable =
          ops::Variable(s.WithOpName("variable"), PartialTensorShape{}, DT_FLOAT);
      Output read = ops::Identity(s.WithOpName("read_ref_var"), variable);
      Output neg = ops::Negate(s.WithOpName("negate_ref"), read);
      Output add = ops::Add(s.WithOpName("add_ref"), neg, neg);
    
      Output constant =
          ops::Const(s.WithOpName("constant_ref"), Input::Initializer(0.0));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. src/cmd/covdata/tool_test.go

    	}
    }
    
    func dumplines(lines []string) {
    	for i := range lines {
    		fmt.Fprintf(os.Stderr, "%s\n", lines[i])
    	}
    }
    
    type dumpCheck struct {
    	tag     string
    	re      *regexp.Regexp
    	negate  bool
    	nonzero bool
    	zero    bool
    }
    
    // runDumpChecks examines the output of "go tool covdata debugdump"
    // for a given output directory, looking for the presence or absence
    // of specific markers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. src/crypto/internal/edwards25519/scalar.go

    }
    
    // Subtract sets s = x - y mod l, and returns s.
    func (s *Scalar) Subtract(x, y *Scalar) *Scalar {
    	// s = -1 * y + x mod l
    	fiatScalarSub(&s.s, &x.s, &y.s)
    	return s
    }
    
    // Negate sets s = -x mod l, and returns s.
    func (s *Scalar) Negate(x *Scalar) *Scalar {
    	// s = -1 * x + 0 mod l
    	fiatScalarOpp(&s.s, &x.s)
    	return s
    }
    
    // Multiply sets s = x * y mod l, and returns s.
    func (s *Scalar) Multiply(x, y *Scalar) *Scalar {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. src/runtime/crash_test.go

    	x, y *int
    }
    
    func (p *point) negate() {
    	*p.x = *p.x * -1
    	*p.y = *p.y * -1
    }
    
    // Test for issue #10152.
    func TestPanicInlined(t *testing.T) {
    	defer func() {
    		r := recover()
    		if r == nil {
    			t.Fatalf("recover failed")
    		}
    		buf := make([]byte, 2048)
    		n := runtime.Stack(buf, false)
    		buf = buf[:n]
    		if !bytes.Contains(buf, []byte("(*point).negate(")) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/sccp.go

    func possibleConst(val *Value) bool {
    	if isConst(val) {
    		return true
    	}
    	switch val.Op {
    	case OpCopy:
    		return true
    	case OpPhi:
    		return true
    	case
    		// negate
    		OpNeg8, OpNeg16, OpNeg32, OpNeg64, OpNeg32F, OpNeg64F,
    		OpCom8, OpCom16, OpCom32, OpCom64,
    		// math
    		OpFloor, OpCeil, OpTrunc, OpRoundToEven, OpSqrt,
    		// conversion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/LockFileReaderWriter.java

            listener.fileObserved(uniqueLockFile.toFile());
            if (Files.exists(uniqueLockFile)) {
                try (Stream<String> lines = Files.lines(uniqueLockFile, CHARSET)) {
                    lines.filter(empty.or(comment).negate())
                        .filter(line -> {
                            if (line.startsWith(EMPTY_RESOLUTIONS_ENTRY)) {
                                // This is a perf hack for handling the last line in the file in a special way
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DefaultCopySpec.java

            PatternMatcher matcher = PatternMatcherFactory.getPatternMatcher(true, isCaseSensitive(), pattern);
            return eachFile(new MatchingCopyAction(matcher.negate(), action));
        }
    
        @Override
        public CopySpec filesNotMatching(Iterable<String> patterns, Action<? super FileCopyDetails> action) {
            if (!patterns.iterator().hasNext()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 33.6K bytes
    - Viewed (0)
Back to top