HomeSort by relevance Sort by last modified time
    Searched refs:mu (Results 76 - 100 of 192) sorted by null

1 2 34 5 6 7 8

  /external/chromium/base/third_party/dynamic_annotations/
dynamic_annotations.c 104 const char *file, int line, const volatile void *mu){}
106 const char *file, int line, const volatile void *mu){}
  /art/runtime/
signal_catcher.cc 73 MutexLock mu(self, lock_);
88 MutexLock mu(Thread::Current(), lock_);
93 MutexLock mu(Thread::Current(), lock_);
194 MutexLock mu(self, signal_catcher->lock_);
monitor.cc 288 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
451 MutexLock mu(self, *self->wait_mutex_);
488 MutexLock mu(self, *self->wait_mutex_);
519 MutexLock mu(self, *self->wait_mutex_);
548 MutexLock mu(self, *thread->wait_mutex_);
847 MutexLock mu(self, *thread->wait_mutex_);
884 MutexLock mu(Thread::Current(), *thread->wait_mutex_);
    [all...]
  /external/chromium_org/third_party/cld/base/
dynamic_annotations.h 101 // Instruct the tool to create a happens-before arc between mu->Unlock() and
102 // mu->Lock(). This annotation may slow down the race detector; normally it
105 #define ANNOTATE_MUTEX_IS_USED_AS_CONDVAR(mu) \
106 AnnotateMutexIsUsedAsCondVar(__FILE__, __LINE__, mu)
255 #define ANNOTATE_MUTEX_IS_USED_AS_CONDVAR(mu) // empty
305 const volatile void *mu);
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
low_level_alloc.cc 184 Arena() : mu(SpinLock::LINKER_INITIALIZED) {} // does nothing; for static init
188 SpinLock mu; // protects freelist, allocation_count, member in struct:LowLevelAlloc::Arena
190 AllocList freelist; // head of free list; sorted by addr (under mu)
191 int32 allocation_count; // count of allocated blocks (under mu)
193 size_t pagesize; // ==getpagesize() (init under mu, then ro)
195 // (init under mu, then ro)
197 // (init under mu, then ro)
218 EXCLUSIVE_LOCK_FUNCTION(arena->mu)
233 this->arena_->mu.Lock();
237 this->arena_->mu.Unlock()
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
low_level_alloc.cc 184 Arena() : mu(SpinLock::LINKER_INITIALIZED) {} // does nothing; for static init
188 SpinLock mu; // protects freelist, allocation_count, member in struct:LowLevelAlloc::Arena
190 AllocList freelist; // head of free list; sorted by addr (under mu)
191 int32 allocation_count; // count of allocated blocks (under mu)
193 size_t pagesize; // ==getpagesize() (init under mu, then ro)
195 // (init under mu, then ro)
197 // (init under mu, then ro)
218 EXCLUSIVE_LOCK_FUNCTION(arena->mu)
233 this->arena_->mu.Lock();
237 this->arena_->mu.Unlock()
    [all...]
  /art/runtime/base/
timing_logger.cc 53 MutexLock mu(Thread::Current(), lock_);
58 MutexLock mu(Thread::Current(), lock_);
68 MutexLock mu(Thread::Current(), lock_);
78 MutexLock mu(Thread::Current(), lock_);
90 MutexLock mu(Thread::Current(), lock_);
mutex.cc 125 ScopedAllMutexesLock mu(this);
138 ScopedAllMutexesLock mu(this);
146 ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1));
316 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
331 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
508 std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
509 mu.Dump(os);
537 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
751 std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
752 mu.Dump(os)
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
acelp.h 212 Word16 mu, /* (i) Q15 : preemphasis coefficient */
218 Word16 mu, /* (i) Q15 : preemphasis coefficient */
224 Word16 mu, /* (i) Q15 : deemphasis factor */
230 Word16 mu, /* (i) Q15 : deemphasis factor */
238 Word16 mu, /* (i) Q15 : deemphasis factor */
  /art/runtime/gc/space/
