HomeSort by relevance Sort by last modified time
    Searched refs:CLOCKS_PER_SEC (Results 1 - 25 of 29) sorted by null

1 2

  /external/kernel-headers/original/asm-arm/
param.h 16 # define CLOCKS_PER_SEC (USER_HZ) /* like times() */
  /external/kernel-headers/original/asm-x86/
param.h 7 # define CLOCKS_PER_SEC (USER_HZ) /* like times() */
  /bionic/libc/unistd/
time.c 55 now = tm.tv_sec * CLOCKS_PER_SEC + (tm.tv_nsec * (CLOCKS_PER_SEC/1e9));
  /external/qemu/distrib/sdl-1.2.12/src/timer/riscos/
SDL_systimer.c 68 #if CLOCKS_PER_SEC == 1000
72 #elif CLOCKS_PER_SEC == 100
78 return ticks*(1000/CLOCKS_PER_SEC);
  /system/extras/tests/bionic/libstdc++/
test_ctime.cpp 43 #ifndef CLOCKS_PER_SEC
44 #error "CLOCKS_PER_SEC must be a macro"
  /external/dbus/dbus/
dbus-mempool.c 444 N_ITERATIONS, (end - start) / (double) CLOCKS_PER_SEC);
483 N_ITERATIONS, (end - start) / (double) CLOCKS_PER_SEC);
516 N_ITERATIONS, (end - start) / (double) CLOCKS_PER_SEC);
553 N_ITERATIONS, (end - start) / (double) CLOCKS_PER_SEC);
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_custom.h 62 #define XCLOCKS_PER_SEC CLOCKS_PER_SEC
  /external/dropbear/libtommath/etc/
2kprime.c 35 if (clock() - t1 > CLOCKS_PER_SEC) {
37 // sleep((clock() - t1 + CLOCKS_PER_SEC/2)/CLOCKS_PER_SEC);
  /external/qemu/distrib/sdl-1.2.12/src/timer/amigaos/
SDL_systimer.c 75 // CLOCKS_PER_SEC == 1000 !
79 // CLOCKS_PER_SEC != 1000 !
81 return ticks*(1000/CLOCKS_PER_SEC);
94 ms*=(CLOCKS_PER_SEC/1000);
  /bionic/libc/include/
time.h 110 #define CLOCKS_PER_SEC 1000000
  /external/dropbear/libtomcrypt/src/prngs/
rng_get_bytes.c 52 /* on ANSI C platforms with 100 < CLOCKS_PER_SEC < 10000 */
53 #if defined(CLOCKS_PER_SEC) && !defined(WINCE)
  /ndk/build/platforms/android-3/arch-arm/usr/include/
time.h 92 #define CLOCKS_PER_SEC 1000000
  /ndk/build/platforms/android-4/arch-arm/usr/include/
time.h 92 #define CLOCKS_PER_SEC 1000000
  /ndk/build/platforms/android-5/arch-arm/usr/include/
time.h 92 #define CLOCKS_PER_SEC 1000000
  /ndk/build/platforms/android-5/arch-x86/usr/include/
time.h 92 #define CLOCKS_PER_SEC 1000000
  /ndk/build/platforms/android-8/arch-arm/usr/include/
time.h 92 #define CLOCKS_PER_SEC 1000000
  /ndk/build/platforms/android-8/arch-x86/usr/include/
time.h 92 #define CLOCKS_PER_SEC 1000000
  /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/srec/srec/crec/
comp_stats.c 178 c->clocks_per_msec = (double) CLOCKS_PER_SEC / 1000.0;
  /external/openssl/crypto/ec/
ectest.c 163 #ifdef CLOCKS_PER_SEC
166 * of the macro CLOCKS_PER_SEC."
170 /* "`CLOCKS_PER_SEC' undeclared (first use this function)"
173 # define CLOCKS_PER_SEC 1
178 "base point multiplications", (double)clck/CLOCKS_PER_SEC);
181 "random point multiplications", (double)clck/CLOCKS_PER_SEC);
184 "s*P+t*Q operations", (double)clck/CLOCKS_PER_SEC);
186 fprintf(stdout, "average: %.4f " UNIT "\n", (double)clck/(CLOCKS_PER_SEC*i*j));
    [all...]
  /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)
  /external/dropbear/libtommath/mtest/
mtest.c 113 if (clock() - t1 > CLOCKS_PER_SEC) {
  /external/libpng/
pngtest.c     [all...]
  /external/qemu/
arm-semi.c 353 return clock() / (CLOCKS_PER_SEC / 100);

Completed in 1392 milliseconds

1 2