HomeSort by relevance Sort by last modified time
    Searched refs:CLOCKS_PER_SEC (Results 76 - 100 of 111) sorted by null

1 2 34 5

  /external/svox/pico/lib/
picopal.c 515 *sec = dt / CLOCKS_PER_SEC;
516 *usec = USEC_PER_SEC * (dt % CLOCKS_PER_SEC) / CLOCKS_PER_SEC;
  /external/expat/tests/benchmark/
benchmark.c 103 cpuTime += ((double) (tend - tstart)) / CLOCKS_PER_SEC;
  /external/libdivsufsort/examples/
suftest.c 154 fprintf(stderr, "%.4f sec\n", (double)(finish - start) / (double)CLOCKS_PER_SEC);
mksary.c 178 fprintf(stderr, "%.4f sec\n", (double)(finish - start) / (double)CLOCKS_PER_SEC);
unbwt.c 196 n, (double)(finish - start) / (double)CLOCKS_PER_SEC);
bwt.c 209 n, (double)(finish - start) / (double)CLOCKS_PER_SEC);
  /external/opencv3/apps/traincascade/
cascadeclassifier.h 59 #define TIME( arg ) (((double) clock()) / CLOCKS_PER_SEC)
  /external/srtp/test/
replay_driver.c 208 return (double) CLOCKS_PER_SEC * REPLAY_NUM_TRIALS / timer;
rdbx_driver.c 344 return (double) CLOCKS_PER_SEC * num_trials / timer;
  /external/opencv/
cvjni.cpp 331 sprintf(buffer, "Total Time to init: %f", (double)total_time_finish / (double)CLOCKS_PER_SEC);
483 sprintf(buffer, "Total Time to cvHaarDetectObjects in findAllFaces: %f", (double)haar_detect_time_finish / (double)CLOCKS_PER_SEC);
497 sprintf(buffer, "Total Time to findAllFaces: %f", (double)total_time_finish / (double)CLOCKS_PER_SEC);
582 sprintf(buffer, "Total Time to cvHaarDetectObjects in findSingleFace: %f", (double)haar_detect_time_finish / (double)CLOCKS_PER_SEC);
605 sprintf(buffer, "Total Time to findSingleFace: %f", (double)total_time_finish / (double)CLOCKS_PER_SEC);
  /external/opencv3/modules/videostab/src/
stabilizer.cpp 249 log_->print("\nprocessing time: %.3f sec\n", static_cast<double>(elapsedTime) / CLOCKS_PER_SEC);
420 static_cast<double>(elapsedTime) / CLOCKS_PER_SEC);
437 static_cast<double>(elapsedTime) / CLOCKS_PER_SEC);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/
test_iSACfixfloat.c 35 #define CLOCKS_PER_SEC 1000
270 starttime = clock() / (double)CLOCKS_PER_SEC; /* Runtime statistics */
612 runtime = (double)(clock() / (double)CLOCKS_PER_SEC - starttime);
kenny.cc 455 starttime = clock()/(double)CLOCKS_PER_SEC;
815 runtime = (double)(((double)clock()/(double)CLOCKS_PER_SEC)-starttime);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/
simpleKenny.c 20 #define CLOCKS_PER_SEC 1000
234 starttime = clock() / (double)CLOCKS_PER_SEC; /* Runtime statistics */
482 runtime = (double)(clock() / (double)CLOCKS_PER_SEC - starttime);
  /external/lz4/programs/
lz4io.c 213 unsigned nSpan = (unsigned)(((nCurrent - nPrevious) * 1000) / CLOCKS_PER_SEC);
349 double seconds = (double)(end - start)/CLOCKS_PER_SEC;
457 double seconds = (double)(end - start)/CLOCKS_PER_SEC;
658 double seconds = (double)(end - start)/CLOCKS_PER_SEC;
  /external/srtp/crypto/test/
auth_driver.c 197 return (double) NUM_TRIALS * 8 * msg_len_octets * CLOCKS_PER_SEC / timer;
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/test/
amrnb_enc_test.cpp 149 printf("\n%2.5lf seconds\n", (double)duration/CLOCKS_PER_SEC);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
time.h 101 #define CLOCKS_PER_SEC 1000
248 #define CLK_TCK CLOCKS_PER_SEC
  /external/libxml2/
testSAX.c 142 #ifndef CLOCKS_PER_SEC
143 #define CLOCKS_PER_SEC 100
159 msec = ((end - begin) * 1000) / CLOCKS_PER_SEC;
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/ReleaseTest-API/
ReleaseTest-API.cc 36 #define CLOCKS_PER_SEC 1000 /* Runtime statistics */
439 starttime = clock() / (double)CLOCKS_PER_SEC; /* Runtime statistics */
909 runtime = (double)(clock() / (double)CLOCKS_PER_SEC - starttime);
  /external/srtp/crypto/cipher/
cipher.c 406 return (uint64_t)CLOCKS_PER_SEC * num_trials * 8 * octets_in_buffer / timer;
  /frameworks/av/media/libstagefright/codecs/amrwbenc/SampleCode/
AMRWB_E_SAMPLE.c 248 printf( "\n%2.5f seconds\n", (double)duration/CLOCKS_PER_SEC);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
time.h 40 /* This defines CLOCKS_PER_SEC, which is the number of processor clock
47 # define CLK_TCK CLOCKS_PER_SEC
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
time.h 40 /* This defines CLOCKS_PER_SEC, which is the number of processor clock
47 # define CLK_TCK CLOCKS_PER_SEC
  /external/bison/lib/
timevar.c 80 We mustn't use CLOCKS_PER_SEC except with clock(). */
126 #define CLOCKS_TO_MSEC (1.0 / CLOCKS_PER_SEC)

Completed in 618 milliseconds

1 2 34 5