Home
last modified time | relevance | path

Searched defs:mu (Results 1 – 25 of 132) sorted by relevance

123456

/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/
DMethodsResolutionLogicTest.java57 …MethodUsage mu = constructorDeclaration.getAllMethods().stream().filter(m -> m.getDeclaration().ge… in compatibilityShouldConsiderAlsoTypeVariablesNegative() local
67 …MethodUsage mu = constructorDeclaration.getAllMethods().stream().filter(m -> m.getDeclaration().ge… in compatibilityShouldConsiderAlsoTypeVariablesRaw() local
79 …MethodUsage mu = constructorDeclaration.getAllMethods().stream().filter(m -> m.getDeclaration().ge… in compatibilityShouldConsiderAlsoTypeVariablesPositive() local
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/
DTTest.java157 double t(double mu, double[] observed) in t()
175 double t(double mu, StatisticalSummary sampleStats) in t()
342 double tTest(double mu, double[] sample) in tTest()
379 boolean tTest(double mu, double[] sample, double alpha) in tTest()
409 double tTest(double mu, StatisticalSummary sampleStats) in tTest()
448 double mu, in tTest()
DTTestImpl.java188 public double t(double mu, double[] observed) in t()
211 public double t(double mu, StatisticalSummary sampleStats) in t()
409 public double tTest(double mu, double[] sample) in tTest()
451 public boolean tTest(double mu, double[] sample, double alpha) in tTest()
485 public double tTest(double mu, StatisticalSummary sampleStats) in tTest()
528 public boolean tTest( double mu, StatisticalSummary sampleStats, in tTest()
913 protected double t(double m, double mu, double v, double n) { in t()
963 protected double tTest(double m, double mu, double v, double n) in tTest()
DTestUtils.java226 public static double t(double mu, double[] observed) in t()
234 public static double t(double mu, StatisticalSummary sampleStats) in t()
259 public static boolean tTest(double mu, double[] sample, double alpha) in tTest()
267 public static double tTest(double mu, double[] sample) in tTest()
275 public static boolean tTest(double mu, StatisticalSummary sampleStats, in tTest()
284 public static double tTest(double mu, StatisticalSummary sampleStats) in tTest()
/external/tensorflow/tensorflow/core/platform/default/
Dmutex.h68 explicit mutex_lock(mutex_type& mu) EXCLUSIVE_LOCK_FUNCTION(mu) : mu_(&mu) { in mutex_lock()
72 mutex_lock(mutex_type& mu, std::try_to_lock_t) EXCLUSIVE_LOCK_FUNCTION(mu) in mutex_lock()
106 explicit tf_shared_lock(mutex_type& mu) SHARED_LOCK_FUNCTION(mu) : mu_(&mu) { in tf_shared_lock()
110 tf_shared_lock(mutex_type& mu, std::try_to_lock_t) SHARED_LOCK_FUNCTION(mu) in tf_shared_lock()
164 inline ConditionResult WaitForMilliseconds(mutex_lock* mu, in WaitForMilliseconds()
/external/tensorflow/tensorflow/core/lib/random/
Drandom.cc36 static mutex mu(LINKER_INITIALIZED); in New64() local
43 static mutex mu(LINKER_INITIALIZED); in New64DefaultSeed() local
/external/protobuf/src/google/protobuf/stubs/
Dmutex.h84 explicit MutexLock(Mutex *mu) : mu_(mu) { this->mu_->Lock(); } in MutexLock()
98 explicit MutexLockMaybe(Mutex *mu) : in MutexLockMaybe()
/external/syslinux/core/lwip/src/include/lwip/
Dsys.h54 #define sys_mutex_new(mu) ERR_OK argument
55 #define sys_mutex_lock(mu) argument
56 #define sys_mutex_unlock(mu) argument
57 #define sys_mutex_free(mu) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
DTnaf.java82 public static BigInteger norm(final byte mu, ZTauElement lambda) in norm()
123 public static SimpleBigDecimal norm(final byte mu, SimpleBigDecimal u, in norm()
167 SimpleBigDecimal lambda1, byte mu) in round()
314 public static byte[] tauAdicNaf(byte mu, ZTauElement lambda) in tauAdicNaf()
447 public static BigInteger[] getLucas(byte mu, int k, boolean doV) in getLucas()
502 public static BigInteger getTw(byte mu, int w) in getTw()
612 BigInteger[] s, byte mu, byte c) in partModReduction()
735 public static byte[] tauAdicWNaf(byte mu, ZTauElement lambda, in tauAdicWNaf()
/external/valgrind/helgrind/tests/
Dtc06_two_races.c10 pthread_mutex_t mu = PTHREAD_MUTEX_INITIALIZER; variable
Dtc05_simple_race.c11 pthread_mutex_t mu = PTHREAD_MUTEX_INITIALIZER; variable
/external/tensorflow/tensorflow/core/grappler/costs/
Dop_performance_data.proto52 double mu = 1; field
57 double mu = 1; field
/external/valgrind/memcheck/tests/
Dreach_thread_register.c14 pthread_mutex_t mu = PTHREAD_MUTEX_INITIALIZER; variable
/external/gflags/src/
Dmutex.h308 explicit MutexLock(Mutex *mu) : mu_(mu) { mu_->Lock(); } in MutexLock()
320 explicit ReaderMutexLock(Mutex *mu) : mu_(mu) { mu_->ReaderLock(); } in ReaderMutexLock()
331 explicit WriterMutexLock(Mutex *mu) : mu_(mu) { mu_->WriterLock(); } in WriterMutexLock()
/external/iproute2/netem/
Dmaketable.c51 arraystats(double *x, int limit, double *mu, double *sigma, double *rho) in arraystats()
93 makedist(double *x, int limit, double mu, double sigma) in makedist()
202 double mu, sigma, rho; in main() local
Dnormal.c18 normal(double x, double mu, double sigma) in normal()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_mutex.h177 explicit GenericScopedLock(MutexType *mu) in GenericScopedLock()
196 explicit GenericScopedReadLock(MutexType *mu) in GenericScopedReadLock()
/external/tensorflow/tensorflow/core/kernels/
Dvariable_ops.h40 mutex* mu() { return &mu_; } in mu() function
/external/tensorflow/tensorflow/contrib/input_pipeline/kernels/
Dinput_pipeline_kernels.cc41 mutex* mu; in Compute() local
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
DValueServer.java76 private double mu = 0.0; field in ValueServer
284 public void setMu(double mu) { in setMu()
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
DSplineInterpolator.java88 double mu[] = new double[n]; in interpolate() local
/external/tensorflow/tensorflow/contrib/image/python/ops/
Dsingle_image_random_dot_stereograms.py35 mu=None, argument
/external/tensorflow/tensorflow/contrib/specs/python/
Dparams_ops.py82 def Nt(mu, sigma, limit=3.0): argument
/external/python/cpython3/Lib/
Dstatistics.py593 def pvariance(data, mu=None): argument
657 def pstdev(data, mu=None): argument
/external/clang/test/SemaCXX/
Dwarn-thread-safety-negative.cpp50 Mutex mu; member in SimpleTest::Bar
63 Mutex mu; member in SimpleTest::Foo

123456