dlmalloc_space.cc 254 MutexLock mu(self, lock_);
350 MutexLock mu(self, lock_);
381 MutexLock mu(self, lock_);
402 MutexLock mu(self, lock_);
457 MutexLock mu(Thread::Current(), lock_);
468 MutexLock mu(Thread::Current(), lock_);
474 MutexLock mu(Thread::Current(), lock_);
479 MutexLock mu(Thread::Current(), lock_);
484 MutexLock mu(Thread::Current(), lock_);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
random.py 380 def normalvariate(self, mu, sigma):
383 mu is the mean, and sigma is the standard deviation.
386 # mu = mean, sigma = standard deviation
401 return mu + z*sigma
405 def lognormvariate(self, mu, sigma):
409 normal distribution with mean mu and standard deviation sigma.
410 mu can have any value, and sigma must be greater than zero.
413 return _exp(self.normalvariate(mu, sigma))
436 def vonmisesvariate(self, mu, kappa):
439 mu is the mean angle, expressed in radians between 0 and 2*pi, an
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
random.py 380 def normalvariate(self, mu, sigma):
383 mu is the mean, and sigma is the standard deviation.
386 # mu = mean, sigma = standard deviation
401 return mu + z*sigma
405 def lognormvariate(self, mu, sigma):
409 normal distribution with mean mu and standard deviation sigma.
410 mu can have any value, and sigma must be greater than zero.
413 return _exp(self.normalvariate(mu, sigma))
436 def vonmisesvariate(self, mu, kappa):
439 mu is the mean angle, expressed in radians between 0 and 2*pi, an
    [all...]
  /art/runtime/jdwp/
jdwp_main.cc 128 MutexLock mu(Thread::Current(), socket_lock_);
136 MutexLock mu(Thread::Current(), socket_lock_);
327 MutexLock mu(Thread::Current(), event_list_lock_);
461 MutexLock mu(thread_, attach_lock_);
475 MutexLock mu(thread_, *Locks::thread_suspend_count_lock_);
499 MutexLock mu(thread_, attach_lock_);
  /external/valgrind/main/drd/tests/
tsan_unittest.cpp 365 // 3. MU.Lock() a. write(GLOB)
366 // b. MU.Lock()
369 // 4. while(COND) / e. MU.Unlock()
370 // CV.Wait(MU) <---/
371 // 5. MU.Unlock()
373 Mutex MU;
379 MU.Lock();
382 MU.Unlock();
390 MU.Lock();
392 CV.Wait(&MU);
4166 Mutex mu; member in namespace:test86
4239 Mutex mu; member in namespace:test87
4820 Mutex mu; member in namespace:test99
5321 Mutex mu; member in namespace:test111
5378 Mutex mu; member in namespace:test112
5501 Mutex mu; member in namespace:test115
5715 static Mutex mu; member in namespace:test121
5756 RWLock mu; member in namespace:test122
5975 RWLock mu; member in namespace:test125
6047 Mutex mu; member in namespace:test127
6067 Mutex mu; member in namespace:test128
6252 Mutex mu; member in namespace:test134
6328 pthread_mutex_t mu; local
6438 Mutex mu; member in namespace:test140
7170 static Mutex mu; member in namespace:test400
7502 Mutex mu[N_MUTEXES]; local
7663 Mutex * mu = new Mutex(); local
7668 Mutex * mu = mu_list[i]; local
    [all...]
  /external/chromium_org/base/third_party/dynamic_annotations/
dynamic_annotations.c 175 const char *file, int line, const volatile void *mu)
179 const char *file, int line, const volatile void *mu)
  /external/opencv/cv/src/
cvmoments.cpp 605 // mu(x_o,y_o) = sum ((x - xc)^ x_o)*((y - yc) ^ y_o)*I(x,y)
621 double mu = 0; local
634 mu = (&(moments->m00))[4 + order * 3 + y_order];
637 mu = moments->m00;
641 return mu;
648 // nu(x_o,y_o) = mu(x_o, y_o)/(m00 ^ (((x_o + y_o)/2) + 1))
664 double mu = 0; local
671 mu = cvGetCentralMoment( moments, x_order, y_order );
679 mu *= m00;
683 return mu;
    [all...]
cvthresh.cpp 207 double sum = 0, mu = 0; local
245 mu += (i*delta + low)*h[i];
247 mu += (nu_thresh[i*2] + nu_thresh[i*2+1])*0.5*h[i];
251 mu *= sum;
274 mu2 = (mu - q1*mu1)/q2;
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pvamrwbdecoder_acelp.h 196 int16 mu, /* (i) Q15 : preemphasis coefficient */
204 int16 mu, /* (i) Q15 : deemphasis factor */
  /libcore/luni/src/test/java/libcore/java/util/regex/
