HomeSort by relevance Sort by last modified time
    Searched refs:mu (Results 1 - 25 of 205) sorted by null

1 2 3 4 5 6 7 8 9

  /system/extras/libpagemap/
pm_memusage.c 19 void pm_memusage_zero(pm_memusage_t *mu) {
20 mu->vss = mu->rss = mu->pss = mu->uss = mu->swap = 0;
  /art/runtime/base/
mutex_test.cc 27 static void AssertDepth(Mutex& mu, uint32_t expected_depth) {
28 ASSERT_EQ(expected_depth, mu.GetDepth());
32 mu.AssertNotHeld(Thread::Current());
34 mu.AssertHeld(Thread::Current());
40 Mutex mu("test mutex");
41 MutexTester::AssertDepth(mu, 0U);
42 mu.Lock(Thread::Current());
43 MutexTester::AssertDepth(mu, 1U);
44 mu.Unlock(Thread::Current());
45 MutexTester::AssertDepth(mu, 0U)
112 Mutex mu; member in struct:art::RecursiveLockWait
    [all...]
  /bionic/libc/private/
ScopedPthreadMutexLocker.h 26 explicit ScopedPthreadMutexLocker(pthread_mutex_t* mu) : mu_(mu) {
  /external/chromium_org/third_party/leveldatabase/src/util/
mutexlock.h 25 explicit MutexLock(port::Mutex *mu) EXCLUSIVE_LOCK_FUNCTION(mu)
26 : mu_(mu) {
  /external/chromium_org/third_party/skia/bench/
MutexBench.cpp 22 SK_DECLARE_STATIC_MUTEX(mu);
24 mu.acquire();
25 mu.release();
  /external/skia/bench/
MutexBench.cpp 22 SK_DECLARE_STATIC_MUTEX(mu);
24 mu.acquire();
25 mu.release();
  /external/valgrind/main/helgrind/tests/
tc05_simple_race.c 11 pthread_mutex_t mu = PTHREAD_MUTEX_INITIALIZER; variable
16 pthread_mutex_lock( &mu );
18 pthread_mutex_unlock( &mu );
34 pthread_mutex_lock( &mu );
36 pthread_mutex_unlock( &mu );
tc06_two_races.c 10 pthread_mutex_t mu = PTHREAD_MUTEX_INITIALIZER; variable
15 pthread_mutex_lock( &mu );
17 pthread_mutex_unlock( &mu );
32 pthread_mutex_lock( &mu );
34 pthread_mutex_unlock( &mu );
  /external/iproute2/netem/
stats.c 24 double mu=0.0, sigma=0.0, sumsquare=0.0, sum=0.0, top=0.0, rho=0.0; local
43 mu = sum/(double)n;
44 sigma = sqrt((sumsquare - (double)n*mu*mu)/(double)(n-1));
47 top += ((double)x[i]-mu)*((double)x[i-1]-mu);
48 sigma2 += ((double)x[i-1] - mu)*((double)x[i-1] - mu);
53 printf("mu = %12.6f\n", mu);
    [all...]
maketable.c 51 arraystats(double *x, int limit, double *mu, double *sigma, double *rho)
62 *mu = sum/(double)n;
63 *sigma = sqrt((sumsquare - (double)n*(*mu)*(*mu))/(double)(n-1));
66 top += ((double)x[i]- *mu)*((double)x[i-1]- *mu);
67 sigma2 += ((double)x[i-1] - *mu)*((double)x[i-1] - *mu);
93 makedist(double *x, int limit, double mu, double sigma)
107 input = (x[i]-mu)/sigma
200 double mu, sigma, rho; local
    [all...]
normal.c 18 normal(double x, double mu, double sigma)
20 return .5 + .5*erf((x-mu)/(sqrt(2.0)*sigma));
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
preemph_amrwb_dec.cpp 48 int16 mu, (i) Q15 : preemphasis coefficient
116 int16 mu, /* (i) Q15 : preemphasis coefficient */
125 L_tmp = msu_16by16_from_int32((int32)x[i] << 16, x[i - 1], mu);
deemphasis_32.cpp 50 int16 mu, (i) Q15 : deemphasis factor
57 32-bits filtering through 1/(1-mu z^-1)
69 Deemphasis H(z) = 1/(1 - 0.68z^(-1)) where mu = 0.67999 in Q15
124 int16 mu, /* (i) Q15 : deemphasis factor */
137 L_tmp = fxp_mac_16by16(*mem, mu, L_tmp),
149 L_tmp = fxp_mac_16by16(y[i - 1], mu, L_tmp),
158 L_tmp = fxp_mac_16by16(y[i - 1], mu, L_tmp),
  /frameworks/ex/variablespeed/jni/
no_synchronization.h 42 explicit MutexLock(Mutex* mu) : mu_(mu) {}
  /external/valgrind/main/memcheck/tests/
reach_thread_register.c 14 pthread_mutex_t mu = PTHREAD_MUTEX_INITIALIZER; variable
23 pthread_mutex_lock(&mu);
33 pthread_mutex_unlock(&mu);
35 pthread_mutex_lock(&mu);
37 pthread_mutex_unlock(&mu);
  /external/chromium_org/third_party/re2/util/
atomicops.h 49 re2::Mutex mu; local
50 re2::MutexLock l(&mu);
  /external/regex-re2/util/
atomicops.h 49 re2::Mutex mu; local
50 re2::MutexLock l(&mu);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
deemph.c 20 * Description:filtering through 1/(1-mu z^ -1) *
32 Word16 mu, /* (i) Q15 : deemphasis factor */
41 L_tmp = L_mac(L_tmp, *mem, mu);
47 L_tmp = L_mac(L_tmp, x[i - 1], mu);
59 Word16 mu, /* (i) Q15 : deemphasis factor */
67 L_tmp += ((*mem) * mu)<<1;
72 L_tmp += (x[i - 1] * mu)<<1;
84 Word16 mu, /* (i) Q15 : deemphasis factor */
92 fac = mu >> 1; /* Q15 --> Q14 */
preemph.c 30 Word16 mu, /* (i) Q15 : preemphasis coefficient */
43 L_tmp -= (x[i - 1] * mu)<<1;
48 L_tmp -= ((*mem) * mu)<<1;
59 Word16 mu, /* (i) Q15 : preemphasis coefficient */
72 L_tmp -= (x[i - 1] * mu)<<1;
78 L_tmp -= ((*mem) * mu)<<1;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
Tnaf.java 77 * @param mu The parameter <code>&mu;</code> of the elliptic curve.
82 public static BigInteger norm(final byte mu, ZTauElement lambda)
95 if (mu == 1)
99 else if (mu == -1)
105 throw new IllegalArgumentException("mu must be 1 or -1");
116 * @param mu The parameter <code>&mu;</code> of the elliptic curve.
123 public static SimpleBigDecimal norm(final byte mu, SimpleBigDecimal u,
137 if (mu == 1
    [all...]
WTauNafMultiplier.java 31 byte mu = curve.getMu();
34 ZTauElement rho = Tnaf.partModReduction(k, m, a, s, mu, (byte)10);
36 return multiplyWTnaf(p, rho, curve.getPreCompInfo(p), a, mu);
50 PreCompInfo preCompInfo, byte a, byte mu)
63 BigInteger tw = Tnaf.getTw(mu, Tnaf.WIDTH);
65 byte[]u = Tnaf.tauAdicWNaf(mu, lambda, Tnaf.WIDTH,
  /art/runtime/
barrier.cc 31 MutexLock mu(self, lock_);
40 MutexLock mu(self, lock_);
45 MutexLock mu(self, lock_);
61 MutexLock mu(self, lock_);
  /external/clang/test/Sema/
warn-thread-safety-analysis.c 35 void mutex_exclusive_lock(struct Mutex *mu) EXCLUSIVE_LOCK_FUNCTION(mu); variable
36 void mutex_shared_lock(struct Mutex *mu) SHARED_LOCK_FUNCTION(mu); variable
37 void mutex_unlock(struct Mutex *mu) UNLOCK_FUNCTION(mu); variable
38 void mutex_shared_unlock(struct Mutex *mu) __attribute__((release_shared_capability(mu)));
39 void mutex_exclusive_unlock(struct Mutex *mu) __attribute__((release_capability(mu)));
    [all...]
  /art/compiler/dex/quick/
dex_file_to_method_inliner_map.cc 43 ReaderMutexLock mu(self, lock_);
58 WriterMutexLock mu(self, lock_);
  /external/chromium_org/third_party/leveldatabase/src/port/
port_posix.cc 30 CondVar::CondVar(Mutex* mu)
31 : mu_(mu) {

Completed in 1208 milliseconds

1 2 3 4 5 6 7 8 9