/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_emulate_loops.h | 6 #define MAX_ITERATIONS 8
|
/external/mesa3d/src/glsl/ |
loop_unroll.cpp | 30 loop_unroll_visitor(loop_state *state, unsigned max_iterations) 34 this->max_iterations = max_iterations; 42 unsigned max_iterations; member in class:loop_unroll_visitor 100 iterations = ls->max_iterations; 110 if (iterations > (int) max_iterations) 117 if (count.fail || count.nodes * iterations > (int)max_iterations * 5) 246 unroll_loops(exec_list *instructions, loop_state *ls, unsigned max_iterations) 248 loop_unroll_visitor v(ls, max_iterations);
|
loop_controls.cpp | 188 int max_iterations = ls->max_iterations; local 191 max_iterations = calculate_iterations(ir->from, ir->to, ir->increment, (ir_expression_operation)ir->cmp); 193 if(max_iterations < 0) 194 max_iterations = INT_MAX; 251 if (iterations < max_iterations) { 258 max_iterations = iterations; 287 if (max_iterations == 0) 290 ls->max_iterations = max_iterations; [all...] |
loop_analysis.h | 60 unroll_loops(exec_list *instructions, loop_state *ls, unsigned max_iterations); 118 int max_iterations; member in class:loop_variable_state 132 this->max_iterations = -1;
|
/frameworks/base/libs/hwui/tests/microbench/ |
TaskManagerBench.cpp | 43 tasks.reserve(state.max_iterations); 56 tasks.reserve(state.max_iterations); 74 tasks.reserve(state.max_iterations);
|
/development/perftests/panorama/feature_stab/db_vlvm/ |
db_rob_image_homography.h | 81 \param max_iterations max number of polishing steps 112 int max_iterations=DB_DEFAULT_MAX_ITERATIONS, 138 int max_iterations=DB_DEFAULT_MAX_ITERATIONS, 144 int max_iterations=DB_DEFAULT_MAX_ITERATIONS,
|
db_rob_image_homography.cpp | 227 int max_iterations,double improvement_requirement) 234 for(update=1,stop=0,i=0;(stop<2) && (i<max_iterations);i++) 568 int max_iterations,double improvement_requirement) 577 for(update=1,stop=0,i=0;(stop<2) && (i<max_iterations);i++) 648 int max_iterations, [all...] |
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/ |
db_rob_image_homography.h | 81 \param max_iterations max number of polishing steps 112 int max_iterations=DB_DEFAULT_MAX_ITERATIONS, 138 int max_iterations=DB_DEFAULT_MAX_ITERATIONS, 144 int max_iterations=DB_DEFAULT_MAX_ITERATIONS,
|
db_rob_image_homography.cpp | 227 int max_iterations,double improvement_requirement) 234 for(update=1,stop=0,i=0;(stop<2) && (i<max_iterations);i++) 568 int max_iterations,double improvement_requirement) 577 for(update=1,stop=0,i=0;(stop<2) && (i<max_iterations);i++) 648 int max_iterations, [all...] |
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/NarrowPhaseCollision/ |
btGjkConvexCast.cpp | 25 #define MAX_ITERATIONS 64 27 #define MAX_ITERATIONS 32 58 int maxIter = MAX_ITERATIONS;
|
btSubSimplexConvexCast.cpp | 34 #define MAX_ITERATIONS 64 36 #define MAX_ITERATIONS 32 64 int maxIter = MAX_ITERATIONS; 136 //int numiter = MAX_ITERATIONS - maxIter;
|
btContinuousConvexCollision.cpp | 47 #define MAX_ITERATIONS 64 121 int maxIter = MAX_ITERATIONS;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
BigIntegers.java | 11 private static final int MAX_ITERATIONS = 1000; 93 for (int i = 0; i < MAX_ITERATIONS; ++i)
|
/external/opencv3/modules/flann/include/opencv2/flann/ |
simplex_downhill.h | 71 const int MAX_ITERATIONS = 10; 96 if (iterations++ > MAX_ITERATIONS) break;
|
/frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/ |
MemoryUsageTest.java | 57 private static final int MAX_ITERATIONS = 20; 215 while (iteration < MAX_ITERATIONS) {
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
LocationClustering.java | 36 private static final int MAX_ITERATIONS = 30; 241 for (int iter = 0; iter < MAX_ITERATIONS; iter++) {
|
/development/perftests/panorama/feature_stab/src/dbreg/ |
dbreg.cpp | 149 int max_iterations, 195 m_max_iterations = max_iterations;
|
dbreg.h | 139 * \param max_iterations max number of polishing steps 156 int max_iterations = DB_DEFAULT_MAX_ITERATIONS,
|
/external/autotest/frontend/tko/ |
rpc_interface.py | 169 max_iterations = max(all_iterations + [0]) 174 for index in xrange(1, max_iterations + 1)]
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/ |
TimeOfImpact.java | 43 public static final int MAX_ITERATIONS = 1000; 288 if (iter == MAX_ITERATIONS) {
|
/external/opencv3/modules/photo/src/ |
tonemap.cpp | 412 int max_iterations = 100; local 415 for(int i = 0; i < max_iterations; i++)
|
/packages/apps/LegacyCamera/jni/feature_stab/src/dbreg/ |
dbreg.cpp | 149 int max_iterations, 195 m_max_iterations = max_iterations;
|
/hardware/qcom/wlan/qcwcn/wifi_hal/ |
wifilogger_event_defs.h | 203 u32 max_iterations; member in struct:__anon34777
|
/external/google-benchmark/include/benchmark/ |
benchmark_api.h | 234 bool const res = total_iterations_++ < max_iterations; 239 total_iterations_ = max_iterations; 365 const size_t max_iterations; member in class:benchmark::State
|
/external/google-benchmark/src/ |
benchmark.cc | 604 CHECK(st.iterations() == st.max_iterations) << 746 max_iterations(max_iters) 748 CHECK(max_iterations != 0) << "At least one iteration must be run";
|