Searched refs:msec (Results 51 - 75 of 97) sorted by relevance

1234

/external/skqp/samplecode/
H A DSampleHT.cpp159 fTime = timer.msec();
H A DSampleSVGPong.cpp198 SkScalar dt = (timer.msec() - fLastTick) * fTimeScale;
199 fLastTick = timer.msec();
H A DSampleFilterQuality.cpp295 fCurrTime = timer.msec();
/external/libevent/
H A Devutil_time.c120 be any more finegrained than 1 msec.
129 long msec = evutil_tv_to_msec_(tv); local
130 Sleep((DWORD)msec);
255 provides a CLOCK_MONOTONIC_COARSE with accuracy of about 1-4 msec.
390 There's GetTickCount64() on Vista and later, which gives a number of 1-msec
391 ticks since startup. The accuracy here might be as bad as 10-20 msec, I
H A Dbufferevent_ratelim.c138 ev_uint64_t msec = (ev_uint64_t)tv->tv_sec * 1000 + tv->tv_usec / 1000; local
139 return (unsigned)(msec / cfg->msec_per_tick);
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/media/
H A DMediaPlayerFacade.java185 public synchronized int mediaPlaySeek(@RpcParameter(name = "msec", argument
187 Integer msec, @RpcParameter(name = "tag", description = "string identifying resource")
194 player.seekTo(msec);
/external/syslinux/com32/lua/src/
H A Dsyslinux.c265 /* sleep for msec milliseconds */
268 unsigned int msec = luaL_checkint(L, 1); local
269 msleep(msec);
/external/fio/
H A Ddiskutil.c109 dus->s.msec += mtime_since(&du->time, &t);
544 util = (double) (100 * dus->s.io_ticks / (double) slavedu->dus.s.msec);
579 if (dus->s.msec)
580 util = (double) 100 * dus->s.io_ticks / (double) dus->s.msec;
628 if (dus->s.msec)
629 util = (double) 100 * dus->s.io_ticks / (double) dus->s.msec;
H A Dgclient.c230 if (p->dus.s.msec)
231 util = (double) 100 * p->dus.s.io_ticks / (double) p->dus.s.msec;
995 base = "(msec)";
1115 base = "msec";
1200 label = new_info_label_in_frame(box, "Runtime (msec)");
H A Dio_u.c1033 static void io_u_mark_lat_msec(struct thread_data *td, unsigned long msec) argument
1037 switch (msec) {
/external/adhd/cras/src/server/
H A Dcras_bt_device.c559 unsigned int msec);
940 unsigned int msec)
946 NULL, msec);
1097 unsigned int msec)
1103 device->suspend_timer = cras_tm_create_timer(tm, msec,
939 cras_bt_device_schedule_suspend(struct cras_bt_device *device, unsigned int msec) argument
1096 bt_device_schedule_suspend(struct cras_bt_device *device, unsigned int msec) argument
/external/libnl/lib/
H A Dutils.c554 * @arg msec number of milliseconds
564 char * nl_msec2str(uint64_t msec, char *buf, size_t len) argument
568 static const char *units[5] = {"d", "h", "m", "s", "msec"};
571 if (msec == 0) {
572 snprintf(buf, len, "0msec");
576 #define _SPLIT(idx, unit) if ((split[idx] = msec / unit)) msec %= unit
582 split[4] = msec;
/external/iproute2/ip/
H A Dipntable.c313 static const char *ntable_strtime_delta(__u32 msec) argument
320 if (msec == 0)
328 t = now.tv_sec - (msec / 1000);
/external/tcpdump/
H A Dprint-icmp.c317 u_int msec,sec,min,hrs; local
321 msec = tstamp % 1000;
325 snprintf(buf, sizeof(buf), "%02u:%02u:%02u.%03u",hrs,min,sec,msec);
/external/skia/samplecode/
H A DSampleSVGPong.cpp198 SkScalar dt = (timer.msec() - fLastTick) * fTimeScale;
199 fLastTick = timer.msec();
H A DSampleFilterQuality.cpp295 fCurrTime = timer.msec();
/external/skia/tools/viewer/
H A DSlideDir.cpp351 fTimeBase = timer.msec();
354 const auto t = timer.msec() - fTimeBase;
/external/libcups/cups/
H A Dhttp-private.h450 extern int _httpWait(http_t *http, int msec, int usessl);
/external/libxml2/
H A Dxmllint.c439 long msec; local
443 msec = end.tv_sec - begin.tv_sec;
444 msec *= 1000;
445 msec += (end.tv_usec - begin.tv_usec) / 1000;
454 fprintf(stderr, " took %ld ms\n", msec);
475 long msec; local
479 msec = ((end - begin) * 1000) / CLOCKS_PER_SEC;
487 fprintf(stderr, " took %ld ms\n", msec);
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dkernel.cpp165 auto msec = find(type_equals(module::section::text_executable), m.secs); local
230 cs.prog = &(msec.data[0]);
/external/wpa_supplicant_8/wpa_supplicant/
H A Devents.c2119 unsigned int msec; local
2120 msec = wpa_s->sme.bss_max_idle_period * 1024; /* times 1000 */
2121 if (msec > 100)
2122 msec -= 100;
2123 eloop_register_timeout(msec / 1000, msec % 1000 * 1000,
2143 unsigned int msec; local
2154 /* msec times 1000 */
2155 msec = wpa_s->sme.bss_max_idle_period * 1024;
2156 if (msec > 10
[all...]
/external/adhd/cras/src/tests/
H A Da2dp_iodev_unittest.cc484 unsigned int msec)
483 cras_bt_device_schedule_suspend(struct cras_bt_device *device, unsigned int msec) argument
/external/python/cpython2/Lib/plat-sunos5/
H A DIN.py409 def MSEC_TO_TICK(msec): return \
411 def MSEC_TO_TICK_ROUNDUP(msec): return \
H A DSTROPTS.py406 def MSEC_TO_TICK(msec): return \
408 def MSEC_TO_TICK_ROUNDUP(msec): return \
/external/blktrace/
H A Dblkparse.c1772 unsigned long long rrate, wrate, msec; local
1840 msec = (pdi->last_reported_time - pdi->first_reported_time) / 1000000;
1841 if (msec) {
1842 rrate = 1000 * total.cread_kb / msec;
1843 wrate = 1000 * total.cwrite_kb / msec;

Completed in 3527 milliseconds

1234