Home
last modified time | relevance | path

Searched refs:bound (Results 1 – 25 of 83) sorted by relevance

1234

/frameworks/compile/mclinker/include/mcld/Support/
DAllocators.h30 Chunk() : next(NULL), bound(0) {} in Chunk()
44 size_t bound; variable
54 Chunk() : next(NULL), bound(0) { in Chunk()
80 size_t bound; variable
146 size_type rest_num_elem = chunk_type::size() - m_pCurrent->bound; in allocate()
150 result = m_pCurrent->data + m_pCurrent->bound; in allocate()
151 m_pCurrent->bound += N; in allocate()
161 if (chunk_type::size() == m_pCurrent->bound) in allocate()
163 result = m_pCurrent->data + m_pCurrent->bound; in allocate()
164 ++m_pCurrent->bound; in allocate()
[all …]
DGCFactory.h36 if ((m_Pos == m_pChunk->bound) && (0 == m_pChunk->next)) in advance()
38 if (m_Pos == m_pChunk->bound) { in advance()
161 : iterator(Alloc::m_pCurrent, Alloc::m_pCurrent->bound); in end()
167 : const_iterator(Alloc::m_pCurrent, Alloc::m_pCurrent->bound); in end()
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
DFisheyeFilter.java155 float bound = (float) Math.sqrt(bound2); in updateProgramParams() local
156 float radius = 1.15f * bound; in updateProgramParams()
159 (float) Math.atan(alpha / bound * (float) Math.sqrt(radius2 - bound2)); in updateProgramParams()
160 float factor = bound / max_radian; in updateProgramParams()
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
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;
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/
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;
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/
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;
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/
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/ml/bordeaux/learning/stochastic_linear_ranker/native/
Dsparse_weight_vector.h93 void SetElementMinBound(const Key &fname, const double bound) { in SetElementMinBound() argument
94 wmin_[fname] = bound; in SetElementMinBound()
96 void SetElementMaxBound(const Key &fname, const double bound) { in SetElementMaxBound() argument
97 wmax_[fname] = bound; in SetElementMaxBound()
/frameworks/base/core/java/android/widget/
DSimpleCursorAdapter.java144 boolean bound = false; in bindView()
146 bound = binder.setViewValue(v, cursor, from[i]); in bindView()
149 if (!bound) { in bindView()
DSimpleCursorTreeAdapter.java218 boolean bound = false; in bindView()
220 bound = binder.setViewValue(v, cursor, from[i]); in bindView()
223 if (!bound) { in bindView()
DSimpleAdapter.java202 boolean bound = false; in bindView()
204 bound = binder.setViewValue(v, data, text); in bindView()
207 if (!bound) { in bindView()
/frameworks/support/v4/java/android/support/v4/widget/
DSimpleCursorAdapter.java129 boolean bound = false; in bindView()
131 bound = binder.setViewValue(v, cursor, from[i]); in bindView()
134 if (!bound) { in bindView()
/frameworks/support/v4/java/android/support/v4/app/
DNotificationManagerCompat.java434 if (record.bound) { in ensureServiceBound()
438 record.bound = mContext.bindService(intent, this, SIDE_CHANNEL_BIND_FLAGS); in ensureServiceBound()
439 if (record.bound) { in ensureServiceBound()
445 return record.bound; in ensureServiceBound()
452 if (record.bound) { in ensureServiceUnbound()
454 record.bound = false; in ensureServiceUnbound()
532 public boolean bound = false; field in NotificationManagerCompat.SideChannelManager.ListenerRecord
/frameworks/rs/api/
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 fixed function
/frameworks/base/docs/html/training/sync-adapters/
Dcreating-authenticator.jd29 <a href="{@docRoot}guide/components/bound-services.html">Bound Services</a>
53 implementations. You also need to provide a bound {@link android.app.Service} that
139 In order for the sync adapter framework to access your authenticator, you must create a bound
150 The following snippet shows you how to define the bound {@link android.app.Service}:
154 * A bound Service that instantiates the authenticator
250 In a previous step, you created a bound {@link android.app.Service} that links the authenticator
274 the bound {@link android.app.Service} you have provided to wrap the authenticator.
/frameworks/base/docs/html/guide/components/
Dservices.jd46 <li><a href="{@docRoot}guide/components/bound-services.html">Bound Services</a></li>
71 <dd>A service is "bound" when an application component binds to it by calling {@link
72 android.content.Context#bindService bindService()}. A bound service offers a client-server
74 do so across processes with interprocess communication (IPC). A bound service runs only as long as
75 another application component is bound to it. Multiple components can bind to the service at once,
85 <p>Regardless of whether your application is started, bound, or both, any application component
164 only as long as the component is bound to it. Once the service is unbound from all clients, the
168 resources for the activity that has user focus. If the service is bound to an activity that has user
580 <p>A bound service is one that allows application components to bind to it by calling {@link
585 <p>You should create a bound service when you want to interact with the service from activities
[all …]
Dbound-services.jd44 <p>A bound service is the server in a client-server interface. A bound service allows components
46 interprocess communication (IPC). A bound service typically lives only while it serves another
49 <p>This document shows you how to create a bound service, including how to bind
58 <p>A bound service is an implementation of the {@link android.app.Service} class that allows
69 document, you can create a service that is both started and bound. That is, the service can be
73 <p>If you do allow your service to be started and bound, then when the service has been
109 <p>When you implement your bound service, the most important part is defining the interface
164 create a bound service, because it may require multithreading capabilities and
198 make calls to the bound service using the methods provided.</li>
293 // We've bound to LocalService, cast the IBinder and get LocalService instance
[all …]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
Drate_control.cpp524 int diff_counter_BTsrc, diff_counter_BTdst, prev_counter_diff, curr_counter_diff, bound; in targetBitCalculation() local
603bound = (int)((rateCtrl->Bs / 2 - rateCtrl->VBV_fullness) * 0.6 / (pMP->target_bits_per_frame / 10… in targetBitCalculation()
604 diff_counter_BTsrc = AVC_MIN(diff_counter_BTsrc, bound); in targetBitCalculation()
605 diff_counter_BTdst = AVC_MIN(diff_counter_BTdst, bound); in targetBitCalculation()
608 bound = 50; in targetBitCalculation()
612 diff_counter_BTsrc = AVC_MIN(diff_counter_BTsrc, bound); in targetBitCalculation()
613 diff_counter_BTdst = AVC_MIN(diff_counter_BTdst, bound); in targetBitCalculation()
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
Drate_control.cpp537 Int diff_counter_BTsrc, diff_counter_BTdst, prev_counter_diff, curr_counter_diff, bound; in targetBitCalculation() local
621bound = (Int)((rc->Bs / 2 - rc->VBV_fullness) * 0.6 / (pMP->target_bits_per_frame / 10)); /* rc->B… in targetBitCalculation()
622 diff_counter_BTsrc = PV_MIN(diff_counter_BTsrc, bound); in targetBitCalculation()
623 diff_counter_BTdst = PV_MIN(diff_counter_BTdst, bound); in targetBitCalculation()
626 bound = 50; in targetBitCalculation()
630 diff_counter_BTsrc = PV_MIN(diff_counter_BTsrc, bound); in targetBitCalculation()
631 diff_counter_BTdst = PV_MIN(diff_counter_BTdst, bound); in targetBitCalculation()
/frameworks/native/opengl/specs/
DEGL_ANDROID_native_fence_sync.txt118 command into the command stream of the bound client API's current context
167 no context is current for the bound API (i.e., eglGetCurrentContext
171 <dpy> does not match the EGLDisplay of the currently bound context for
172 the currently bound client API (the EGLDisplay returned by
176 the currently bound client API does not support the client API
/frameworks/base/media/java/android/media/browse/
DMediaBrowser.java145 boolean bound = false; in connect()
147 bound = mContext.bindService(intent, mServiceConnection, Context.BIND_AUTO_CREATE); in connect()
152 if (!bound) { in connect()
/frameworks/rs/scriptc/
Drs_graphics.rsh624 * operate on the texture bound at the matching slot.
644 * of the texture will be controled by the Sampler bound at the
867 * function uses the default passthough ProgramVertex. Any bound ProgramVertex
1204 * Get the projection matrix for a currently bound fixed function
1223 * rsgProgramVertexLoadModelMatrix: Load the model matrix for a bound fixed function vertex program
1227 * Load the model matrix for a currently bound fixed function
1246 …* rsgProgramVertexLoadProjectionMatrix: Load the projection matrix for a bound fixed function vert…
1250 * Load the projection matrix for a currently bound fixed function
1269 …* rsgProgramVertexLoadTextureMatrix: Load the texture matrix for a bound fixed function vertex pro…
1273 * Load the texture matrix for a currently bound fixed function

1234