HomeSort by: relevance | last modified time | path
    Searched refs:CLOCK_MONOTONIC_RAW (Results 1 - 10 of 10) sorted by relevancy

  /src/external/gpl3/binutils/dist/gprofng/libcollector/
gethrtime.c 35 #ifdef CLOCK_MONOTONIC_RAW
36 int r = clock_gettime (CLOCK_MONOTONIC_RAW, &tp);
  /src/external/gpl3/binutils.old/dist/gprofng/libcollector/
gethrtime.c 35 #ifdef CLOCK_MONOTONIC_RAW
36 int r = clock_gettime (CLOCK_MONOTONIC_RAW, &tp);
  /src/external/gpl3/binutils/dist/gprofng/src/
gethrtime.c 150 * This is CLOCK_MONOTONIC_RAW. It might be changing to CLOCK_MONOTONIC.
154 * CLOCK_MONOTONIC_RAW is Linux-specific and introduced in 2.6.28.
162 #ifdef CLOCK_MONOTONIC_RAW
163 int r = clock_gettime (CLOCK_MONOTONIC_RAW, &tp);
  /src/external/gpl3/binutils.old/dist/gprofng/src/
gethrtime.c 150 * This is CLOCK_MONOTONIC_RAW. It might be changing to CLOCK_MONOTONIC.
154 * CLOCK_MONOTONIC_RAW is Linux-specific and introduced in 2.6.28.
162 #ifdef CLOCK_MONOTONIC_RAW
163 int r = clock_gettime (CLOCK_MONOTONIC_RAW, &tp);
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
posix.c 529 #elif defined(CLOCK_MONOTONIC_RAW)
530 // On MacOS, CLOCK_MONOTONIC_RAW is a monotonic time that includes time asleep and is not adjusted.
532 const int clockid = CLOCK_MONOTONIC_RAW;
552 #elif defined(CLOCK_MONOTONIC_RAW)
553 // On MacOS, CLOCK_MONOTONIC_RAW is a monotonic time that includes time asleep and is not adjusted.
555 const int clockid = CLOCK_MONOTONIC_RAW;
573 #elif defined(CLOCK_MONOTONIC_RAW)
574 // On MacOS, CLOCK_MONOTONIC_RAW is a monotonic time that includes time asleep and is not adjusted.
576 const int clockid = CLOCK_MONOTONIC_RAW;
  /src/external/bsd/unbound/dist/compat/
getentropy_solaris.c 232 #ifdef CLOCK_MONOTONIC_RAW
233 CLOCK_MONOTONIC_RAW,
getentropy_linux.c 303 #ifdef CLOCK_MONOTONIC_RAW
304 CLOCK_MONOTONIC_RAW,
  /src/external/apache2/llvm/dist/libcxx/src/
chrono.cpp 192 // On Apple platforms, only CLOCK_UPTIME_RAW, CLOCK_MONOTONIC_RAW or
194 // Furthermore, only CLOCK_MONOTONIC_RAW is truly monotonic, because it
199 if (0 != clock_gettime(CLOCK_MONOTONIC_RAW, &tp))
200 __throw_system_error(errno, "clock_gettime(CLOCK_MONOTONIC_RAW) failed");
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/
time.d 206 Uses $(D CLOCK_MONOTONIC_RAW).
360 case raw: return CLOCK_MONOTONIC_RAW;
  /src/external/public-domain/sqlite/dist/autosetup/
jimsh0.c 694 #ifndef CLOCK_MONOTONIC_RAW
695 # define CLOCK_MONOTONIC_RAW CLOCK_MONOTONIC
6536 Jim_SetResultInt(interp, Jim_GetTimeUsec(CLOCK_MONOTONIC_RAW));
11453 i->lastCollectTime = Jim_GetTimeUsec(CLOCK_MONOTONIC_RAW);
19636 start = Jim_GetTimeUsec(CLOCK_MONOTONIC_RAW);
19645 elapsed = Jim_GetTimeUsec(CLOCK_MONOTONIC_RAW) - start;
19681 start = Jim_GetTimeUsec(CLOCK_MONOTONIC_RAW);
19685 delta = Jim_GetTimeUsec(CLOCK_MONOTONIC_RAW) - start;
19693 start = Jim_GetTimeUsec(CLOCK_MONOTONIC_RAW);
19697 overhead = Jim_GetTimeUsec(CLOCK_MONOTONIC_RAW) - start
    [all...]

Completed in 90 milliseconds