OldMatcherTest.java 130 Matcher mu = mat.useAnchoringBounds(true); local
132 mu.hasAnchoringBounds());
134 mu = mat.useAnchoringBounds(false);
136 mu.hasAnchoringBounds());
148 Matcher mu = mat.useTransparentBounds(true); local
150 mu.hasTransparentBounds());
152 mu = mat.useTransparentBounds(false);
154 mu.hasTransparentBounds());
  /external/valgrind/unittest/
racecheck_unittest.cc 125 // 3. MU.Lock() a. write(GLOB)
126 // b. MU.Lock()
129 // 4. while(COND) / e. MU.Unlock()
130 // CV.Wait(MU) <---/
131 // 5. MU.Unlock()
133 Mutex MU;
139 MU.Lock();
142 MU.Unlock();
150 MU.Lock();
152 CV.Wait(&MU);
3971 Mutex mu; member in namespace:NegativeTests_BenignRaceInDtor
4626 Mutex mu; member in namespace:test99
4998 Mutex mu; member in namespace:test111
5048 Mutex mu; member in namespace:test112
5327 static Mutex mu; member in namespace:DoubleCheckedLocking
5378 Mutex mu; member in namespace:DoubleCheckedLocking2
5573 Mutex mu; member in namespace:test127
5593 Mutex mu; member in namespace:test128
5785 Mutex mu; member in namespace:test134
6123 Mutex mu; member in namespace:test148
6883 static Mutex mu; member in namespace:test400
7170 Mutex mu[N_MUTEXES]; local
7332 Mutex * mu = new Mutex(); local
7337 Mutex * mu = mu_list[i]; local
7406 Mutex mu[N_MUTEXES]; member in namespace:test512
7566 Mutex mu; member in namespace:MutexNotPhbTests
    [all...]
demo_tests.cc 116 Mutex MU;
118 void Worker2() { MU.Lock(); GLOB=1; MU.Unlock();}
134 Mutex MU;
139 MU.Lock(); CHECK(STR->length() >= 4); MU.Unlock();
149 MU.Lock(); CHECK(STR->length() >= 4); MU.Unlock();
154 MU.Lock(); *STR += " + a very very long string"; MU.Unlock()
568 Mutex mu; member in namespace:test315
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECCurve.java 245 * The parameter <code>&mu;</code> of the elliptic curve if this is
248 private byte mu = 0; field in class:ECCurve.F2m
442 * Returns the parameter <code>&mu;</code> of the elliptic curve.
443 * @return <code>&mu;</code> of the elliptic curve.
449 if (mu == 0)
451 mu = Tnaf.getMu(this);
453 return mu;
  /external/chromium_org/third_party/leveldatabase/port/
port_chromium.h 54 explicit CondVar(Mutex* mu);
  /external/opencv/cvaux/src/
cvhmm.cpp 165 pointers = (float*)cvAlloc( total_mix * (2/*for mu invvar */ * obs_size +
171 all_states[i].mu = pointers; pointers += num_mix[i] * obs_size;
215 cvFree( &(hmm->u.ehmm->u.state->mu) );
509 // mu - pointer to the mean vector of the Gaussian pdf
517 /*static float icvComputeUniModeGauss(CvVect32f vect, CvVect32f mu,
528 tmp = (vect[n] - mu[n]) * inv_var[n];
541 // mu - two-dimensional pointer to the mean vector of the Gaussian pdf;
557 icvComputeGaussMixture( CvVect32f vect, float* mu,
567 return icvComputeUniModeGauss( vect, mu, inv_var, log_var_val[0], vect_size);
576 l_prob = icvComputeUniModeGauss(vect, mu + m*vect_size,
781 float* mu = state[l].mu + m*vect_size; local
1457 CvVect32f mu = state->mu + m * vect_len; local
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
example-bind.cpp 274 // mu
278 mu(Bound& bound_arg, const tuple<Args&...>& args) { function
283 inline T& mu(reference_wrapper<T>& bound_arg, const tuple<Args&...>&) { function
296 mu(Bound& bound_arg, const tuple<Args&...>& args) { function
316 mu(Bound& bound_arg, const tuple<Args&...>&) { function
324 return f(mu(get<Indexes>(bound_args), args)...);

Completed in 966 milliseconds

1 2 34 5 6 7 8