Searched defs:ticks (Results 1 - 25 of 68) sorted by relevance

123

/external/qemu/target-arm/
H A Dhelper-android.c29 void HELPER(traceTicks)(uint32_t ticks) argument
31 sim_time += ticks;
/external/grub/netboot/
H A Dtimer.c13 void load_timer2(unsigned int ticks) argument
18 outb(ticks & 0xFF, TIMER2_PORT);
19 outb(ticks >> 8, TIMER2_PORT);
H A Dtimer.h51 extern void load_timer2(unsigned int ticks);
57 extern inline void waiton_timer2(unsigned int ticks) argument
59 load_timer2(ticks);
H A Dmisc.c40 unsigned long ticks; local
44 if ((ticks = currticks ()) == lastticks)
47 lastticks = ticks;
/external/icu4c/i18n/
H A Dutmscale.c14 #define ticks INT64_C(1) macro
15 #define microseconds (ticks * 10)
28 {ticks, INT64_C(504911232000000000), U_INT64_MIN, INT64_C(8718460804854775807), INT64_C(-8718460804854775808), U_INT64_MAX, INT64_C(504911232000000000), INT64_C(504911232000000000), INT64_C(0), U_INT64_MIN, U_INT64_MAX},
29 {ticks, INT64_C(0), U_INT64_MIN, U_INT64_MAX, U_INT64_MIN, U_INT64_MAX, INT64_C(0), INT64_C(0), INT64_C(0), U_INT64_MIN, U_INT64_MAX},
/external/qemu/distrib/sdl-1.2.12/src/timer/riscos/
H A DSDL_systimer.c52 /* The first ticks value of the application */
57 /* Set first ticks value */
63 clock_t ticks; local
65 ticks=clock()-start;
70 return(ticks);
74 return (ticks * 10);
78 return ticks*(1000/CLOCKS_PER_SEC);
/external/qemu/distrib/sdl-1.2.12/src/timer/unix/
H A DSDL_systimer.c53 /* The first ticks value of the application */
63 /* Set first ticks value */
74 Uint32 ticks; local
77 ticks=(now.tv_sec-start.tv_sec)*1000+(now.tv_nsec-start.tv_nsec)/1000000;
78 return(ticks);
80 Uint32 ticks;
83 ticks=(now.tv_sec-start.tv_sec)*1000+(now.tv_usec-start.tv_usec)/1000;
84 return(ticks);
/external/webrtc/src/system_wrappers/source/
H A Dcpu_mac.cc50 WebRtc_Word64 ticks = 0; local
53 ticks += cpuLoadInfo[cpu].cpu_ticks[state];
55 _lastTickCount[cpu] = ticks;
122 WebRtc_Word64 ticks = 0; local
125 ticks += cpuLoadInfo[cpu].cpu_ticks[state];
132 (ticks - _lastTickCount[cpu])) /
135 _lastTickCount[cpu] = ticks;
/external/chromium/chrome/browser/sync/engine/
H A Dsyncer_thread2_whitebox_unittest.cc43 void SetLastSyncedTime(base::TimeTicks ticks) { argument
44 syncer_thread_->last_sync_session_end_time_ = ticks;
/external/chromium/net/base/
H A Dnet_log_unittest.h18 base::TimeTicks ticks; // initialized to 0. local
19 ticks += base::TimeDelta::FromMilliseconds(t);
20 return ticks;
/external/qemu/distrib/sdl-1.2.12/src/audio/bsd/
H A DSDL_bsdaudio.c149 Sint32 ticks; local
151 ticks = ((Sint32)(next_frame - SDL_GetTicks()))-FUDGE_TICKS;
152 if ( ticks > 0 ) {
153 SDL_Delay(ticks);
/external/qemu/distrib/sdl-1.2.12/src/timer/amigaos/
H A DSDL_systimer.c57 /* The first ticks value of the application */
64 /* Set first ticks value */
70 clock_t ticks; local
72 ticks=clock()-start;
77 return(ticks);
81 return ticks*(1000/CLOCKS_PER_SEC);
117 /* Set first ticks value */
190 D(bug("Current ticks: %lu - %lu\n",result[0],result[1]));
/external/qemu/distrib/sdl-1.2.12/src/timer/win32/
H A DSDL_systimer.c39 /* The first (low-resolution) ticks value of the application */
45 /* The first high-resolution ticks value of the application */
47 /* The number of ticks per second of the high-resolution performance counter */
53 /* Set first ticks value */
75 DWORD now, ticks; local
100 ticks = (TIME_WRAP_VALUE-start) + now;
102 ticks = (now - start);
104 return(ticks);
/external/iproute2/tc/
H A Dq_netem.c109 static int get_ticks(__u32 *ticks, const char *str) argument
121 *ticks = tc_core_time2tick(t);
H A Dtc_core.c64 unsigned tc_calc_xmitsize(unsigned rate, unsigned ticks) argument
66 return ((double)rate*tc_core_tick2time(ticks))/TIME_UNITS_PER_SEC;
/external/qemu/audio/
H A Dnoaudio.c46 int64_t ticks; local
50 ticks = now - no->old_ticks;
51 bytes = muldiv64 (ticks, hw->info.bytes_per_second, get_ticks_per_sec ());
106 int64_t ticks = now - no->old_ticks; local
108 muldiv64 (ticks, hw->info.bytes_per_second, get_ticks_per_sec ());
/external/qemu/distrib/sdl-1.2.12/src/audio/arts/
H A DSDL_artsaudio.c203 Sint32 ticks; local
218 ticks = ((Sint32)(next_frame - SDL_GetTicks()))-FUDGE_TICKS;
219 if ( ticks > 0 ) {
220 SDL_Delay(ticks);
/external/qemu/distrib/sdl-1.2.12/src/audio/dma/
H A DSDL_dmaaudio.c157 Sint32 ticks; local
159 ticks = ((Sint32)(next_frame - SDL_GetTicks()))-FUDGE_TICKS;
160 if ( ticks > 0 ) {
161 SDL_Delay(ticks);
/external/qemu/distrib/sdl-1.2.12/src/audio/esd/
H A DSDL_esdaudio.c187 Sint32 ticks; local
202 ticks = ((Sint32)(next_frame - SDL_GetTicks()))-FUDGE_TICKS;
203 if ( ticks > 0 ) {
204 SDL_Delay(ticks);
/external/qemu/distrib/sdl-1.2.12/src/audio/paudio/
H A DSDL_paudio.c132 Sint32 ticks; local
134 ticks = ((Sint32)(next_frame - SDL_GetTicks()))-FUDGE_TICKS;
135 if ( ticks > 0 ) {
136 SDL_Delay(ticks);
/external/qemu/distrib/sdl-1.2.12/src/timer/os2/
H A DSDL_systimer.c42 /* The first high-resolution ticks value of the application */
44 /* The number of ticks per second of the high-resolution performance counter */
56 ULONG ticks = ticks; local
84 mov dword ptr ticks, eax local
89 return ticks;
/external/qemu/
H A Dqemu-timer.h162 /* host CPU ticks (if available) */
310 static int64_t ticks = 0; local
311 return ticks++;
/external/valgrind/main/memcheck/tests/linux/
H A Dtimerfd-syscall.c148 u_int64_t ticks; local
161 fprintf(stderr, "no ticks happened\n");
164 if (read(tfd, &ticks, sizeof(ticks)) != sizeof(ticks))
170 return ticks;
176 long ticks; local
211 ticks = waittmr(tfd, -1);
213 if (ticks <= 0)
216 fprintf(stderr, "got timer ticks (
[all...]
/external/webrtc/src/system_wrappers/interface/
H A Dtick_util.h48 static WebRtc_Word64 TicksToMilliseconds(const WebRtc_Word64 ticks);
50 // Returns a TickTime that is ticks later than the passed TickTime
51 friend TickTime operator+(const TickTime lhs, const WebRtc_Word64 ticks);
55 // Returns a TickInterval that is the difference in ticks beween rhs and lhs
109 inline TickTime operator+(const TickTime lhs, const WebRtc_Word64 ticks) argument
112 time._ticks += ticks;
240 inline WebRtc_Word64 TickTime::TicksToMilliseconds(const WebRtc_Word64 ticks) argument
246 return (ticks * 1000) / qpfreq.QuadPart;
248 return ticks;
251 return ticks / 100000
257 operator +=(const WebRtc_Word64& ticks) argument
[all...]
/external/chromium/base/
H A Dtime_win.cc114 // the number of ticks that have elapsed, and compute the delta.
119 TimeTicks ticks = TimeTicks::Now(); local
122 TimeDelta elapsed = ticks - initial_ticks;

Completed in 335 milliseconds

123