Searched defs:bound (Results 1 - 7 of 7) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Drate_control.cpp537 Int diff_counter_BTsrc, diff_counter_BTdst, prev_counter_diff, curr_counter_diff, bound; local
620 /* First, set the upper bound for current bit allocation variance: 80% of available buffer */
621 bound = (Int)((rc->Bs / 2 - rc->VBV_fullness) * 0.6 / (pMP->target_bits_per_frame / 10)); /* rc->Bs */
622 diff_counter_BTsrc = PV_MIN(diff_counter_BTsrc, bound);
623 diff_counter_BTdst = PV_MIN(diff_counter_BTdst, bound);
625 /* Second, set another upper bound for current bit allocation: 4-5*bitrate/framerate */
626 bound = 50;
628 // not necessary bound = 10; /* 1/17/02 -- For Low delay */
630 diff_counter_BTsrc = PV_MIN(diff_counter_BTsrc, bound);
631 diff_counter_BTdst = PV_MIN(diff_counter_BTdst, bound);
[all...]
/frameworks/compile/mclinker/include/mcld/Support/
H A DAllocators.h31 : next(0), bound(0)
47 size_t bound; member in class:mcld::Chunk
59 : next(0), bound(0) {
86 size_t bound; member in class:mcld::Chunk
161 size_type rest_num_elem = chunk_type::size() - m_pCurrent->bound;
165 result = m_pCurrent->data + m_pCurrent->bound;
166 m_pCurrent->bound += N;
176 if (chunk_type::size() == m_pCurrent->bound)
178 result = m_pCurrent->data + m_pCurrent->bound;
179 ++m_pCurrent->bound;
[all...]
/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
H A Dsparse_weight_vector.h85 // True if there is a bound with val containing the bound. false otherwise.
92 void SetElementMinBound(const Key &fname, const double bound) { argument
93 wmin_[fname] = bound;
95 void SetElementMaxBound(const Key &fname, const double bound) { argument
96 wmax_[fname] = bound;
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Drate_control.cpp492 // lower bound on Qc should be a function of curr_mad
493 // When mad is already low, lower bound on Qc doesn't have to be small.
495 // it doesn't hit the target bit rate due to this QP lower bound.
524 int diff_counter_BTsrc, diff_counter_BTdst, prev_counter_diff, curr_counter_diff, bound; local
602 /* First, set the upper bound for current bit allocation variance: 80% of available buffer */
603 bound = (int)((rateCtrl->Bs / 2 - rateCtrl->VBV_fullness) * 0.6 / (pMP->target_bits_per_frame / 10)); /* rateCtrl->Bs */
604 diff_counter_BTsrc = AVC_MIN(diff_counter_BTsrc, bound);
605 diff_counter_BTdst = AVC_MIN(diff_counter_BTdst, bound);
607 /* Second, set another upper bound for current bit allocation: 4-5*bitrate/framerate */
608 bound
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationManagerCompat.java434 if (record.bound) {
438 record.bound = mContext.bindService(intent, this, SIDE_CHANNEL_BIND_FLAGS);
439 if (record.bound) {
445 return record.bound;
452 if (record.bound) {
454 record.bound = false;
531 /** Whether the service is currently bound to. */
532 public boolean bound = false; field in class:NotificationManagerCompat.SideChannelManager.ListenerRecord
/frameworks/base/services/core/java/com/android/server/tv/
H A DTvInputManagerService.java515 if (serviceState.bound) {
516 // We have already bound to the service so we don't try to bind again until after we
525 serviceState.bound = mContext.bindServiceAsUser(
1568 pw.println("bound: " + service.bound);
1691 private boolean bound; field in class:TvInputManagerService.ServiceState
1845 serviceState.bound = false;
/frameworks/base/core/java/com/android/internal/app/
H A DProcessStats.java2692 dumpServiceTimeCheckin(pw, "pkgsvc-bound", pkgName, uid, vers, serviceName,
3525 + " from " + mOwner + " while bound: pkg="
3556 + " cleared while bound: pkg=" + mPackage + " service="
3691 public void setBound(boolean bound, int memFactor, long now) { argument
3695 final int state = bound ? memFactor : STATE_NOTHING;
3700 } else if (bound) {

Completed in 197 milliseconds