Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 160 for vminus1 (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. tensorflow/c/experimental/gradients/nn_grad.cc

            "BroadcastMul is not supported in tracing mode yet.");
      }
      auto imm_ctx = dyn_cast<ImmediateExecutionContext>(ctx);
      AbstractTensorPtr minus_1(imm_ctx->CreateInt32Scalar(-1));
      ImmediateTensorHandlePtr dim(imm_ctx->CreateLocalHandle(minus_1.get()));
      AbstractTensorHandle* expand_dims_outputs;
      TF_RETURN_IF_ERROR(
          ops::ExpandDims(ctx, vec, dim.get(), &expand_dims_outputs, "ExpandDims"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:38:45 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ConfigurationDeprecatedExtensions.kt

        plus(configuration.get())
    
    
    /**
     * See [Configuration.minus].
     */
    @Deprecated(deprecationMessage, replaceWith = ReplaceWith("get().minus(collection)"), level = DeprecationLevel.HIDDEN)
    operator fun <T : Configuration> NamedDomainObjectProvider<T>.minus(collection: FileCollection): FileCollection =
        get().minus(collection)
    
    
    /**
     * See [Configuration.minus].
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/src/operators/headers/operators.h

    int plus(int a, int b);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 49 bytes
    - Viewed (0)
  10. guava/src/com/google/common/math/ToDoubleRounder.java

                  return roundCeilingAsDouble;
                }
                roundFloor = toX(roundFloorAsDouble, RoundingMode.FLOOR);
              }
    
              X deltaToFloor = minus(x, roundFloor);
              X deltaToCeiling = minus(roundCeiling, x);
              int diff = deltaToFloor.compareTo(deltaToCeiling);
              if (diff < 0) { // closer to floor
                return roundFloorAsDouble;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top