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

1 2

  /toolchain/binutils/binutils-2.27/libiberty/
getruntime.c 64 #ifndef CLOCKS_PER_SEC
65 #define CLOCKS_PER_SEC 1
78 #ifdef CLOCKS_PER_SEC
79 #define GNU_HZ CLOCKS_PER_SEC
113 const long clocks_per_sec = CLOCKS_PER_SEC;
114 if (clocks_per_sec <= 1000000)
115 return clock () * (1000000 / clocks_per_sec);
117 return clock () / clocks_per_sec;
  /bionic/libc/include/
time.h 38 #define CLOCKS_PER_SEC 1000000
  /external/ImageMagick/MagickCore/
timer.c 56 #if !defined(CLOCKS_PER_SEC)
57 #define CLOCKS_PER_SEC 100
207 return((double) clock()/CLOCKS_PER_SEC);
469 return((double) clock()/CLOCKS_PER_SEC);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
time.h 44 The macro `CLOCKS_PER_SEC' is the number per second of the value
47 The value of CLOCKS_PER_SEC is required to be 1 million on all
49 # define CLOCKS_PER_SEC 1000000l
52 /* Even though CLOCKS_PER_SEC has such a strange value CLK_TCK
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
time.h 44 The macro `CLOCKS_PER_SEC' is the number per second of the value
47 The value of CLOCKS_PER_SEC is required to be 1 million on all
49 # define CLOCKS_PER_SEC 1000000l
52 /* Even though CLOCKS_PER_SEC has such a strange value CLK_TCK
  /external/freetype/src/tools/
test_bbox.c 8 /* SunOS 4.1.* does not define CLOCKS_PER_SEC, so include <sys/param.h> */
12 #define CLOCKS_PER_SEC HZ
18 return clock() * 10000L / CLOCKS_PER_SEC;
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/
time.h 57 #define CLOCKS_PER_SEC 128
  /device/linaro/bootloader/edk2/StdLib/Include/
time.h 10 The macros defined are NULL; and CLOCKS_PER_SEC which expands to an
39 CLOCKS_PER_SEC The number of values per second returned by the clock function.
83 #define CLOCKS_PER_SEC __getCPS()
165 the macro CLOCKS_PER_SEC. If the processor time used is not
  /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);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
time.h 101 #define CLOCKS_PER_SEC 1000
238 #define CLK_TCK CLOCKS_PER_SEC
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
timemodule.c 147 #ifndef CLOCKS_PER_SEC
149 #define CLOCKS_PER_SEC CLK_TCK
151 #define CLOCKS_PER_SEC 1000000
158 return PyFloat_FromDouble(((double)clock()) / CLOCKS_PER_SEC);
179 CLOCKS_PER_SEC);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
timemodule.c 147 #ifndef CLOCKS_PER_SEC
149 #define CLOCKS_PER_SEC CLK_TCK
151 #define CLOCKS_PER_SEC 1000000
158 return PyFloat_FromDouble(((double)clock()) / CLOCKS_PER_SEC);
179 CLOCKS_PER_SEC);
    [all...]
  /external/libxml2/
testSAX.c 142 #ifndef CLOCKS_PER_SEC
143 #define CLOCKS_PER_SEC 100
159 msec = ((end - begin) * 1000) / CLOCKS_PER_SEC;
xmllint.c 462 #ifndef CLOCKS_PER_SEC
463 #define CLOCKS_PER_SEC 100
479 msec = ((end - begin) * 1000) / CLOCKS_PER_SEC;
    [all...]
  /external/python/cpython2/Lib/plat-atheos/
TYPES.py 87 CLOCKS_PER_SEC = 1000000
89 CLOCKS_PER_SEC = 1000000
92 CLK_TCK = CLOCKS_PER_SEC
  /external/python/cpython2/Modules/
timemodule.c 147 #ifndef CLOCKS_PER_SEC
149 #define CLOCKS_PER_SEC CLK_TCK
151 #define CLOCKS_PER_SEC 1000000
158 return PyFloat_FromDouble(((double)clock()) / CLOCKS_PER_SEC);
179 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/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/python/cpython2/Lib/plat-linux2/
TYPES.py 102 CLOCKS_PER_SEC = 1000000l
108 CLK_TCK = CLOCKS_PER_SEC
  /external/python/cpython3/Modules/
timemodule.c 51 #ifndef CLOCKS_PER_SEC
53 #define CLOCKS_PER_SEC CLK_TCK
55 #define CLOCKS_PER_SEC 1000000
72 info->resolution = 1.0 / (double)CLOCKS_PER_SEC;
76 return PyFloat_FromDouble((double)value / CLOCKS_PER_SEC);
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/plat-linux2/
TYPES.py 102 CLOCKS_PER_SEC = 1000000l
108 CLK_TCK = CLOCKS_PER_SEC
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/plat-linux2/
TYPES.py 102 CLOCKS_PER_SEC = 1000000l
108 CLK_TCK = CLOCKS_PER_SEC
  /external/python/cpython2/Lib/plat-beos5/
IN.py 44 CLOCKS_PER_SEC = 1000
45 CLK_TCK = CLOCKS_PER_SEC
  /external/python/cpython2/Lib/plat-sunos5/
TYPES.py 308 CLOCKS_PER_SEC = 1000000
  /external/pcre/dist2/src/
pcre2test.c 170 #ifndef CLOCKS_PER_SEC
172 #define CLOCKS_PER_SEC CLK_TCK
174 #define CLOCKS_PER_SEC 100
    [all...]

Completed in 842 milliseconds

1 2