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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleMarqueeData.h 49 int loops; // -1 means infinite. member in class:WebCore::StyleMarqueeData
  /external/chromium_org/third_party/opus/src/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/webrtc/src/common_audio/signal_processing/
auto_correlation.c 71 int loops = (in_vector_length - i); local
76 for (j = loops; j > 0; j--)
81 loops4 = (loops >> 2) << 2;
101 for (j = loops4; j < loops; j++)
126 for (j = loops4; j < loops; j++)
  /external/linux-tools-perf/bench/
sched-pipe.c 32 static int loops = LOOPS_DEFAULT; variable
35 OPT_INTEGER('l', "loop", &loops,
36 "Specify number of loops"),
75 for (i = 0; i < loops; i++) {
80 for (i = 0; i < loops; i++) {
99 loops);
109 (double)result_usec / (double)loops);
111 (int)((double)loops /
sched-messaging.c 40 static unsigned int loops = 100; variable
92 /* Sender sprays loops messages down each file descriptor */
101 for (i = 0; i < loops; i++) {
228 ctx->num_packets = num_fds * loops;
265 OPT_UINTEGER('l', "loop", &loops, "Specify number of loops"),
  /external/valgrind/main/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 46 const MachineLoopInfo *loops; member in class:llvm::SpillPlacement
  /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/chromium_org/third_party/icu/source/common/
ucnvlat1.c 63 int32_t count, loops; local
65 loops=count=targetCapacity>>3;
91 } while(--loops>0);
182 int32_t count, loops; local
185 loops=count=targetCapacity>>4;
228 count=loops-count;
502 int32_t count, loops; local
505 loops=count=targetCapacity>>3;
524 count=loops-count;
638 int32_t count, loops; local
    [all...]
  /external/chromium_org/third_party/icu/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));
stringperf.h 22 #define LOOPS 100 //Iterations
23 //#define LOOPS 10
65 int loops = LOOPS; local
71 int to_alloc = loops * MAXNUMLINES * (MAXSRCLEN + catenate_STRLEN);
76 //catStd -> reserve(loops * MAXNUMLINES * (MAXSRCLEN + catenate_STRLEN));
  /external/chromium_org/third_party/mesa/src/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/icu4c/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;
503 int32_t count, loops; local
506 loops=count=targetCapacity>>3;
525 count=loops-count;
639 int32_t count, loops; local
    [all...]
  /external/icu4c/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/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/main/gdbserver_tests/
sleepers.c 12 static int loops = 15; // each thread+main will do this amount of loop variable
80 for (i = 0; i < loops; i++) {
138 loops = atoi(argv[1]);
151 fprintf(stderr, "loops/sleep_ms/burn/threads_spec: %d %d %d %s\n",
152 loops, sleepms, burn, threads_spec);
t.c 14 #define LOOPS 10000000
53 static void loops (int *loopnr) function
56 for (i = 0; i < LOOPS; i++)
57 for (j = 0; j < LOOPS; j++)
68 loops (&loopt1);
78 loops (&loopt2);
132 for (i = 0; i < LOOPS; i++) {
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
TelephonyUtilsTest.java 72 int loops = 10; local
74 for (int i = 0; i < loops; i++) {
82 assertFalse(count == loops);
  /external/chromium_org/third_party/icu/source/tools/ctestfw/
uperf.cpp 340 int32_t loops = 0; local
378 if (loops == 0 || t == 0) {
379 loops = failsafe;
382 //System.out.println("# " + meth.getName() + " x " + loops + " = " + t);
383 loops = (int)((double)n / t * loops + 0.5);
384 if (loops == 0) {
389 //System.out.println("# " + meth.getName() + " x " + loops);
390 t = testFunction->time(loops,&status);
397 loops = iterations
    [all...]
  /external/icu4c/tools/ctestfw/
uperf.cpp 349 int32_t loops = 0; local
387 if (loops == 0 || t == 0) {
388 loops = failsafe;
391 //System.out.println("# " + meth.getName() + " x " + loops + " = " + t);
392 loops = (int)((double)n / t * loops + 0.5);
393 if (loops == 0) {
398 //System.out.println("# " + meth.getName() + " x " + loops);
399 t = testFunction->time(loops,&status);
406 loops = iterations
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
r3xx_vertprog.c 363 unsigned loops[R500_PVS_MAX_LOOP_DEPTH]; local
429 "Loops are nested too deep.");
432 loops[loop_depth++] = ((compiler->code->length)/ 4) + 1;
441 ret_addr = loops[--loop_depth];
592 /* Instructions inside of loops need to use the ENDLOOP
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d1x/
sm4_to_tgsi.cpp 86 std::vector<std::pair<unsigned, unsigned> > loops; member in struct:sm4_to_tgsi_converter
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r3xx_vertprog.c 363 unsigned loops[R500_PVS_MAX_LOOP_DEPTH]; local
429 "Loops are nested too deep.");
432 loops[loop_depth++] = ((compiler->code->length)/ 4) + 1;
441 ret_addr = loops[--loop_depth];
592 /* Instructions inside of loops need to use the ENDLOOP
  /external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d1x/
sm4_to_tgsi.cpp 86 std::vector<std::pair<unsigned, unsigned> > loops; member in struct:sm4_to_tgsi_converter
  /bionic/libc/netbsd/resolv/
res_send.c 514 int done = 0, loops = 0; local
532 if (++loops < 42) /*doug adams*/
618 int done = 0, loops = 0; local
635 if (++loops < 42) /*doug adams*/
    [all...]

Completed in 2348 milliseconds

1 2