Searched defs:ms (Results 1 - 8 of 8) sorted by relevance

/hardware/qcom/camera/msm8998/QCamera2/stack/mm-camera-test/src/
H A Dcam_semaphore_tests.cpp27 //10 ms is about standard timer resolution for most non-RTOS.
30 static inline void timespec_add_ms(timespec& ts, size_t ms) { argument
31 ts.tv_sec += ms / 1000;
32 ts.tv_nsec += (ms % 1000) * 1000000;
/hardware/akm/AK8975_FS/libsensors/
H A DKionixSensor.cpp127 int ms; local
136 ms = delay_ns / 1000000;
137 if (ioctl(dev_fd, KIONIX_IOCTL_UPDATE_ODR, &ms)) {
/hardware/qcom/display/msm8909/sdm/include/utils/
H A Dlocker.h142 int WaitFinite(int ms) { argument
146 ts.tv_sec = tv.tv_sec + ms/1000;
147 ts.tv_nsec = tv.tv_usec*1000 + (ms%1000)*1000000;
/hardware/qcom/display/msm8909w_3100/sdm/include/utils/
H A Dlocker.h142 int WaitFinite(int ms) { argument
146 ts.tv_sec = tv.tv_sec + ms/1000;
147 ts.tv_nsec = tv.tv_usec*1000 + (ms%1000)*1000000;
/hardware/qcom/display/msm8996/sdm/include/utils/
H A Dlocker.h142 int WaitFinite(int ms) { argument
146 ts.tv_sec = tv.tv_sec + ms/1000;
147 ts.tv_nsec = tv.tv_usec*1000 + (ms%1000)*1000000;
/hardware/qcom/display/msm8998/sdm/include/utils/
H A Dlocker.h142 int WaitFinite(int ms) { argument
146 ts.tv_sec = tv.tv_sec + ms/1000;
147 ts.tv_nsec = tv.tv_usec*1000 + (ms%1000)*1000000;
/hardware/qcom/camera/msm8998/usbcamcore/src/
H A DQCameraMjpegDecode.cpp130 static int mjpegd_cond_timedwait(pthread_cond_t *p_cond, pthread_mutex_t *p_mutex, uint32_t ms);
485 ALOGI("%s: decoder_test: decoding aborted successfully after %d ms", __func__, diff);
491 "decode time: %d ms", __func__, diff);
497 ALOGI("%s: decode time: %d ms (%d frame(s), total=%dms, avg=%dms/frame)",
681 int mjpegd_cond_timedwait(pthread_cond_t *p_cond, pthread_mutex_t *p_mutex, uint32_t ms) argument
687 if (ms >= 1000) {
688 ts.tv_sec += (ms/1000);
689 ts.tv_nsec += ((ms%1000) * 1000000);
691 ts.tv_nsec += (ms * 1000000);
/hardware/broadcom/wlan/bcmdhd/dhdutil/
H A Dbcmutils.c1089 bcm_mdelay(uint ms) argument
1093 for (i = 0; i < ms; i++) {

Completed in 225 milliseconds