Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 138 for vminus1 (0.54 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/src/operators/cpp/minus.cpp

    #include "operators.h"
    
    int minus(int a, int b) {
        return a - b;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 70 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/src/operators/c/minus.c

    #include "operators.h"
    
    int minus(int a, int b) {
        return a - b;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 70 bytes
    - Viewed (0)
  3. cmd/dependencyverifier/dependencyverifier.go

    func difference(a, b []string) ([]string, []string) {
    	aMinusB := map[string]bool{}
    	bMinusA := map[string]bool{}
    	for _, dependency := range a {
    		aMinusB[dependency] = true
    	}
    	for _, dependency := range b {
    		if _, found := aMinusB[dependency]; found {
    			delete(aMinusB, dependency)
    		} else {
    			bMinusA[dependency] = true
    		}
    	}
    	aMinusBList := []string{}
    	bMinusAList := []string{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 07 01:48:30 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. src/crypto/internal/edwards25519/edwards25519.go

    	v.YplusX.Select(&a.YplusX, &b.YplusX, cond)
    	v.YminusX.Select(&a.YminusX, &b.YminusX, cond)
    	v.Z.Select(&a.Z, &b.Z, cond)
    	v.T2d.Select(&a.T2d, &b.T2d, cond)
    	return v
    }
    
    // Select sets v to a if cond == 1 and to b if cond == 0.
    func (v *affineCached) Select(a, b *affineCached, cond int) *affineCached {
    	v.YplusX.Select(&a.YplusX, &b.YplusX, cond)
    	v.YminusX.Select(&a.YminusX, &b.YminusX, cond)
    	v.T2d.Select(&a.T2d, &b.T2d, cond)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 13 19:21:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. src/crypto/rsa/rsa.go

    					continue NextSetOfPrimes
    				}
    			}
    		}
    
    		n := new(big.Int).Set(bigOne)
    		totient := new(big.Int).Set(bigOne)
    		pminus1 := new(big.Int)
    		for _, prime := range primes {
    			n.Mul(n, prime)
    			pminus1.Sub(prime, bigOne)
    			totient.Mul(totient, pminus1)
    		}
    		if n.BitLen() != bits {
    			// This should never happen for nprimes == 2 because
    			// crypto/rand should set the top two bits in each prime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/cryptobyte/asn1.go

    			// invert and subtract 1. If the most-significant-bit isn't set then
    			// we'll need to pad the beginning with 0xff in order to keep the number
    			// negative.
    			nMinus1 := new(big.Int).Neg(n)
    			nMinus1.Sub(nMinus1, bigOne)
    			bytes := nMinus1.Bytes()
    			for i := range bytes {
    				bytes[i] ^= 0xff
    			}
    			if len(bytes) == 0 || bytes[0]&0x80 == 0 {
    				c.add(0xff)
    			}
    			c.add(bytes...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/anames.go

    	"VINSERTI64X4",
    	"VINSERTPS",
    	"VLDDQU",
    	"VLDMXCSR",
    	"VMASKMOVDQU",
    	"VMASKMOVPD",
    	"VMASKMOVPS",
    	"VMAXPD",
    	"VMAXPS",
    	"VMAXSD",
    	"VMAXSS",
    	"VMINPD",
    	"VMINPS",
    	"VMINSD",
    	"VMINSS",
    	"VMOVAPD",
    	"VMOVAPS",
    	"VMOVD",
    	"VMOVDDUP",
    	"VMOVDQA",
    	"VMOVDQA32",
    	"VMOVDQA64",
    	"VMOVDQU",
    	"VMOVDQU16",
    	"VMOVDQU32",
    	"VMOVDQU64",
    	"VMOVDQU8",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

        }
      }
    
      private abstract static class DelayedActionRunnable implements Runnable {
        private final long tMinus;
    
        protected DelayedActionRunnable(long tMinus) {
          this.tMinus = tMinus;
        }
    
        @Override
        public final void run() {
          try {
            Thread.sleep(tMinus);
          } catch (InterruptedException e) {
            throw new AssertionError(e);
          }
          doAction();
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 16:06:39 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

        }
      }
    
      private abstract static class DelayedActionRunnable implements Runnable {
        private final long tMinus;
    
        protected DelayedActionRunnable(long tMinus) {
          this.tMinus = tMinus;
        }
    
        @Override
        public final void run() {
          try {
            Thread.sleep(tMinus);
          } catch (InterruptedException e) {
            throw new AssertionError(e);
          }
          doAction();
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 30.9K bytes
    - Viewed (0)
  10. src/crypto/dsa/dsa.go

    // in math/big.Int.ModInverse) although math/big itself isn't strictly
    // constant-time so it's not perfect.
    func fermatInverse(k, P *big.Int) *big.Int {
    	two := big.NewInt(2)
    	pMinus2 := new(big.Int).Sub(P, two)
    	return new(big.Int).Exp(k, pMinus2, P)
    }
    
    // Sign signs an arbitrary length hash (which should be the result of hashing a
    // larger message) using the private key, priv. It returns the signature as a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top