Searched refs:bound (Results 1 - 25 of 32) 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/tests/java_api/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/tests/java_api/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/tests/java_api/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/tests/java_api/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.java159 float bound = (float) Math.sqrt(bound2);
160 float radius = 1.15f * bound;
163 (float) Math.atan(alpha / bound * (float) Math.sqrt(radius2 - bound2));
164 float factor = bound / max_radian;
/frameworks/support/media/version-compat-tests/current/client/src/androidTest/java/androidx/media/test/client/
H A DTestHelper.java67 boolean bound = false;
69 bound = mContext.bindService(intent, mServiceConnection, Context.BIND_AUTO_CREATE);
74 if (bound) {
/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/cursoradapter/src/main/java/androidx/cursoradapter/widget/
H A DSimpleCursorAdapter.java46 * A list of View ids representing the views to which the data must be bound.
134 boolean bound = false;
136 bound = binder.setViewValue(v, cursor, from[i]);
139 if (!bound) {
385 * @return true if the data was bound to the view, false otherwise
/frameworks/support/compat/src/main/java/androidx/core/app/
H A DNotificationManagerCompat.java462 if (record.bound) {
466 record.bound = mContext.bindService(intent, this, Service.BIND_AUTO_CREATE
468 if (record.bound) {
474 return record.bound;
481 if (record.bound) {
483 record.bound = false;
560 /** Whether the service is currently bound to. */
561 boolean bound = false; field in class:NotificationManagerCompat.SideChannelManager.ListenerRecord
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
H A DCameraTestUtils.java1023 * the bound. If the bound is null, don't do the size bound filtering.
1026 CameraManager cameraManager, Size bound) throws CameraAccessException {
1036 if (bound == null) {
1042 if (sz.getWidth() <= bound.getWidth() && sz.getHeight() <= bound.getHeight()) {
1079 * the bound. If the bound is null, don't do the size bound filterin
1025 getSupportedPreviewSizes(String cameraId, CameraManager cameraManager, Size bound) argument
1081 getSortedSizesForFormat(String cameraId, CameraManager cameraManager, int format, Size bound) argument
1113 getSupportedVideoSizes(String cameraId, CameraManager cameraManager, Size bound) argument
1145 getSupportedStillSizes(String cameraId, CameraManager cameraManager, Size bound) argument
1168 getMaxPreviewSize(String cameraId, CameraManager cameraManager, Size bound) argument
2141 getPreviewSizeBound(WindowManager windowManager, Size bound) argument
[all...]
/frameworks/rs/script_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
802 Get the projection matrix for a currently bound fixed function
814 summary: Load the model matrix for a bound fixed function vertex program
816 Load the model matrix for a currently bound fixed function
828 summary: Load the projection matrix for a bound fixed function vertex program
830 Load the projection matrix for a currently bound fixed function
842 summary: Load the texture matrix for a bound fixed function vertex program
844 Load the texture matrix for a currently bound fixe
[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/packages/SystemUI/src/com/android/systemui/
H A DOverviewProxyService.java302 boolean bound = false;
304 bound = mContext.bindServiceAsUser(launcherServiceIntent,
310 if (bound) {
311 // Ensure that connection has been established even if it thinks it is bound
/frameworks/base/core/java/com/android/internal/app/procstats/
H A DServiceState.java146 + " from " + mOwner + " while bound: pkg="
177 + " cleared while bound: pkg=" + mPackage + " service="
315 public void setBound(boolean bound, int memFactor, long now) { argument
319 final int state = bound ? memFactor : STATE_NOTHING;
324 } else if (bound) {
450 dumpTimeCheckin(pw, "pkgsvc-bound", pkgName, uid, vers, serviceName,
/frameworks/base/media/java/android/media/browse/
H A DMediaBrowser.java185 boolean bound = false;
187 bound = mContext.bindService(intent, mServiceConnection,
193 if (!bound) {
/frameworks/base/services/backup/java/com/android/server/backup/transport/
H A DTransportClient.java157 * <p>Note that being bound is not the same as connected. To be connected you also need to be
158 * bound. You go from nothing to bound, then to bound and connected. To have a usable transport
161 * or bound but not connected, not bound at all or even unusable.
165 * called again if we're already bound. For example, if one was already requested but the
166 * framework has not yet returned (meaning we're bound but still trying to connect) it won't
221 log(Priority.DEBUG, caller, "Async connect: service bound, connecting");
279 mState < State.BOUND_AND_CONNECTING, "Can't mark as disposed if still bound");
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DRecents.java851 boolean bound = mContext.bindServiceAsUser(systemUserServiceIntent,
856 if (!bound) {
/frameworks/support/media/src/main/java/android/support/v4/media/
H A DMediaBrowserCompat.java1058 boolean bound = false;
1060 bound = mContext.bindService(intent, mServiceConnection,
1066 if (!bound) {

Completed in 1355 milliseconds

12