/external/qemu/distrib/sdl-1.2.15/src/timer/macos/ |
D | FastTimes.c | 224 UInt64 msec; in FastMilliseconds() local 233 msec = (double) WideTo64bit(wide) * gScaleMSec + 0.5; in FastMilliseconds() 238 msec = (double) WideTo64bit(wide) * gScaleMSec + 0.5; in FastMilliseconds() 243 msec = (double) WideTo64bit(wide) * gScaleMSec + 0.5; in FastMilliseconds() 248 msec = (double) RTCToNano(wide) * gScaleMSec + 0.5; in FastMilliseconds() 255 msec = ((double) WideTo64bit(wide) + 500.0) / 1000.0; in FastMilliseconds() 258 return(msec); in FastMilliseconds()
|
/external/chromium_org/v8/src/base/platform/ |
D | semaphore.cc | 182 int64_t msec = (end - now).InMilliseconds(); 183 if (msec >= static_cast<int64_t>(INFINITE)) { 192 native_handle_, (msec < 0) ? 0 : static_cast<DWORD>(msec));
|
D | condition-variable.cc | 297 int64_t msec = (end - now).InMilliseconds(); 298 if (msec >= static_cast<int64_t>(INFINITE)) { 305 result = event->WaitFor((msec < 0) ? 0 : static_cast<DWORD>(msec));
|
/external/chromium_org/tools/perf/benchmarks/ |
D | indexeddb_perf.py | 79 msec = float(result_dict[key]) 81 results.current_page, key, 'ms', msec, important=False)) 83 total += msec
|
/external/chromium_org/third_party/libxml/src/ |
D | testSAX.c | 119 long msec; in endTimer() local 123 msec = end.tv_sec - begin.tv_sec; in endTimer() 124 msec *= 1000; in endTimer() 125 msec += (end.tv_usec - begin.tv_usec) / 1000; in endTimer() 134 fprintf(stderr, " took %ld ms\n", msec); in endTimer() 155 long msec; in endTimer() local 159 msec = ((end - begin) * 1000) / CLOCKS_PER_SEC; in endTimer() 167 fprintf(stderr, " took %ld ms\n", msec); in endTimer() 191 fprintf(stderr, " was not timed\n", msec); in endTimer()
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
D | MonthInputType.cpp | 74 double msec = date.millisecondsSinceEpoch(); in valueAsDate() local 75 ASSERT(std::isfinite(msec)); in valueAsDate() 76 return msec; in valueAsDate()
|
D | BaseDateAndTimeInputType.cpp | 106 double msec = date.millisecondsSinceEpoch(); in parseToNumber() local 107 ASSERT(std::isfinite(msec)); in parseToNumber() 108 return Decimal::fromDouble(msec); in parseToNumber()
|
/external/blktrace/btt/ |
D | q2d.c | 38 long msec = (long)(q2d / 0.001); in q2d_histo_add() local 40 switch (msec) { in q2d_histo_add()
|
/external/libvpx/libvpx/vpx_mem/ |
D | vpx_mem.c | 402 static void vx_sleep(int msec) { in vx_sleep() argument 405 if (msec) { in vx_sleep() 408 if (msec < msec_per_tick) in vx_sleep() 411 ticks_to_sleep = msec / msec_per_tick; in vx_sleep()
|
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_mem/ |
D | vpx_mem.c | 403 static void vx_sleep(int msec) { in vx_sleep() argument 406 if (msec) { in vx_sleep() 409 if (msec < msec_per_tick) in vx_sleep() 412 ticks_to_sleep = msec / msec_per_tick; in vx_sleep()
|
/external/chromium_org/third_party/libevent/ |
D | poll.c | 138 int res, i, j, msec = -1, nfds; in poll_dispatch() local 144 msec = tv->tv_sec * 1000 + (tv->tv_usec + 999) / 1000; in poll_dispatch() 147 res = poll(pop->event_set, nfds, msec); in poll_dispatch()
|
/external/fio/ |
D | diskutil.c | 105 dus->s.msec += mtime_since(&du->time, &t); in update_io_tick_disk() 545 util = (double) (100 * dus->s.io_ticks / (double) slavedu->dus.s.msec); in aggregate_slaves_stats() 580 if (dus->s.msec) in print_disk_util() 581 util = (double) 100 * dus->s.io_ticks / (double) dus->s.msec; in print_disk_util() 620 if (dus->s.msec) in json_array_add_disk_util() 621 util = (double) 100 * dus->s.io_ticks / (double) dus->s.msec; in json_array_add_disk_util()
|
D | diskutil.h | 15 uint64_t msec; member
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
D | bandwidth_estimator.c | 165 int32_t msec; in WebRtcIsacfix_UpdateUplinkBwImpl() local 274 msec = (arrivalTime - bweStr->lastReduction); in WebRtcIsacfix_UpdateUplinkBwImpl() 278 if (msec > 208000) { in WebRtcIsacfix_UpdateUplinkBwImpl() 279 msec = 208000; in WebRtcIsacfix_UpdateUplinkBwImpl() 284 exponent = WEBRTC_SPL_UMUL(0x0000004C, msec); in WebRtcIsacfix_UpdateUplinkBwImpl()
|
/external/fio/examples/ |
D | latency-profile.fio | 13 # Set max acceptable latency to 500msec
|
/external/llvm/include/llvm/Support/ |
D | TimeValue.h | 233 uint64_t msec() const { in msec() function 314 void msec( int64_t milliseconds ) { in msec() function
|
/external/icu/icu4c/source/test/intltest/ |
D | tzrulets.h | 49 int32_t hour=0, int32_t min=0, int32_t sec=0, int32_t msec=0);
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
D | tzrulets.h | 49 int32_t hour=0, int32_t min=0, int32_t sec=0, int32_t msec=0);
|
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/ |
D | bandwidth_estimator.c | 165 WebRtc_Word32 msec; in WebRtcIsacfix_UpdateUplinkBwImpl() local 274 msec = (arrivalTime - bweStr->lastReduction); in WebRtcIsacfix_UpdateUplinkBwImpl() 278 if (msec > 208000) { in WebRtcIsacfix_UpdateUplinkBwImpl() 279 msec = 208000; in WebRtcIsacfix_UpdateUplinkBwImpl() 284 exponent = WEBRTC_SPL_UMUL(0x0000004C, msec); in WebRtcIsacfix_UpdateUplinkBwImpl()
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/ |
D | ContentVideoView.java | 414 protected void seekTo(int msec) { in seekTo() argument 416 nativeSeekTo(mNativeContentVideoView, msec); in seekTo() 549 private native void nativeSeekTo(long nativeContentVideoView, int msec); in nativeSeekTo() argument
|
/external/chromium_org/content/browser/android/ |
D | content_video_view.cc | 199 void ContentVideoView::SeekTo(JNIEnv*, jobject obj, jint msec) { in SeekTo() argument 200 manager_->FullscreenPlayerSeek(msec); in SeekTo()
|
D | content_video_view.h | 59 void SeekTo(JNIEnv*, jobject obj, jint msec);
|
/external/libnl/lib/ |
D | utils.c | 405 char * nl_msec2str(uint64_t msec, char *buf, size_t len) in nl_msec2str() argument 410 #define _SPLIT(idx, unit) if ((split[idx] = msec / unit) > 0) msec %= unit in nl_msec2str() 416 split[4] = msec; in nl_msec2str()
|
/external/tcpdump/ |
D | print-icmp.c | 321 u_int msec,sec,min,hrs; in icmp_tstamp_print() local 325 msec = tstamp % 1000; in icmp_tstamp_print() 329 snprintf(buf, sizeof(buf), "%02u:%02u:%02u.%03u",hrs,min,sec,msec); in icmp_tstamp_print()
|
/external/chromium_org/media/base/android/java/src/org/chromium/media/ |
D | MediaPlayerBridge.java | 136 protected void seekTo(int msec) throws IllegalStateException { in seekTo() argument 137 getLocalPlayer().seekTo(msec); in seekTo()
|