HomeSort by relevance Sort by last modified time
    Searched defs:cycles (Results 1 - 23 of 23) sorted by null

  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
LeftRecursionCyclesMessage.java 35 * cycles found by walking rules without decisions; the other msg is
39 public Collection cycles; field in class:LeftRecursionCyclesMessage
41 public LeftRecursionCyclesMessage(Collection cycles) {
43 this.cycles = cycles;
48 st.add("listOfCycles", cycles);
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_debug_norm.c 196 static int test_norm_function( normal_func func, int mtype, long *cycles )
209 (void) cycles;
285 BEGIN_RACE( *cycles );
287 END_RACE( *cycles );
349 printf( "counter overhead: %ld cycles\n\n", counter_overhead );
359 long *cycles = &benchmark_tab[mtype]; local
361 if ( test_norm_function( func, mtype, cycles ) == 0 ) {
m_debug_xform.c 48 /* Overhead of profiling counter in cycles. Automatically adjusted to
169 int mtype, unsigned long *cycles )
179 (void) cycles;
246 BEGIN_RACE( *cycles );
248 END_RACE( *cycles );
295 printf("counter overhead: %lu cycles\n\n", counter_overhead );
314 unsigned long *cycles = &(benchmark_tab[psize-1][mtype]); local
316 if ( test_transform_function( func, psize, mtype, cycles ) == 0 ) {
m_debug_clip.c 230 int psize, long *cycles )
241 (void) cycles;
282 BEGIN_RACE( *cycles );
284 END_RACE( *cycles );
365 printf( "counter overhead: %ld cycles\n\n", counter_overhead );
384 long *cycles = &(benchmark_tab[np][psize-1]); local
386 if ( test_cliptest_function( func, np, psize, cycles ) == 0 ) {
  /external/chromium_org/third_party/smhasher/src/
SpeedTest.cpp 220 double cycles = SpeedTest(hash,seed,trials,blocksize,align); local
222 double bestbpc = double(blocksize)/cycles;
237 double cycles = SpeedTest(hash,seed,trials,keysize,0); local
239 printf("%8.2f cycles/hash\n",cycles);
main.cpp 160 double cycles; local
162 TinySpeedTest(hashfunc<hashtype>(info->hash),sizeof(hashtype),i,info->verification,true,cycles); local
  /external/mesa3d/src/mesa/math/
m_debug_norm.c 196 static int test_norm_function( normal_func func, int mtype, long *cycles )
209 (void) cycles;
285 BEGIN_RACE( *cycles );
287 END_RACE( *cycles );
349 printf( "counter overhead: %ld cycles\n\n", counter_overhead );
359 long *cycles = &benchmark_tab[mtype]; local
361 if ( test_norm_function( func, mtype, cycles ) == 0 ) {
m_debug_xform.c 48 /* Overhead of profiling counter in cycles. Automatically adjusted to
169 int mtype, unsigned long *cycles )
179 (void) cycles;
246 BEGIN_RACE( *cycles );
248 END_RACE( *cycles );
295 printf("counter overhead: %lu cycles\n\n", counter_overhead );
314 unsigned long *cycles = &(benchmark_tab[psize-1][mtype]); local
316 if ( test_transform_function( func, psize, mtype, cycles ) == 0 ) {
m_debug_clip.c 230 int psize, long *cycles )
241 (void) cycles;
282 BEGIN_RACE( *cycles );
284 END_RACE( *cycles );
365 printf( "counter overhead: %ld cycles\n\n", counter_overhead );
384 long *cycles = &(benchmark_tab[np][psize-1]); local
386 if ( test_cliptest_function( func, np, psize, cycles ) == 0 ) {
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_test_conv.c 66 double cycles,
71 fprintf(fp, "%.1f\t", cycles / MAX2(src_type.length, dst_type.length));
163 int64_t cycles[LP_TEST_NUM_SAMPLES]; local
246 cycles[i] = end_counter - start_counter;
299 sum += cycles[i];
300 sum2 += cycles[i]*cycles[i];
309 if(fabs(cycles[i] - avg) <= 4.0*std) {
310 sum += cycles[i];
lp_test_blend.c 85 double cycles,
91 fprintf(fp, "%.1f\t", cycles / type.length);
96 fprintf(fp, "%.1f\t", cycles / (4 * type.length));
470 int64_t cycles[LP_TEST_NUM_SAMPLES]; local
523 cycles[i] = end_counter - start_counter;
603 cycles[i] = end_counter - start_counter;
660 sum += cycles[i];
661 sum2 += cycles[i]*cycles[i];
670 if(fabs(cycles[i] - avg) <= 4.0*std)
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
vdbe.h 70 u64 cycles; /* Total time spent executing this instruction */ member in struct:VdbeOp
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
neteq_quality_test.cc 253 int cycles = block_duration_ms_ / kPacketLossTimeUnitMs; local
258 for (int idx = 0; idx < cycles; idx ++) {
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_conv.c 66 double cycles,
71 fprintf(fp, "%.1f\t", cycles / MAX2(src_type.length, dst_type.length));
163 int64_t cycles[LP_TEST_NUM_SAMPLES]; local
246 cycles[i] = end_counter - start_counter;
299 sum += cycles[i];
300 sum2 += cycles[i]*cycles[i];
309 if(fabs(cycles[i] - avg) <= 4.0*std) {
310 sum += cycles[i];
lp_test_blend.c 85 double cycles,
91 fprintf(fp, "%.1f\t", cycles / type.length);
96 fprintf(fp, "%.1f\t", cycles / (4 * type.length));
470 int64_t cycles[LP_TEST_NUM_SAMPLES]; local
523 cycles[i] = end_counter - start_counter;
603 cycles[i] = end_counter - start_counter;
660 sum += cycles[i];
661 sum2 += cycles[i]*cycles[i];
670 if(fabs(cycles[i] - avg) <= 4.0*std)
    [all...]
  /bionic/libc/bionic/
time64.c 201 int cycles = 0; local
204 cycles = (orig_year - 100) / 400;
205 orig_year -= cycles * 400;
206 days += (Time64_T)cycles * days_in_gregorian_cycle;
209 cycles = (orig_year - 100) / 400;
210 orig_year -= cycles * 400;
211 days += (Time64_T)cycles * days_in_gregorian_cycle;
213 TRACE3("# timegm/ cycles: %d, days: %lld, orig_year: %lld\n", cycles, days, orig_year);
464 int cycles; local
524 int cycles = 0; local
    [all...]
  /external/fio/
gettime.c 272 uint64_t avg, cycles[NR_TIME_ITERS]; local
275 cycles[0] = get_cycles_per_usec();
278 cycles[i] = get_cycles_per_usec();
279 delta = cycles[i] - mean;
282 S += delta * (cycles[i] - mean);
290 if (!cycles[0] && !cycles[NR_TIME_ITERS - 1])
297 double this = cycles[i];
309 dprint(FD_TIME, "cycles[%d]=%llu\n", i,
310 (unsigned long long) cycles[i] / 10)
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c 7940 u64 cycles; \/* Total time spent executing this instruction *\/ member in struct:VdbeOp
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 
org.eclipse.osgi_3.6.2.R36x_v20101103.jar 
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 

Completed in 739 milliseconds