Searched refs:bound (Results 1 - 16 of 16) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Support/
H A DAllocators.h36 : next(0), bound(0)
43 size_t bound; member in struct:mcld::Chunk
55 : next(0), bound(0) {
72 size_t bound; member in struct:mcld::Chunk
147 size_type rest_num_elem = chunk_type::size() - m_pCurrent->bound;
151 result = const_cast<pointer>(&(m_pCurrent->data[m_pCurrent->bound]));
152 m_pCurrent->bound += N;
162 if (chunk_type::size() == m_pCurrent->bound)
164 result = const_cast<pointer>(&(m_pCurrent->data[m_pCurrent->bound]));
165 ++m_pCurrent->bound;
[all...]
H A DGCFactory.h42 if ((m_Pos == m_pChunk->bound) && (0 == m_pChunk->next))
44 if (m_Pos == m_pChunk->bound) {
183 iterator(Alloc::m_pCurrent, Alloc::m_pCurrent->bound);
189 const_iterator(Alloc::m_pCurrent, Alloc::m_pCurrent->bound);
/frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
H A Dfisheye.rsh38 const float bound = sqrt(bound2);
39 const float radius = 1.15f * bound;
41 const float max_radian = M_PI_2 - atan(alpha / bound * sqrt(radius2 - bound2));
42 factor = bound / max_radian;
H A Dfisheye_approx.rsh38 const float bound = sqrt(bound2);
39 const float radius = 1.15f * bound;
41 const float max_radian = M_PI_2 - atan(alpha / bound * sqrt(radius2 - bound2));
42 factor = bound / max_radian;
/frameworks/base/tests/RenderScriptTests/ImageProcessing2/src/com/android/rs/image/
H A Dfisheye.rsh38 const float bound = sqrt(bound2);
39 const float radius = 1.15 * bound;
41 const float max_radian = M_PI_2 - atan(alpha / bound * sqrt(radius2 - bound2));
42 factor = bound / max_radian;
H A Dfisheye_approx.rsh38 const float bound = sqrt(bound2);
39 const float radius = 1.15 * bound;
41 const float max_radian = M_PI_2 - atan(alpha / bound * sqrt(radius2 - bound2));
42 factor = bound / max_radian;
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DFisheyeFilter.java161 float bound = (float) Math.sqrt(bound2);
162 float radius = 1.15f * bound;
165 (float) Math.atan(alpha / bound * (float) Math.sqrt(radius2 - bound2));
166 float factor = bound / max_radian;
/frameworks/base/core/java/android/widget/
H A DSimpleCursorAdapter.java56 * A list of View ids representing the views to which the data must be bound.
144 boolean bound = false;
146 bound = binder.setViewValue(v, cursor, from[i]);
149 if (!bound) {
395 * @return true if the data was bound to the view, false otherwise
H A DSimpleCursorTreeAdapter.java218 boolean bound = false;
220 bound = binder.setViewValue(v, cursor, from[i]);
223 if (!bound) {
322 * @return true if the data was bound to the view, false otherwise
H A DSimpleAdapter.java166 boolean bound = false;
168 bound = binder.setViewValue(v, data, text);
171 if (!bound) {
181 " should be bound to a Boolean, not a " +
313 * @return true if the data was bound to the view, false otherwise
/frameworks/support/v4/java/android/support/v4/widget/
H A DSimpleCursorAdapter.java41 * A list of View ids representing the views to which the data must be bound.
129 boolean bound = false;
131 bound = binder.setViewValue(v, cursor, from[i]);
134 if (!bound) {
375 * @return true if the data was bound to the view, false otherwise
/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/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/base/core/java/com/android/internal/app/
H A DMediaRouteChooserDialogFragment.java293 int bound = 0;
298 bound = i;
306 mListView.smoothScrollToPosition(pos, bound);
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeech.java567 Log.w(TAG, method + " failed: not bound to TTS engine");
627 boolean bound = mContext.bindService(intent, connection, Context.BIND_AUTO_CREATE);
628 if (!bound) {
632 Log.i(TAG, "Sucessfully bound to " + engine);

Completed in 233 milliseconds