HomeSort by relevance Sort by last modified time
    Searched defs:loops (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/autotest/client/site_tests/hardware_PerfCounterVerification/src/
iTLB_benchmark.c 5 unsigned long loops = 1000; local
7 loops = strtoul(argv[1], NULL, 10);
8 if (loops < 1) {
9 loops = 1;
13 while (--loops) {
noploop.c 4 unsigned long loops = 10000000; // 10 million local
6 loops = strtoul(argv[1], NULL, 10);
7 if (loops < 1) {
8 loops = 1;
13 while (--loops) {
  /external/autotest/client/site_tests/hardware_TLBMissCost/src/
iTLB_benchmark.c 5 unsigned long loops = 1000; local
7 loops = strtoul(argv[1], NULL, 10);
8 if (loops < 1) {
9 loops = 1;
13 while (--loops) {
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
my_corr.c 33 size_t loops; local
47 loops=dim1-dim2+1;
50 WebRtcSpl_CrossCorrelation(corr, seq2, seq1, dim2, loops, scale, 1);
  /external/autotest/client/site_tests/kernel_PerfEventRename/src/
perf-rename-test.c 14 static int do_something(int seed, unsigned int loops) {
16 for (i = 0; i < loops; i++) {
25 int loops; local
29 fprintf(stderr, "usage: <name> <loops>\n");
34 loops = strtoul(argv[2], NULL, 10);
40 do_something(rand(), loops); local
  /external/autotest/client/site_tests/graphics_GpuReset/
graphics_GpuReset.py 27 loops = 1 variable in class:graphics_GpuReset
63 for i in range(1, self.loops + 1):
64 summary += 'graphics_GpuReset iteration %d of %d\n' % (i, self.loops)
111 if pass_count != self.loops:
113 failed_msg += '(pass_count=%d of %d)' % (pass_count, self.loops)
  /external/v8/test/mjsunit/compiler/
dead-loops.js 79 var loops = [loop1, loop2, loop3, loop4, loop5, loop6, loop7, loop8]; variable
81 for (var i = 0; i < loops.length; i++) {
82 var f = loops[i];
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/soundmanager2/
SMSoundOptions.java 25 public int loops = 1; field in class:SMSoundOptions
  /external/libopus/silk/
NLSF_stabilize.c 53 opus_int i, I=0, k, loops; local
60 for( loops = 0; loops < MAX_LOOPS; loops++ ) {
121 if( loops == MAX_LOOPS )
  /external/fio/profiles/
tiobench.c 6 static unsigned int loops = 1; variable
27 unsigned int loops; member in struct:tiobench_options
59 .off1 = offsetof(struct tiobench_options, loops),
102 sprintf(loop_idx, "loops=%u", loops);
  /external/skia/tools/VisualBench/
TimingStateMachine.h 22 * timing and loops() will return the number of loops used to time.
51 int loops() const { return fLoops; } function in class:TimingStateMachine
  /external/v8/test/cctest/compiler/
test-loop-assignment-analysis.cc 74 const char* loops[] = { local
82 for (size_t i = 0; i < arraysize(loops); i++) {
83 TestHelper f(loops[i]);
90 const char* loops[] = { local
94 for (size_t i = 0; i < arraysize(loops); i++) {
95 TestHelper f(loops[i]);
169 const char* loops[] = { local
204 for (size_t i = 0; i < arraysize(loops); i++) {
205 TestHelper f(loops[i]);
212 const char* loops[] = local
    [all...]
  /external/valgrind/helgrind/tests/
t2t.c 21 USAGE: t2t [many] [level] [loops]
24 loops : how many times these locks are created and destroyed and locked/unlocked) */
112 int loops = 1; local
114 if (argc >= 4) loops = atoi(argv[3]);
116 printf ("loops %d\n", loops);
117 for (i = 0; i < loops; i++)
  /external/llvm/lib/CodeGen/
SpillPlacement.h 47 const MachineLoopInfo *loops; member in class:llvm::SpillPlacement
  /external/valgrind/perf/
memrw.c 25 static int nr_loops; // nr of loops reading or writing the ws
38 int loops, m, b; local
43 for (loops = 0; loops < nr_loops; loops++) {
44 // printf("loop %d dowrite %d\n", loops, dowrite);
105 nr_b_ws = nr_b; // to make it easy to do loops combining values
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jmf.jar 
  /external/fio/
idletime.h 31 double loops; member in struct:idle_prof_thread
  /external/icu/icu4c/source/common/
ucnvlat1.c 64 int32_t count, loops; local
66 loops=count=targetCapacity>>3;
92 } while(--loops>0);
183 int32_t count, loops; local
186 loops=count=targetCapacity>>4;
229 count=loops-count;
500 int32_t count, loops; local
503 loops=count=targetCapacity>>3;
522 count=loops-count;
636 int32_t count, loops; local
    [all...]
  /external/icu/icu4c/source/test/perf/ustrperf/
stringperf.cpp 38 int loops = LOOPS; local
40 int to_alloc = loops * MAXNUMLINES * (MAXSRCLEN + catenate_STRLEN);
45 catStd -> reserve(loops * MAXNUMLINES * (MAXSRCLEN + catenate_STRLEN));
  /external/libdrm/tests/
drmstat.c 105 int loops; local
347 loops = strtoul(pt+1, NULL, 0);
365 if (loops < 0) {
366 loops = -loops;
373 for (i = 0; i < loops; i++) {
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/
AnimationController.java 47 * read or written to alter the number of remaining loops.
68 /** The number of remaining loops, negative for continuous, zero if stopped. */
77 int loops; local
81 loops = (int)Math.abs(time / duration);
83 loops++;
89 loops = 1;
90 for (int i = 0; i < loops; i++) {
94 final float result = ((loops - 1) - i) * duration + (diff < 0f ? duration - time : time);
  /external/libmicrohttpd/src/examples/
spdy_event_loop.c 49 static uint64_t loops; variable
132 loops = 0;
368 loops++;
417 printf("%lu loops in %llu secs\n", loops, (long long unsigned)(time(NULL) - start));
  /external/mesa3d/src/glsl/
loop_analysis.cpp 122 loop_state *loops; member in class:loop_analysis
134 this->loops = new loop_state;
217 loop_variable_state *ls = this->loops->insert(ir);
236 * inlining will allow us to unroll loops anyway.
527 return v.loops;
  /external/valgrind/gdbserver_tests/
sleepers.c 13 static int loops = 15; // each thread+main will do this amount of loop variable
82 for (i = 0; i < loops; i++) {
143 loops = atoi(argv[1]);
156 fprintf(stderr, "loops/sleep_ms/burn/threads_spec: %d %d %d %s\n",
157 loops, sleepms, burn, threads_spec);
t.c 14 #define LOOPS 10000000
54 static void loops (int *loopnr) function
57 for (i = 0; i < LOOPS; i++)
58 for (j = 0; j < LOOPS; j++)
69 loops (&loopt1);
79 loops (&loopt2);
133 for (i = 0; i < LOOPS; i++) {

Completed in 2094 milliseconds

1 2 3