Searched refs:ms (Results 176 - 200 of 526) sorted by relevance

1234567891011>>

/external/chromium_org/ui/file_manager/file_manager/foreground/css/
H A Dshare_dialog.css16 transition: height 200ms ease-out;
/external/chromium_org/v8/src/
H A Dsnapshot-common.cc40 double ms = timer.Elapsed().InMillisecondsF(); local
41 PrintF("[Snapshot loading and deserialization took %0.3f ms]\n", ms);
/external/javassist/src/main/javassist/tools/reflect/
H A DReflection.java278 CtMethod[] ms = clazz.getMethods();
279 for (int i = 0; i < ms.length; ++i) {
280 CtMethod m = ms[i];
342 CtMethod[] ms = m.getDeclaringClass().getDeclaredMethods();
343 for (int i = 0; i < ms.length; ++i) {
344 String orgName = ms[i].getName();
347 && ms[i].getSignature().equals(m.getSignature()))
348 return ms[i];
/external/qemu/distrib/sdl-1.2.15/src/timer/win32/
H A DSDL_systimer.c67 timeBeginPeriod(1); /* use 1 ms timer precision */
107 void SDL_Delay(Uint32 ms) argument
109 Sleep(ms);
129 SDL_SetError("Warning: Can't set %d ms timer resolution",
132 /* Allow 10 ms of drift so we don't chew on CPU */
/external/qemu/distrib/sdl-1.2.15/src/timer/wince/
H A DSDL_systimer.c53 ftime.itime/=10000; // Convert 100ns intervals to 1ms intervals
54 // Remove ms portion, which can't be relied on
69 /* Return time in ms relative to when SDL was started */
83 void SDL_Delay(Uint32 ms) argument
85 Sleep(ms);
165 SDL_SetError("Warning: Can't set %d ms timer resolution",
168 /* Allow 10 ms of drift so we don't chew on CPU */
/external/skia/platform_tools/android/app/src/com/skia/
H A DSkiaSampleRenderer.java61 private void startTimer(int ms) { argument
74 }, ms);
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Dtick_util.h11 // System independant wrapper for polling elapsed time in ms and us.
46 // Now in the time domain in ms.
55 static int64_t MillisecondsToTicks(const int64_t ms);
204 inline int64_t TickTime::MillisecondsToTicks(const int64_t ms) { argument
209 return (qpfreq.QuadPart * ms) / 1000;
211 return ms;
214 return ms * 1000000LL;
216 return ms * 1000LL;
255 // interval_ is in ms
274 // interval_ is in ms
[all...]
/external/javassist/sample/evolve/
H A DEvolution.java143 CtMethod[] ms = clazz.getDeclaredMethods();
144 for (i = 0; i < ms.length; ++i) {
145 CtMethod m = ms[i];
185 CtMethod[] ms = clazz.getDeclaredMethods();
186 for (i = 0; i < ms.length; ++i)
187 ms[i].instrument(converter);
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dhist.c79 if (h->ms.sym) {
80 symlen = h->ms.sym->namelen + 4;
94 if (h->ms.map) {
95 len = dso__name_len(h->ms.map->dso);
284 if (he->ms.map)
285 he->ms.map->referenced = true;
380 if (he->ms.map != entry->ms.map) {
381 he->ms.map = entry->ms
[all...]
/external/webrtc/src/system_wrappers/interface/
H A Dtick_util.h11 // System independant wrapper for polling elapsed time in ms and us.
41 // Now in the time domain in ms.
49 static WebRtc_Word64 MillisecondsToTicks(const WebRtc_Word64 ms);
242 inline WebRtc_Word64 TickTime::MillisecondsToTicks(const WebRtc_Word64 ms) argument
248 return (qpfreq.QuadPart * ms) / 1000;
250 return ms;
253 return ms * 1000000LL;
255 return ms * 1000LL;
299 // _interval is in ms
319 // _interval is in ms
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/browsers/
H A Dhists.c56 static char map_symbol__folded(const struct map_symbol *ms) argument
58 return ms->has_children ? tree__folded_sign(ms->unfolded) : ' ';
63 return map_symbol__folded(&he->ms);
68 return map_symbol__folded(&cl->ms);
71 static void map_symbol__set_folding(struct map_symbol *ms, bool unfold) argument
73 ms->unfolded = unfold ? ms->has_children : false;
109 unfolded = chain->ms.unfolded;
131 static bool map_symbol__toggle_fold(struct map_symbol *ms) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
H A Dnv50_miptree.c40 const unsigned ms = mt->ms_x + mt->ms_y; local
51 tile_flags = 0x6c + ms;
54 tile_flags = 0x18 + ms;
58 tile_flags = 0x128 + ms;
61 tile_flags = 0x40 + ms;
64 tile_flags = 0x60 + ms;
69 assert(ms < 3);
73 switch (ms) {
83 assert(ms == 0);
86 switch (ms) {
[all...]
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_miptree.c40 const unsigned ms = mt->ms_x + mt->ms_y; local
51 tile_flags = 0x6c + ms;
54 tile_flags = 0x18 + ms;
58 tile_flags = 0x128 + ms;
61 tile_flags = 0x40 + ms;
64 tile_flags = 0x60 + ms;
69 assert(ms < 3);
73 switch (ms) {
83 assert(ms == 0);
86 switch (ms) {
[all...]
/external/qemu/util/
H A Dqemu-thread-posix.c196 static void compute_abs_deadline(struct timespec *ts, int ms) argument
200 ts->tv_nsec = tv.tv_usec * 1000 + (ms % 1000) * 1000000;
201 ts->tv_sec = tv.tv_sec + ms / 1000;
208 int qemu_sem_timedwait(QemuSemaphore *sem, int ms) argument
215 compute_abs_deadline(&ts, ms);
232 if (ms <= 0) {
241 compute_abs_deadline(&ts, ms);
/external/chromium_org/third_party/skia/bench/
H A Dnanobench.cpp74 static SkString humanize(double ms) { argument
75 if (FLAGS_verbose) return SkStringPrintf("%llu", (uint64_t)(ms*1e6));
76 if (ms > 1e+3) return SkStringPrintf("%.3gs", ms/1e3);
77 if (ms < 1e-3) return SkStringPrintf("%.3gns", ms*1e6);
79 if (ms < 1) return SkStringPrintf("%.3gus", ms*1e3);
81 if (ms < 1) return SkStringPrintf("%.3gµs", ms*
[all...]
/external/valgrind/main/none/tests/s390x/
H A Dmul.stdout.exp78 ms 0000000000000000 * 0000000000000000 = 00000000000000000000000000000000
79 ms 0000000000000001 * 0000000000000000 = 00000000000000000000000000000001
80 ms 000000000000FFFF * 0000000000000000 = 0000000000000000000000000000FFFF
81 ms 0000000000007FFF * 0000000000000000 = 00000000000000000000000000007FFF
82 ms 0000000000008000 * 0000000000000000 = 00000000000000000000000000008000
83 ms 00000000FFFFFFFF * 0000000000000000 = 000000000000000000000000FFFFFFFF
84 ms 0000000080000000 * 0000000000000000 = 00000000000000000000000080000000
85 ms 000000007FFFFFFF * 0000000000000000 = 0000000000000000000000007FFFFFFF
86 ms FFFFFFFFFFFFFFFF * 0000000000000000 = FFFFFFFF00000000FFFFFFFFFFFFFFFF
87 ms 800000000000000
[all...]
/external/arduino/hardware/arduino/cores/arduino/
H A Dwiring.c105 void delay(unsigned long ms) argument
109 while (ms > 0) {
111 ms--;
/external/chromium_org/components/pairing/
H A Dfake_host_pairing_controller.cc47 int ms = 0; local
48 CHECK(base::StringToInt(dict["async_duration"], &ms))
50 async_duration_ = base::TimeDelta::FromMilliseconds(ms);
/external/chromium_org/native_client_sdk/src/build_tools/
H A Deasy_template.py35 ms = list(expr_re.finditer(line))
36 if ms:
40 for m in ms:
/external/chromium_org/tools/traceline/svgui/
H A Dtraceline.js78 this.ms = e['ms'];
89 var res = "<b>ms:</b> " + this.ms + " " +
98 res += "<b>duration:</b> " + (this.e['done'] - this.ms) + "<br/>";
244 var end_ms = e.done ? e.done : e.ms;
245 var new_thread = new TLThread(e.thread, e.ms, end_ms);
254 var end_ms = e.done ? e.done : e.ms;
365 'Scene render of ' + count + ' nodes took: ' + total + ' ms';
573 eparent.ms, eparen
[all...]
/external/qemu/distrib/sdl-1.2.15/src/timer/os2/
H A DSDL_systimer.c94 DECLSPEC void SDLCALL SDL_Delay(Uint32 ms) argument
96 /* This is similar to DosSleep(), but has 8ms granularity in time-critical
114 if (ms >= switch_priority)
122 /* In Warp3, to switch scheduling to 8ms step, one needs to do
144 if ((badrc = DosAsyncTimer(ms,
/external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/css/
H A Doverlay.css10 -webkit-transition: 200ms opacity;
33 -webkit-transition: 200ms -webkit-transform;
66 -webkit-animation-duration: 180ms;
/external/e2fsprogs/lib/blkid/
H A Dprobe.c517 struct msdos_super_block *ms = (struct msdos_super_block *) buf; local
528 tmp = (unsigned char *)&ms->ms_sector_size;
534 tmp = (unsigned char *)&ms->ms_dir_entries;
536 reserved = blkid_le16(ms->ms_reserved);
537 tmp = (unsigned char *)&ms->ms_sectors;
540 sect_count = blkid_le32(ms->ms_total_sect);
542 fat_length = blkid_le16(ms->ms_fat_length);
546 fat_size = fat_length * ms->ms_fats;
551 if (ms->ms_cluster_size == 0)
553 cluster_count /= ms
643 struct msdos_super_block *ms; local
[all...]
/external/chromium_org/base/time/
H A Dtime.h68 static TimeDelta FromMilliseconds(int64 ms);
70 static TimeDelta FromMillisecondsD(double ms);
339 // constant of ~15.6ms. While it does vary on some older OS versions, we'll
529 inline TimeDelta TimeDelta::FromMilliseconds(int64 ms) { argument
531 if (ms == std::numeric_limits<int64>::max())
533 return TimeDelta(ms * Time::kMicrosecondsPerMillisecond);
545 inline TimeDelta TimeDelta::FromMillisecondsD(double ms) { argument
547 if (ms == std::numeric_limits<double>::infinity())
549 return TimeDelta(ms * Time::kMicrosecondsPerMillisecond);
580 // The resolution of this clock is ~1-15ms
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Doobe_screen.css14 -webkit-transition: -webkit-transform 200ms ease-in-out,
15 opacity 200ms ease-in-out,
16 visibility 200ms ease-in-out;
125 -webkit-transition: outline-color 200ms;

Completed in 696 milliseconds

1234567891011>>