Home
last modified time | relevance | path

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

12

/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/tests/java_api/ImageProcessing2/src/com/android/rs/image/
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;
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;
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
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;
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;
/frameworks/rs/tests/java_api/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/rs/tests/java_api/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/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/core-ui/java/android/support/v4/widget/
DSimpleCursorAdapter.java133 boolean bound = false; in bindView()
135 bound = binder.setViewValue(v, cursor, from[i]); in bindView()
138 if (!bound) { in bindView()
/frameworks/base/core/proto/android/service/
Dappwidget.proto26 repeated WidgetProto widgets = 1; // the array of bound widgets
29 // represents a bound widget
Dgraphicsstats.proto74 // Lower bound of render time in milliseconds.
/frameworks/support/compat/java/android/support/v4/app/
DNotificationManagerCompat.java458 if (record.bound) { in ensureServiceBound()
462 record.bound = mContext.bindService(intent, this, Service.BIND_AUTO_CREATE in ensureServiceBound()
464 if (record.bound) { in ensureServiceBound()
470 return record.bound; in ensureServiceBound()
477 if (record.bound) { in ensureServiceUnbound()
479 record.bound = false; in ensureServiceUnbound()
557 public boolean bound = false; field in NotificationManagerCompat.SideChannelManager.ListenerRecord
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
DCameraTestUtils.java1026 CameraManager cameraManager, Size bound) throws CameraAccessException { in getSupportedPreviewSizes() argument
1036 if (bound == null) { in getSupportedPreviewSizes()
1042 if (sz.getWidth() <= bound.getWidth() && sz.getHeight() <= bound.getHeight()) { in getSupportedPreviewSizes()
1082 CameraManager cameraManager, int format, Size bound) throws CameraAccessException { in getSortedSizesForFormat() argument
1086 if (bound != null) { in getSortedSizesForFormat()
1089 if (comparator.compare(sz, bound) <= 0) { in getSortedSizesForFormat()
1114 CameraManager cameraManager, Size bound) throws CameraAccessException { in getSupportedVideoSizes() argument
1124 if (bound == null) { in getSupportedVideoSizes()
1130 if (sz.getWidth() <= bound.getWidth() && sz.getHeight() <= bound.getHeight()) { in getSupportedVideoSizes()
1146 CameraManager cameraManager, Size bound) throws CameraAccessException { in getSupportedStillSizes() argument
[all …]
/frameworks/rs/script_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
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 fixed function
/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/core/java/com/android/internal/app/procstats/
DServiceState.java315 public void setBound(boolean bound, int memFactor, long now) { in setBound() argument
319 final int state = bound ? memFactor : STATE_NOTHING; in setBound()
324 } else if (bound) { in setBound()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DEventLogTags.logtags59 ## 2: USER_SYSTEM_BOUND Secondary user is bound to the system sysui service
/frameworks/rs/script_api/include/
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

12