HomeSort by relevance Sort by last modified time
    Searched full:ticks (Results 1 - 25 of 271) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/v8/test/mjsunit/tools/
tickprocessor-test.gc-state 1 Statistical profiling result from v8.log, (13 ticks, 0 unaccounted, 13 excluded).
4 ticks total nonlib name
7 ticks total nonlib name
10 ticks total nonlib name
13 ticks total nonlib name
21 ticks parent name
tickprocessor-test.func-info 1 Statistical profiling result from v8.log, (3 ticks, 0 unaccounted, 0 excluded).
4 ticks total nonlib name
7 ticks total nonlib name
12 ticks total nonlib name
15 ticks total nonlib name
23 ticks parent name
tickprocessor-test.default 1 Statistical profiling result from v8.log, (13 ticks, 2 unaccounted, 0 excluded).
4 ticks total nonlib name
8 ticks total nonlib name
13 ticks total nonlib name
17 ticks total nonlib name
24 ticks total nonlib name
32 ticks parent name
tickprocessor-test.separate-ic 1 Statistical profiling result from v8.log, (13 ticks, 2 unaccounted, 0 excluded).
4 ticks total nonlib name
8 ticks total nonlib name
13 ticks total nonlib name
19 ticks total nonlib name
26 ticks total nonlib name
34 ticks parent name
tickprocessor-test.ignore-unknown 1 Statistical profiling result from v8.log, (13 ticks, 2 unaccounted, 0 excluded).
4 ticks total nonlib name
9 ticks total nonlib name
13 ticks total nonlib name
20 ticks total nonlib name
28 ticks parent name
  /external/markdown/MarkdownTest/Tests_2007/
Code Spans.text 3 Fix for backticks within HTML tag: <span attr='`ticks`'>like this</span>
Code Spans.html 3 <p>Fix for backticks within HTML tag: <span attr='`ticks`'>like this</span></p>
  /external/valgrind/main/memcheck/tests/linux/
timerfd-syscall.c 143 u_int64_t ticks; local
156 fprintf(stderr, "no ticks happened\n");
159 if (read(tfd, &ticks, sizeof(ticks)) != sizeof(ticks))
165 return ticks;
171 long ticks; local
206 ticks = waittmr(tfd, -1);
208 if (ticks <= 0)
211 fprintf(stderr, "got timer ticks (%ld) after %.1f s\n"
    [all...]
timerfd-syscall.stderr.exp 10 got timer ticks (1) after 0.5 s
13 got timer ticks (1) after 0.5 s
20 got timer ticks (20) after about 2s
23 got timer ticks (1) after 0.1 s
33 got timer ticks (1) after 0.5 s
36 got timer ticks (1) after 0.5 s
43 got timer ticks (20) after about 2s
46 got timer ticks (1) after 0.1 s
  /external/grub/netboot/
timer.h 49 /* Ticks must be between 0 and 65535 (0 == 65536)
51 extern void load_timer2(unsigned int ticks);
57 extern inline void waiton_timer2(unsigned int ticks)
59 load_timer2(ticks);
  /external/kernel-headers/original/asm-x86/
param.h 6 # define USER_HZ 100 /* .. some user interfaces are in "ticks" */
  /external/v8/tools/
freebsd-tick-processor 6 # No ticks from C++ code.
  /external/webrtc/src/system_wrappers/source/
cpu_mac.cc 44 WebRtc_Word64 ticks = 0; local
47 ticks += cpuLoadInfo[cpu].cpu_ticks[state];
49 _lastTickCount[cpu] = ticks;
109 WebRtc_Word64 ticks = 0; local
112 ticks += cpuLoadInfo[cpu].cpu_ticks[state];
119 (ticks - _lastTickCount[cpu])) /
122 _lastTickCount[cpu] = ticks;
  /external/qemu/distrib/sdl-1.2.12/src/timer/win32/
SDL_systimer.c 39 /* 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/qemu/hw/
arm-misc.h 42 /* Multiplication factor to convert from system clock ticks to qemu timer
43 ticks. */
  /external/webrtc/src/system_wrappers/interface/
tick_util.h 44 WebRtc_Word64 Ticks() const;
48 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
104 inline TickTime operator+(const TickTime lhs, const WebRtc_Word64 ticks)
107 time._ticks += ticks;
197 inline WebRtc_Word64 TickTime::Ticks() const
219 inline WebRtc_Word64 TickTime::TicksToMilliseconds(const WebRtc_Word64 ticks)
225 return (ticks * 1000) / qpfreq.QuadPart
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/timer/riscos/
SDL_systimer.c 52 /* 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/iproute2/tc/
tc_core.h 22 unsigned tc_calc_xmitsize(unsigned rate, unsigned ticks);
  /external/kernel-headers/original/asm-arm/
param.h 15 # define USER_HZ 100 /* User interfaces are in "ticks" */
  /external/v8/src/
counters.cc 53 start_time_ = OS::Ticks();
60 stop_time_ = OS::Ticks();
71 start_time_ = OS::Ticks();
78 stop_time_ = OS::Ticks();
  /external/sonivox/jet_tools/JetCreator/
midifile.py 221 def ConvertToTicks (self, measures, beats, ticks):
223 total_ticks = ticks + (total_beats * self.ppqn)
226 def ConvertTicksToMBT (self, ticks):
227 beats = ticks / self.ppqn
228 ticks -= beats * self.ppqn
231 return (measures, beats, ticks)
233 def ConvertTicksToStr (self, ticks, format=DEFAULT_TIME_FORMAT):
234 measures, beats, ticks = self.ConvertTicksToMBT(ticks)
235 return format % (measures, beats, ticks)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/timer/amigaos/
SDL_systimer.c 57 /* 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/unix/
SDL_systimer.c 53 /* 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/qemu/target-arm/
helper-android.c 29 void HELPER(traceTicks)(uint32_t ticks)
31 sim_time += ticks;
  /external/qemu/audio/
noaudio.c 46 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 ());

Completed in 704 milliseconds

1 2 3 4 5 6 7 8 91011