Searched refs:timeBase (Results 1 - 12 of 12) sorted by relevance

/haiku/src/system/libroot/os/arch/ppc/
H A Dsystem_time.c25 uint64 timeBase = __ppc_get_time_base(); local
28 return (timeBase >> 32) * cv + (((timeBase & 0xffffffff) * cv) >> 32);
/haiku/src/system/libroot/os/arch/sparc/
H A Dsystem_time.c29 uint64 timeBase = __sparc_get_time_base(); local
32 return (timeBase >> 32) * cv + (((timeBase & 0xffffffff) * cv) >> 32);
/haiku/src/system/libroot/os/arch/arm/
H A Dsystem_time.c36 uint64 timeBase = __arm_get_time_base(); local
39 return (timeBase >> 32) * cv + (((timeBase & 0xffffffff) * cv) >> 32);
/haiku/src/system/libroot/os/arch/m68k/
H A Dsystem_time.c34 uint64 timeBase = __m68k_get_time_base(); local
37 return (timeBase >> 32) * cv + (((timeBase & 0xffffffff) * cv) >> 32);
/haiku/src/tools/fs_shell/
H A Dthread.cpp51 fssh_snooze_until(fssh_bigtime_t time, int timeBase) argument
53 return snooze_until(time, timeBase);
/haiku/src/build/libroot/
H A Dmisc.cpp70 snooze_until(bigtime_t time, int timeBase) argument
/haiku/src/system/libroot/os/
H A Dthread.c255 snooze_etc(bigtime_t timeout, int timeBase, uint32 flags) argument
257 return _kern_snooze_etc(timeout, timeBase, flags, NULL);
270 snooze_until(bigtime_t timeout, int timeBase) argument
272 return _kern_snooze_etc(timeout, timeBase, B_ABSOLUTE_TIMEOUT, NULL);
/haiku/headers/private/fs_shell/
H A Dfssh_os.h177 extern fssh_status_t fssh_snooze_etc(fssh_bigtime_t amount, int timeBase,
179 extern fssh_status_t fssh_snooze_until(fssh_bigtime_t time, int timeBase);
/haiku/src/apps/expander/
H A DGenericThread.h50 int timeBase = B_SYSTEM_TIMEBASE);
H A DGenericThread.cpp315 GenericThread::SnoozeUntil(bigtime_t delay, int timeBase) argument
318 snooze_until(delay, timeBase);
/haiku/src/add-ons/media/media-add-ons/mixer/
H A DMixerCore.cpp512 bigtime_t timeBase = duration_for_frames(fMixBufferFrameRate, frameBase); local
514 TRACE("MixerCore: starting _MixThread, start %lld, timeBase %lld, "
515 "frameBase %lld\n", start, timeBase, frameBase);
532 fEventTime = timeBase;
736 fEventTime = timeBase + bigtime_t((1000000LL * framePos)
/haiku/headers/os/kernel/
H A DOS.h366 extern status_t snooze_etc(bigtime_t amount, int timeBase, uint32 flags);
367 extern status_t snooze_until(bigtime_t time, int timeBase);

Completed in 171 milliseconds