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

12

/frameworks/compile/mclinker/include/mcld/Support/
H A DAllocators.h30 Chunk() : next(NULL), bound(0) {}
44 size_t bound; member in class:mcld::Chunk
54 Chunk() : next(NULL), bound(0) {
80 size_t bound; member in class:mcld::Chunk
146 size_type rest_num_elem = chunk_type::size() - m_pCurrent->bound;
150 result = m_pCurrent->data + m_pCurrent->bound;
151 m_pCurrent->bound += N;
161 if (chunk_type::size() == m_pCurrent->bound)
163 result = m_pCurrent->data + m_pCurrent->bound;
164 ++m_pCurrent->bound;
[all...]
H A DGCFactory.h36 if ((m_Pos == m_pChunk->bound) && (0 == m_pChunk->next))
38 if (m_Pos == m_pChunk->bound) {
161 : iterator(Alloc::m_pCurrent, Alloc::m_pCurrent->bound);
167 : const_iterator(Alloc::m_pCurrent, Alloc::m_pCurrent->bound);
/frameworks/rs/java/tests/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/rs/java/tests/ImageProcessing2/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/rs/java/tests/ImageProcessing_jb/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/rs/java/tests/ScriptGroupTest/src/com/android/rs/sgtest/
H A Dfisheye_approx_f.rsh40 const float bound = sqrt(bound2);
41 const float radius = 1.15f * bound;
43 const float max_radian = M_PI_2 - atan(alpha / bound * sqrt(radius2 - bound2));
44 factor = bound / max_radian;
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DFisheyeFilter.java155 float bound = (float) Math.sqrt(bound2);
156 float radius = 1.15f * bound;
159 (float) Math.atan(alpha / bound * (float) Math.sqrt(radius2 - bound2));
160 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.java202 boolean bound = false;
204 bound = binder.setViewValue(v, data, text);
207 if (!bound) {
217 " should be bound to a Boolean, not a " +
349 * @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.h86 // True if there is a bound with val containing the bound. false otherwise.
93 void SetElementMinBound(const Key &fname, const double bound) { argument
94 wmin_[fname] = bound;
96 void SetElementMaxBound(const Key &fname, const double bound) { argument
97 wmax_[fname] = bound;
/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/rs/api/
H A Drs_graphics.spec359 operate on the texture bound at the matching slot.
375 of the texture will be controled by the Sampler bound at the
566 function uses the default passthough ProgramVertex. Any bound ProgramVertex
803 Get the projection matrix for a currently bound fixed function
815 summary: Load the model matrix for a bound fixed function vertex program
817 Load the model matrix for a currently bound fixed function
829 summary: Load the projection matrix for a bound fixed function vertex program
831 Load the projection matrix for a currently bound fixed function
843 summary: Load the texture matrix for a bound fixed function vertex program
845 Load the texture matrix for a currently bound fixe
[all...]
H A Drs_math.spec366 arg: #2#1 min_value, "Lower bound, a scalar or matching vector."
367 arg: #2#1 max_value, above(min_value), "High bound, must match the type of low."
370 Clamps a value to a specified high and low bound. clamp() returns min_value
2200 arg: #1 low, "Lower bound."
2201 arg: #1 high, "Upper 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/media/java/android/media/browse/
H A DMediaBrowser.java145 boolean bound = false;
147 bound = mContext.bindService(intent, mServiceConnection, Context.BIND_AUTO_CREATE);
152 if (!bound) {
/frameworks/base/services/core/java/com/android/server/tv/
H A DTvInputManagerService.java546 if (serviceState.bound) {
547 // We have already bound to the service so we don't try to bind again until after we
556 serviceState.bound = mContext.bindServiceAsUser(
1769 pw.println("bound: " + service.bound);
1888 private boolean bound; field in class:TvInputManagerService.ServiceState
2042 serviceState.bound = false;
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeech.java739 Log.w(TAG, method + " failed: not bound to TTS engine");
800 boolean bound = mContext.bindService(intent, connection, Context.BIND_AUTO_CREATE);
801 if (!bound) {
805 Log.i(TAG, "Sucessfully bound to " + engine);
/frameworks/base/core/java/com/android/internal/app/
H A DProcessStats.java2659 dumpServiceTimeCheckin(pw, "pkgsvc-bound", pkgName, uid, vers, serviceName,
3492 + " from " + mOwner + " while bound: pkg="
3523 + " cleared while bound: pkg=" + mPackage + " service="
3658 public void setBound(boolean bound, int memFactor, long now) { argument
3662 final int state = bound ? memFactor : STATE_NOTHING;
3667 } else if (bound) {
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java1063 * @return The currently bound LayoutManager
4557 boolean bound = false;
4563 throw new IllegalStateException("Removed holder should be bound and it should"
4570 bound = true;
4588 rvLayoutParams.mPendingInvalidate = fromScrap && bound;
5186 * @return A View that is bound to the given position or NULL if there is no View to re-use
5215 * @param parent The ViewGroup into which the new View will be added after it is bound to
5264 * the ViewHolder is currently bound to old data and Adapter may run an efficient partial
5384 * bound to it such as large bitmaps, this may be a good place to release those
5924 * @param view The RecyclerView this LayoutManager is bound t
[all...]

Completed in 616 milliseconds

12