/external/srec/portable/src/ |
D | ptimestamp.c | 32 timestamp->msecs = 0; in PTimeStampSet() 40 timestamp->msecs = now.millitm; in PTimeStampSet() 45 timestamp->msecs = now.tv_nsec / MSECOND2NSECOND; in PTimeStampSet() 55 return (a->secs - b->secs) * 1000 + a->msecs - b->msecs; in PTimeStampDiff()
|
D | plog.c | 321 psprintf(timeStr + (TIME_BUF_SIZE - 5), ".%03hu", now.msecs); in logIt()
|
/external/qemu/ |
D | qemu-thread.c | 51 static void timespec_add_ms(struct timespec *ts, uint64_t msecs) in timespec_add_ms() argument 53 ts->tv_sec = ts->tv_sec + (long)(msecs / 1000); in timespec_add_ms() 54 ts->tv_nsec = (ts->tv_nsec + ((long)msecs % 1000) * 1000000); in timespec_add_ms() 61 int qemu_mutex_timedlock(QemuMutex *mutex, uint64_t msecs) in qemu_mutex_timedlock() argument 67 timespec_add_ms(&ts, msecs); in qemu_mutex_timedlock() 120 int qemu_cond_timedwait(QemuCond *cond, QemuMutex *mutex, uint64_t msecs) in qemu_cond_timedwait() argument 126 timespec_add_ms(&ts, msecs); in qemu_cond_timedwait()
|
D | qemu-thread.h | 25 int qemu_mutex_timedlock(QemuMutex *mutex, uint64_t msecs); 32 int qemu_cond_timedwait(QemuCond *cond, QemuMutex *mutex, uint64_t msecs);
|
D | vl.c | 4048 static void qemu_signal_lock(unsigned int msecs) in qemu_signal_lock() argument 4054 if (!qemu_mutex_timedlock(&qemu_global_mutex, msecs)) in qemu_signal_lock()
|
D | vl-android.c | 3973 static void qemu_signal_lock(unsigned int msecs) in qemu_signal_lock() argument 3979 if (!qemu_mutex_timedlock(&qemu_global_mutex, msecs)) in qemu_signal_lock()
|
/external/ppp/pppd/plugins/radius/ |
D | util.c | 54 void rc_mdelay(int msecs) in rc_mdelay() argument 58 tv.tv_sec = (int) msecs / 1000; in rc_mdelay() 59 tv.tv_usec = (msecs % 1000) * 1000; in rc_mdelay()
|
/external/kernel-headers/original/linux/ |
D | delay.h | 39 void msleep(unsigned int msecs); 40 unsigned long msleep_interruptible(unsigned int msecs);
|
/external/sonivox/jet_tools/JetCreator/ |
D | eas.py | 406 msecs = c_int(0) 408 result = eas_dll.EAS_GetLocation(self.eas.handle, self.handle, byref(msecs)) 411 msecs = float(msecs.value) / 1000 412 eas_logger.debug('EAS_GetLocation: location=%.3f' % msecs) 413 return msecs 806 msecs = c_int(0) 808 result = eas_dll.EAS_GetRenderTime(self.handle, byref(msecs)) 811 msecs = float(msecs.value) / 1000 812 eas_logger.debug('EAS_GetRenderTime: time=%.3f' % msecs) 813 return msecs
|
/external/sonivox/arm-hybrid-22k/lib_src/ |
D | eas_imaadpcm.c | 285 EAS_I32 secs, msecs; in IMADecoderLocate() local 307 msecs = time - (secs * 1000); in IMADecoderLocate() 310 temp = (msecs * pState->sampleRate); in IMADecoderLocate()
|
D | eas_pcm.c | 1358 EAS_I32 secs, msecs; in LinearPCMLocate() local 1371 msecs = time - (secs * 1000); in LinearPCMLocate() 1374 temp = (msecs * pState->sampleRate); in LinearPCMLocate()
|
/external/sonivox/arm-wt-22k/lib_src/ |
D | eas_imaadpcm.c | 285 EAS_I32 secs, msecs; in IMADecoderLocate() local 307 msecs = time - (secs * 1000); in IMADecoderLocate() 310 temp = (msecs * pState->sampleRate); in IMADecoderLocate()
|
D | eas_pcm.c | 1358 EAS_I32 secs, msecs; in LinearPCMLocate() local 1371 msecs = time - (secs * 1000); in LinearPCMLocate() 1374 temp = (msecs * pState->sampleRate); in LinearPCMLocate()
|
/external/sonivox/arm-fm-22k/lib_src/ |
D | eas_imaadpcm.c | 285 EAS_I32 secs, msecs; in IMADecoderLocate() local 307 msecs = time - (secs * 1000); in IMADecoderLocate() 310 temp = (msecs * pState->sampleRate); in IMADecoderLocate()
|
D | eas_pcm.c | 1358 EAS_I32 secs, msecs; in LinearPCMLocate() local 1371 msecs = time - (secs * 1000); in LinearPCMLocate() 1374 temp = (msecs * pState->sampleRate); in LinearPCMLocate()
|
/external/srec/portable/include/ |
D | ptimestamp.h | 50 asr_uint16_t msecs; member
|
/external/webkit/WebKit/qt/QGVLauncher/ |
D | main.cpp | 221 int msecs = m_startTime.msecsTo(now); in printFps() local 224 int curFps = msecs ? m_numPaintsSinceLastMeasure * 1000 / msecs : 0; in printFps()
|
/external/iproute2/misc/ |
D | ss.c | 397 int secs, msecs, minutes; in print_ms_timer() local 403 msecs = timeout%1000; in print_ms_timer() 406 msecs = 0; in print_ms_timer() 413 msecs = 0; in print_ms_timer() 414 sprintf(buf+strlen(buf), "%d%s", secs, msecs ? "." : "sec"); in print_ms_timer() 416 if (msecs) in print_ms_timer() 417 sprintf(buf+strlen(buf), "%03dms", msecs); in print_ms_timer()
|
/external/dhcpcd/ |
D | client.c | 754 int i, r, nfds = 0, msecs = -1; in wait_for_fd() local 817 msecs = INT_MAX; in wait_for_fd() 819 msecs = ref->tv_sec * 1000 + in wait_for_fd() 822 msecs = -1; in wait_for_fd() 823 r = poll(fds, nfds, msecs); in wait_for_fd()
|
/external/netperf/ |
D | netlib.h | 515 extern int msec_sleep( int msecs );
|
D | netlib.c | 3327 msec_sleep( int msecs ) in msec_sleep() argument 3333 timeout.tv_sec = msecs / 1000; in msec_sleep() 3334 timeout.tv_usec = (msecs - (msecs/1000) *1000) * 1000; in msec_sleep()
|
/external/srec/srec/EventLog/src/ |
D | EventLogImpl.c | 482 ct->tm_min, ct->tm_sec, timestamp.msecs); in logIt()
|
/external/bluetooth/glib/glib/ |
D | gmain.c | 3110 guint msecs = timeout_source->interval - seconds * 1000; in g_timeout_set_expiration() local 3113 timeout_source->expiration.tv_usec = current_time->tv_usec + msecs * 1000; in g_timeout_set_expiration()
|
/external/bluetooth/bluez/ |
D | ChangeLog | 936 Sleep only 100 msecs for device detection.
|
/external/bluetooth/glib/ |
D | ChangeLog.pre-2-0 | 5978 data->interval msecs.
|