/external/llvm/test/CodeGen/AMDGPU/ |
loop-address.ll | 8 define void @loop_ge(i32 addrspace(1)* nocapture %out, i32 %iterations) #0 { 10 %cmp5 = icmp sgt i32 %iterations, 0 14 %i.07.in = phi i32 [ %i.07, %for.body ], [ %iterations, %entry ] 20 %exitcond = icmp eq i32 %add, %iterations
|
/external/netperf/src/ |
netcpu.h | 14 extern float calibrate_idle_rate(int iterations, int interval);
|
/packages/apps/Gallery2/jni/filters/ |
kmeans.cc | 52 int iterations = 20; local 59 stride, iterations, s); 63 iterations = 8; 68 dimension, stride, iterations, finalCentroids);
|
/system/extras/ext4_utils/ |
test_ext4fixup | 3 typeset -i I ITERATIONS PHASE LOC COUNT MAXCOUNT 9 echo "$ME: Usage: $ME <iterations> <maxcount> <filesystem_image>" >&2 13 ITERATIONS="$1" 40 while [ "$I" -lt "$ITERATIONS" ]
|
/external/autotest/client/deps/glbench/src/ |
cleartest.cc | 16 virtual bool TestFunc(uint64_t iterations); 28 bool ClearTest::TestFunc(uint64_t iterations) { 32 for (uint64_t i = 0; i < iterations - 1; ++i) {
|
contexttest.cc | 26 virtual bool TestFunc(uint64_t iterations); 33 bool ContextTest::TestFunc(uint64_t iterations) { 46 for (uint64_t i = 0 ; i < iterations; ++i) {
|
textureupdatetest.cc | 19 virtual bool TestFunc(uint64_t iterations); 24 bool TextureUpdateTest::TestFunc(uint64_t iterations) { 30 for (uint64_t i = 0; i < iterations; ++i) {
|
readpixeltest.cc | 19 virtual bool TestFunc(uint64_t iterations); 31 bool ReadPixelTest::TestFunc(uint64_t iterations) { 34 for (uint64_t i = 0; i < iterations - 1; i++)
|
/external/autotest/server/site_tests/firmware_ConsecutiveBoot/ |
control.100 | 9 PURPOSE = "Servo based consecutive boot test (100 iterations)" 20 This test is intended to be run with many iterations to ensure that the DUT 23 Runs 100 boot iterations.
|
control.500 | 9 PURPOSE = "Servo based consecutive boot test (500 iterations)" 19 This test is intended to be run with many iterations to ensure that the DUT 22 Runs 500 iterations.
|
control.5000 | 9 PURPOSE = "Servo based consecutive boot test (5000 iterations)" 19 This test is intended to be run with many iterations to ensure that the DUT 22 Runs 5000 iterations.
|
control.stress2 | 9 PURPOSE = "Servo based consecutive boot test (100 iterations)" 20 This test is intended to be run with many iterations to ensure that the DUT 23 Runs 100 iterations.
|
control.stress3 | 9 PURPOSE = "Servo based consecutive boot test (100 iterations)" 20 This test is intended to be run with many iterations to ensure that the DUT 23 Runs 100 iterations.
|
control.stress4 | 9 PURPOSE = "Servo based consecutive boot test (100 iterations)" 20 This test is intended to be run with many iterations to ensure that the DUT 23 Runs 100 iterations.
|
control.stress5 | 9 PURPOSE = "Servo based consecutive boot test (100 iterations)" 20 This test is intended to be run with many iterations to ensure that the DUT 23 Runs 100 iterations.
|
/external/autotest/server/site_tests/firmware_ConsecutiveBootPowerButton/ |
control.100 | 9 PURPOSE = "Servo based consecutive boot test (100 iterations)" 19 This test is intended to be run with many iterations to ensure that the DUT 22 Runs 100 boot iterations.
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/ |
AbstractScalarDifferentiableOptimizer.java | 35 * settings, iterations and evaluations counting.</p> 42 /** Default maximal number of iterations allowed. */ 60 /** Maximal number of iterations allowed. */ 63 /** Number of iterations already performed. */ 64 private int iterations; field in class:AbstractScalarDifferentiableOptimizer 103 return iterations; 136 /** Increment the iterations counter by 1. 138 * of iterations is exceeded 142 if (++iterations > maxIterations) { 165 * of iterations is exceede [all...] |
/frameworks/base/core/tests/utiltests/src/com/android/internal/util/ |
BitwiseStreamsTest.java | 96 int iterations = 10000; local 97 int[] sizeArr = new int[iterations]; 98 int[] valueArr = new int[iterations]; 99 BitwiseOutputStream outStream = new BitwiseOutputStream(iterations * 4); 100 for (int i = 0; i < iterations; i++) { 109 for (int i = 0; i < iterations; i++) { 140 int iterations = 10000; local 141 int[] sizeArr = new int[iterations]; 142 int[] valueArr = new int[iterations]; 144 for (int i = 0; i < iterations; i++) [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/ |
MaxIterationsExceededException.java | 27 * number of iterations. 37 /** Maximal number of iterations allowed. */ 42 * @param maxIterations maximal number of iterations allowed 52 * @param maxIterations the exceeded maximal number of iterations 66 * @param maxIterations the exceeded maximal number of iterations 77 /** Get the maximal number of iterations allowed. 78 * @return maximal number of iterations allowed
|
ConvergingAlgorithmImpl.java | 36 /** Maximum number of iterations. */ 45 /** Default maximum number of iterations. */ 55 * @param defaultMaximalIterationCount maximum number of iterations 134 * Reset the iterations counter to 0. 143 * Increment the iterations counter by 1. 146 * of iterations is exceeded.
|
/external/autotest/tko/ |
machine_aggr.cgi | 88 iterations = test.iterations() 89 if iterations.has_key(key): 90 reference_value = sum(iterations[key])/len(iterations[key]) 95 iterations = test.iterations() 96 if iterations.has_key(key): 103 results = [((reference_value / i - 1)*100) for i in iterations[key]] 105 results = [((i / reference_value - 1)*100) for i in iterations[key] [all...] |
/external/mesa3d/src/glsl/ |
loop_unroll.cpp | 90 int iterations; local 100 iterations = ls->max_iterations; 102 /* Don't try to unroll loops where the number of iterations is not known 105 if (iterations < 0) 108 /* Don't try to unroll loops that have zillions of iterations either. 110 if (iterations > (int) max_iterations) 117 if (count.fail || count.nodes * iterations > (int)max_iterations * 5) 132 iterations = 1; 195 for (int i = 0; i < iterations; i++) { 226 for (int i = 0; i < iterations; i++) [all...] |
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/ |
BluetoothTestRunner.java | 33 * [-e enable_iterations <iterations>] \ 34 * [-e discoverable_iterations <iterations>] \ 35 * [-e scan_iterations <iterations>] \ 36 * [-e enable_pan_iterations <iterations>] \ 37 * [-e pair_iterations <iterations>] \ 38 * [-e connect_a2dp_iterations <iterations>] \ 39 * [-e connect_headset_iterations <iterations>] \ 40 * [-e connect_input_iterations <iterations>] \ 41 * [-e connect_pan_iterations <iterations>] \ 42 * [-e start_stop_sco_iterations <iterations>] \ [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/ |
MultivariateRealOptimizer.java | 35 /** Set the maximal number of iterations of the algorithm. 36 * @param maxIterations maximal number of algorithm iterations 40 /** Get the maximal number of iterations of the algorithm. 41 * @return maximal number of iterations 55 /** Get the number of iterations realized by the algorithm. 61 * @return number of iterations
|
/external/opencv3/samples/gpu/ |
super_resolution.cpp | 63 "{ i iterations | 180 | Iteration count }" 80 const int iterations = cmd.get<int>("iterations"); local 102 superRes->setIterations(iterations); 129 cout << "Iterations : " << iterations << endl;
|