HomeSort by relevance Sort by last modified time
    Searched full:iterations (Results 26 - 50 of 911) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/eigen/demos/mandelbrot/
README 9 The number of iterations, and the choice between single and double precision, are
  /external/icu4c/test/perf/DateFmtPerf/
ReadMe.txt 16 BreakItWord250: Tests word break iteration with 250 iterations.
17 BreakItWord10000: Tests word break iteration with 10000 iterations.
18 BreakItChar250: Tests character break iteration with 250 iterations.
19 BreakItChar10000: Tests character break iteration with 10000 iterations.
  /external/llvm/test/CodeGen/R600/
disconnected-predset-break-bug.ll 12 define void @loop_ge(i32 addrspace(1)* nocapture %out, i32 %iterations) nounwind {
14 %cmp5 = icmp sgt i32 %iterations, 0
18 %i.07.in = phi i32 [ %i.07, %for.body ], [ %iterations, %entry ]
24 %exitcond = icmp eq i32 %add, %iterations
  /external/smack/src/org/xbill/DNS/
NSEC3Record.java 50 private int iterations; field in class:NSEC3Record
72 * @param iterations The number of hash iterations.
78 int flags, int iterations, byte [] salt, byte [] next,
84 this.iterations = checkU16("iterations", iterations);
107 iterations = in.readU16();
124 out.writeU16(iterations);
141 iterations = st.getUInt16()
    [all...]
  /external/valgrind/main/memcheck/tests/
vcpu_fbench.stdout.exp 2 and performance benchmark. 100 iterations will be made.
  /external/wpa_supplicant_8/src/crypto/
sha1-pbkdf2.c 15 size_t ssid_len, int iterations, unsigned int count,
45 for (i = 1; i < iterations; i++) {
63 * @iterations: Number of iterations to run
69 * iterations is set to 4096 and buflen to 32. This function is described in
73 int iterations, u8 *buf, size_t buflen)
82 if (pbkdf2_sha1_f(passphrase, ssid, ssid_len, iterations,
  /external/eigen/bench/btl/generic_bench/timers/
STL_timer.hh 37 iterations.clear();
38 iterations.reserve(reps);
53 iterations.push_back(count);
57 return (iterations.size() < reps);
62 sort(iterations.begin(), iterations.end());
63 return 1.0/iterations[reps/2];
67 // For storing loop iterations of a trial
68 vector<long> iterations; member in class:STL_Timer
71 // For counting loop iterations of a tria
    [all...]
  /external/valgrind/main/drd/tests/
annotate_barrier.c 46 int iterations; member in struct:threadinfo
102 * Single thread, which touches p->iterations elements of array p->array.
113 for (i = 0; i < p->iterations; i++)
125 static void barriers_and_races(const int nthread, const int iterations)
134 array = malloc(iterations * sizeof(array[0]));
146 t[i].iterations = iterations;
163 int iterations; local
166 iterations = (argc > 2) ? atoi(argv[2]) : 3;
169 barriers_and_races(nthread, iterations);
    [all...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
HillHeightMap.java 49 private int iterations; // how many hills to generate field in class:HillHeightMap
60 * @param iterations
71 * iterations is not greater that zero
73 public HillHeightMap(int size, int iterations, float minRadius,
75 if (size <= 0 || iterations <= 0 || minRadius <= 0 || maxRadius <= 0
79 + "or number of iterations is not greater that zero, "
87 this.iterations = iterations;
100 * @param iterations
109 * iterations is not greater that zero
    [all...]
FluidSimHeightMap.java 55 private int iterations; // number of iterations field in class:FluidSimHeightMap
68 * @param iterations
69 * the number of iterations to do
86 * iterations is not greater that zero, or the minimum initial height
89 public FluidSimHeightMap(int size, int iterations, float minInitialHeight, float maxInitialHeight, float viscosity, float waveSpeed, float timestep, float nodeDistance, long seed) throws Exception {
90 if (size <= 0 || iterations <= 0 || minInitialHeight >= maxInitialHeight) {
93 + "or number of iterations is not greater that zero, "
100 this.iterations = iterations;
    [all...]
FaultHeightMap.java 78 private int iterations; // iterations to perform field in class:FaultHeightMap
94 * @param iterations Iterations to perform
102 public FaultHeightMap(int size, int iterations, int faultType, int faultShape, float minFaultHeight, float maxFaultHeight, long seed) throws Exception {
103 if (size < 0 || iterations < 0) {
104 throw new Exception("Size and iterations must be greater than 0!");
107 this.iterations = iterations;
123 * @param iterations number of iterations
    [all...]
  /external/chromium_org/webkit/renderer/compositor_bindings/
web_animation_impl.h 30 virtual int iterations() const;
31 virtual void setIterations(int iterations);
  /external/chromium_org/chromeos/test/data/network/
broken-encrypted-iterations.onc 7 "Iterations": -1,
broken-encrypted-zero-iterations.onc 7 "Iterations": 0,
encrypted.onc 7 "Iterations": 20000,
  /external/chromium_org/mojo/public/tests/
test_support.cc 75 size_t iterations = 0; local
79 iterations += kGranularity;
85 iterations / (end_time - start_time).InSecondsF(),
86 "iterations/second");
  /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" ]
  /frameworks/base/core/tests/coretests/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/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
IterativeFilter.java 40 private int iterations; field in class:IterativeFilter
58 return this.iterations * margin + super.getMargin(size, margin);
61 public void setIterations(int iterations) {
62 this.iterations = iterations;
66 return this.iterations;
90 for (int i = 0; i < this.iterations; i++) {
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/stress/
WifiApStress.java 44 private int iterations; field in class:WifiApStress
54 iterations = mRunner.mSoftapIterations;
61 // write the total number of iterations into output file
64 mOutputWriter.write(String.format("iteration %d out of %d\n", mLastIteration, iterations));
87 for (i = 0; i < iterations; i++) {
114 if (i == iterations) {
115 mLastIteration = iterations;
  /external/chromium_org/third_party/mesa/src/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...]
  /external/chromium_org/tools/perf/measurements/
endure.py 67 'of iterations')
91 """Sample perf information if enough seconds or iterations have passed."""
92 # Parse the interval option, setting either or seconds or iterations.
97 # Check whether the sample interval is specified in seconds or iterations,
112 self._SampleStats(tab, results, iterations=self._iterations)
128 def _SampleStats(self, tab, results, seconds=None, iterations=None):
136 assert iterations, 'Neither seconds nor iterations given.'
137 results.Add(trace_name + '_X', 'iterations', iterations)
    [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...]

Completed in 1069 milliseconds

12 3 4 5 6 7 8 91011>>