HomeSort by relevance Sort by last modified time
    Searched defs:msec (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/blktrace/btt/
q2d.c 38 long msec = (long)(q2d / 0.001); local
40 switch (msec) {
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
MonthInputType.cpp 74 double msec = date.millisecondsSinceEpoch(); local
75 ASSERT(std::isfinite(msec));
76 return msec;
BaseDateAndTimeInputType.cpp 110 double msec = date.millisecondsSinceEpoch(); local
111 ASSERT(std::isfinite(msec));
112 return Decimal::fromDouble(msec);
  /external/chromium_org/third_party/libevent/
poll.c 138 int res, i, j, msec = -1, nfds; local
144 msec = tv->tv_sec * 1000 + (tv->tv_usec + 999) / 1000;
147 res = poll(pop->event_set, nfds, msec);
  /external/qemu/distrib/sdl-1.2.15/src/timer/macos/
FastTimes.c 90 static double gScaleMSec = 1.0 / 1000000.0; /* 1 / ( nsec / msec) */
224 UInt64 msec; local
233 msec = (double) WideTo64bit(wide) * gScaleMSec + 0.5;
238 msec = (double) WideTo64bit(wide) * gScaleMSec + 0.5;
243 msec = (double) WideTo64bit(wide) * gScaleMSec + 0.5;
248 msec = (double) RTCToNano(wide) * gScaleMSec + 0.5;
255 msec = ((double) WideTo64bit(wide) + 500.0) / 1000.0;
258 return(msec);
  /frameworks/av/cmds/screenrecord/
Overlay.cpp 270 int32_t msec = (int32_t) ((realTime % 1000000000) / 1000000); local
272 snprintf(tmpBuf, sizeof(tmpBuf), ".%03d", msec);
  /external/fio/
diskutil.h 15 uint64_t msec; member in struct:disk_util_stats
  /external/llvm/include/llvm/Support/
TimeValue.h 233 uint64_t msec() const { function in class:llvm::sys::TimeValue
314 void msec( int64_t milliseconds ) { function in class:llvm::sys::TimeValue
  /frameworks/wilhelm/src/android/
android_GenericMediaPlayer.cpp 283 // msec != NULL
285 // *msec ==
288 void GenericMediaPlayer::getPositionMsec(int* msec) {
293 if (player == 0 || player->getCurrentPosition(msec) != NO_ERROR) {
294 *msec = ANDROID_UNKNOWN_TIME;
564 int msec = 0; local
565 if (OK == mPlayer->getDuration(&msec)) {
567 mDurationMsec = msec;
  /external/chromium_org/third_party/libxml/src/
testSAX.c 119 long msec; local
123 msec = end.tv_sec - begin.tv_sec;
124 msec *= 1000;
125 msec += (end.tv_usec - begin.tv_usec) / 1000;
134 fprintf(stderr, " took %ld ms\n", msec);
155 long msec; local
159 msec = ((end - begin) * 1000) / CLOCKS_PER_SEC;
167 fprintf(stderr, " took %ld ms\n", msec);
191 fprintf(stderr, " was not timed\n", msec);
xmllint.c 450 long msec; local
454 msec = end.tv_sec - begin.tv_sec;
455 msec *= 1000;
456 msec += (end.tv_usec - begin.tv_usec) / 1000;
465 fprintf(stderr, " took %ld ms\n", msec);
486 long msec; local
490 msec = ((end - begin) * 1000) / CLOCKS_PER_SEC;
498 fprintf(stderr, " took %ld ms\n", msec);
522 fprintf(stderr, " was not timed\n", msec);
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
bandwidth_estimator.c 40 * 8 bits/byte * 1000 msec/sec * 1/framelength (in msec)->bits/byte*sec
41 * frame length will either be 30 or 60 msec. 8738 is 1/60 in Q19 and 1/30 in Q18
59 /* Number of samples in 25 msec */
165 int32_t msec; local
245 /* Calculate framesize in msec */
274 msec = (arrivalTime - bweStr->lastReduction);
278 if (msec > 208000) {
279 msec = 208000;
284 exponent = WEBRTC_SPL_UMUL(0x0000004C, msec);
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
bandwidth_estimator.c 40 * 8 bits/byte * 1000 msec/sec * 1/framelength (in msec)->bits/byte*sec
41 * frame length will either be 30 or 60 msec. 8738 is 1/60 in Q19 and 1/30 in Q18
59 /* Number of samples in 25 msec */
165 WebRtc_Word32 msec; local
245 /* Calculate framesize in msec */
274 msec = (arrivalTime - bweStr->lastReduction);
278 if (msec > 208000) {
279 msec = 208000;
284 exponent = WEBRTC_SPL_UMUL(0x0000004C, msec);
    [all...]
  /frameworks/av/media/libmedia/
IMediaPlayer.cpp 175 status_t seekTo(int msec)
179 data.writeInt32(msec);
184 status_t getCurrentPosition(int* msec)
189 *msec = reply.readInt32();
193 status_t getDuration(int* msec)
198 *msec = reply.readInt32();
441 int msec; local
442 status_t ret = getCurrentPosition(&msec);
443 reply->writeInt32(msec);
449 int msec; local
    [all...]
  /frameworks/wilhelm/tests/examples/
slesTestDecodeToBuffQueue.cpp 152 SLmillisecond msec; local
153 result = (*caller)->GetPosition(caller, &msec);
157 fprintf(stdout, "SL_PLAYEVENT_HEADATEND current position=%u ms\n", msec);
162 fprintf(stdout, "SL_PLAYEVENT_HEADATNEWPOS current position=%u ms\n", msec);
166 fprintf(stdout, "SL_PLAYEVENT_HEADATMARKER current position=%u ms\n", msec);
181 SLmillisecond msec; local
182 SLresult result = (*pCntxt->playItf)->GetPosition(pCntxt->playItf, &msec);
184 printf("DecPlayCallback called (iteration %d): current position=%u ms\n", counter, msec);
  /frameworks/base/media/jni/
android_media_MediaPlayer.cpp 405 android_media_MediaPlayer_seekTo(JNIEnv *env, jobject thiz, jint msec)
412 ALOGV("seekTo: %d(msec)", msec);
413 process_media_player_call( env, thiz, mp->seekTo(msec), NULL, NULL );
459 int msec; local
460 process_media_player_call( env, thiz, mp->getCurrentPosition(&msec), NULL, NULL );
461 ALOGV("getCurrentPosition: %d (msec)", msec);
462 return (jint) msec;
473 int msec; local
    [all...]
  /external/tcpdump/
print-icmp.c 321 u_int msec,sec,min,hrs; local
325 msec = tstamp % 1000;
329 snprintf(buf, sizeof(buf), "%02u:%02u:%02u.%03u",hrs,min,sec,msec);
  /external/wpa_supplicant_8/wpa_supplicant/
events.c 1560 unsigned int msec; local
1584 unsigned int msec; local
    [all...]
  /external/libxml2/
xmllint.c 455 long msec; local
459 msec = end.tv_sec - begin.tv_sec;
460 msec *= 1000;
461 msec += (end.tv_usec - begin.tv_usec) / 1000;
470 fprintf(stderr, " took %ld ms\n", msec);
491 long msec; local
495 msec = ((end - begin) * 1000) / CLOCKS_PER_SEC;
503 fprintf(stderr, " took %ld ms\n", msec);
    [all...]
  /development/ndk/platforms/android-9/arch-mips/include/asm/
sgiarcs.h 145 unsigned short msec; member in struct:linux_tinfo
  /external/blktrace/
blkparse.c 1772 unsigned long long rrate, wrate, msec; local
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
calregts.cpp 674 int32_t msec = cal->get(UCAL_MILLISECOND, status); local
675 double firstMillisInDay = hr * 3600000 + min * 60000 + sec * 1000 + msec;
685 msec = cal->get(UCAL_MILLISECOND, status);
686 double millisInDay = hr * 3600000.0 + min * 60000.0 + sec * 1000.0 + msec;
    [all...]
  /external/icu/icu4c/source/test/intltest/
calregts.cpp 719 int32_t msec = cal->get(UCAL_MILLISECOND, status); local
720 double firstMillisInDay = hr * 3600000 + min * 60000 + sec * 1000 + msec;
730 msec = cal->get(UCAL_MILLISECOND, status);
731 double millisInDay = hr * 3600000.0 + min * 60000.0 + sec * 1000.0 + msec;
    [all...]
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
sgiarcs.h 145 unsigned short msec; member in struct:linux_tinfo
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/
sgiarcs.h 145 unsigned short msec; member in struct:linux_tinfo

Completed in 1225 milliseconds

1 2 3