/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/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/opencore/oscl/oscl/osclio/src/ |
oscl_file_io.cpp | 341 uint32 ticks = 0; local 343 iFileStats->Start(ticks); 373 iFileStats->End(EOsclFileOp_Open, ticks); 395 uint32 ticks = 0; local 397 iFileStats->Start(ticks); 427 iFileStats->End(EOsclFileOp_Open, ticks); 446 uint32 ticks = 0; local 448 iFileStats->Start(ticks); 467 iFileStats->End(EOsclFileOp_Close, ticks); 494 uint32 ticks = 0 local 531 uint32 ticks = 0; local 567 uint32 ticks = 0; local 604 uint32 ticks = 0; local 640 uint32 ticks = 0; local 677 uint32 ticks = 0; local 712 uint32 ticks = 0; local 755 uint32 ticks = 0; local 798 uint32 ticks = 0; local 835 uint32 ticks = 0; local 868 uint32 ticks = 0; local 898 uint32 ticks = 0; local 928 uint32 ticks = 0; local 958 uint32 ticks = 0; local 989 uint32 ticks = 0; local 1019 uint32 ticks = 0; local 1049 uint32 ticks = 0; local 1079 uint32 ticks = 0; local [all...] |
/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 | 39 /* Multiplication factor to convert from system clock ticks to qemu timer 40 ticks. */
|
/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/opencore/oscl/oscl/osclutil/src/ |
oscl_tickcount.h | 62 * This function returns the tick frequency in ticks 65 * @return ticks per second 78 * This function converts ticks to milliseconds 82 static uint32 TicksToMsec(uint32 ticks); 85 * This function converts milliseconds to ticks 87 * @return ticks
|
/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 | 45 start_time_ = OS::Ticks(); 52 stop_time_ = OS::Ticks(); 63 start_time_ = OS::Ticks(); 70 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/audio/ |
noaudio.c | 46 int64_t ticks; local 55 ticks = now - no->old_ticks; 56 bytes = (ticks * hw->info.bytes_per_second) / ticks_per_sec; 111 int64_t ticks = now - no->old_ticks; local 112 int64_t bytes = (ticks * hw->info.bytes_per_second) / ticks_per_sec;
|
/external/icu4c/i18n/ |
utmscale.c | 14 #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/os2/ |
SDL_systimer.c | 42 /* 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/opencore/doc/oscl_html/ |
classOsclTickCount.html | 20 <tr><td nowrap align=right valign=top>uint32 </td><td valign=bottom><a class="el" href="classOsclTickCount.html#d3">TicksToMsec</a> (uint32 ticks)</td></tr> 55 This function converts milliseconds to ticks 58 ticks </dl> </td> 117 This function returns the tick frequency in ticks per second 120 ticks per second </dl> </td> 163 <td class="mdname1" valign="top" nowrap> <em>ticks</em> </td> 180 This function converts ticks to milliseconds
|
/external/v8/tools/ |
tickprocessor.py | 196 # Flag indicating whether to ignore unaccounted ticks in the report 254 # Add the library to the entries so that ticks for which we do not 400 print('Statistical profiling result from %s, (%d ticks, %d unaccounted, %d excluded).' % 409 # Print the unknown ticks percentage if they are not ignored. 413 # Print the library ticks. 416 # Print the JavaScript ticks. 419 # Print the C++ ticks. 422 # Print the GC ticks. 433 print(' ticks total nonlib name') 437 print(' %(ticks)5d %(total)5.1f%%' % [all...] |
/external/icu4c/test/cintltst/ |
utmstest.c | 352 int64_t ticks; member in struct:DotNetDateTimeTicks 358 * Console::WriteLine(L" {{ {0}, 1, 1, INT64_C({1}) }},", year, DateTime(year, 1, 1).Ticks); 362 /* year, month, day, ticks */ 450 int64_t ticks, millis; local 465 millis = utmscale_toInt64(dt->ticks, UDTS_ICU4C_TIME, &errorCode); 471 log_err("utmscale_toInt64(ticks[%d], ICU4C)=%dd != %dd=ucal_getMillis(%04d-%02d-%02d)\n", 476 ticks = utmscale_fromInt64((int64_t)icuDate, UDTS_ICU4C_TIME, &errorCode); 477 if(ticks != dt->ticks) { 478 /* Print days not ticks to stay within printf() range. * [all...] |
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/ |
Track.java | 106 * events in the Track must take up position in ascending ticks 119 * method Track.ticks() return the biggest value of tick of all events 145 * method Track.ticks() always return the biggest value that ever has been 146 * in the Track; so only when Track is empty Track.ticks() return 0 161 public long ticks() { method in class:Track
|