Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for vminus1 (0.17 sec)

  1. 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)
  2. 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)
  3. test/64bit.go

    				var bigneg = Int64{-0x80000000, 0}
    				var minus1 = Int64{-1, ^uint32(0)}
    				if a.Cmp(bigneg) != 0 || b.Cmp(minus1) != 0 {	// a != -1<<63 || b != -1
    					div, mod = a.DivMod(b)
    					dodiv = true
    				}
    			}
    			fmt.Fprintf(bout, "\ttestInt64Binary(%v, %v, %v, %v, %v, %v, %v, %v, %v, %v, %v, %v);\n",
    				a, b, a.Plus(b), a.Minus(b), a.Times(b), div, mod,
    				a.And(b), a.Or(b), a.Xor(b), a.AndNot(b), dodiv)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 30 19:21:08 UTC 2013
    - 24.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/syscall/syscall_linux.go

    	if cgo_libc_setegid != nil {
    		return minus1, minus1, ENOTSUP
    	}
    	r1, r2, errno := runtime_doAllThreadsSyscall(trap, a1, a2, a3, a4, a5, a6)
    	return r1, r2, Errno(errno)
    }
    
    // linked by runtime.cgocall.go
    //
    //go:uintptrescapes
    func cgocaller(unsafe.Pointer, ...uintptr) uintptr
    
    var cgo_libc_setegid unsafe.Pointer // non-nil if cgo linked.
    
    const minus1 = ^uintptr(0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/gradients/math_grad.cc

        name = "Neg_Div_Grad_Y";
        TF_RETURN_IF_ERROR(Neg(ctx, upstream_grad, &temp_output,
                               name.c_str()));  // -U
        AbstractTensorHandlePtr MinusU(temp_output);
    
        name = "Mul_Div_Grad_Y";
        TF_RETURN_IF_ERROR(Mul(ctx, MinusU.get(), Z, &temp_output,
                               name.c_str()));  // -U*Z
        AbstractTensorHandlePtr UZ(temp_output);
    
        name = "Div_Grad_Y";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top