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

1 2 3 4 5 6

  /toolchain/binutils/binutils-2.25/bfd/
coff-aux.c 112 asection *msec = t->u.def.section; local
115 if (bfd_is_abs_section (msec) && !bfd_is_abs_section (section))
121 else if (bfd_is_abs_section (section) && !bfd_is_abs_section (msec))
dwarf1.c 274 asection *msec; local
277 msec = bfd_get_section_by_name (stash->abfd, ".line");
278 if (! msec)
281 size = msec->rawsize ? msec->rawsize : msec->size;
284 (stash->abfd, msec, NULL, stash->syms);
472 asection *msec; local
481 msec = bfd_get_section_by_name (abfd, ".debug");
482 if (! msec)
    [all...]
elf32-d10v.c 450 asection *msec = sec; local
451 addend = _bfd_elf_rel_local_sym (output_bfd, sym, &msec,
454 addend += msec->output_section->vma + msec->output_offset;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_open/
23-1.c 60 int msec = 0; local
75 msec = (int)(20.0 * rand() / RAND_MAX);
76 ts.tv_nsec = msec * 1000000;
  /external/blktrace/btt/
q2d.c 38 long msec = (long)(q2d / 0.001); local
40 switch (msec) {
  /external/libevent/
poll.c 122 long msec = -1; local
158 msec = evutil_tv_to_msec(tv);
159 if (msec < 0 || msec > INT_MAX)
160 msec = INT_MAX;
165 res = poll(event_set, nfds, msec);
win32select.c 302 long msec = tv ? evutil_tv_to_msec(tv) : LONG_MAX; local
304 if (msec < 0)
305 msec = LONG_MAX;
307 Sleep(msec);
bufferevent_ratelim.c 137 ev_uint64_t msec = (ev_uint64_t)tv->tv_sec * 1000 + tv->tv_usec / 1000; local
138 return (unsigned)(msec / cfg->msec_per_tick);
  /external/skia/gm/
SkAnimTimer.h 67 * automatically, so that repeated calls to msec() or secs() will always return the
83 SkMSec msec() const { function in class:SkAnimTimer
84 const double msec = (fCurrTimeNanos - fBaseTimeNanos) * 1e-6; local
85 SkASSERT(SK_MSecMax >= msec);
86 return static_cast<SkMSec>(msec);
  /external/vboot_reference/firmware/lib/include/
vboot_audio_private.h 15 uint16_t msec; member in struct:VbDevMusicNote
  /external/libcups/cups/
testcups.c 64 int msec = 0; /* Timeout in milliseconds */ local
69 msec = (int)(atof(argv[i]) * 1000);
155 cupsEnumDests(CUPS_DEST_FLAGS_NONE, msec, NULL, type, mask, enum_cb, NULL);
  /external/libdrm/tests/modetest/
cursor.c 74 uint32_t msec; member in struct:cursor_step
164 usleep(1000 * step->msec);
  /external/vboot_reference/firmware/lib/
vboot_audio.c 48 static uint64_t VbMsecToTicks(uint16_t msec) {
49 return ticks_per_msec * msec;
141 this_msecs = hdr->notes[i].msec ;
184 notebuf[hdr->count].msec = this_msecs;
260 uint16_t msec = 0; local
267 msec = audio->music_notes[audio->next_note].msec;
268 audio->play_until += VbMsecToTicks(msec);
283 } else if (freq && msec) {
284 VbExBeep(msec, freq)
    [all...]
  /frameworks/av/cmds/screenrecord/
Overlay.cpp 273 int32_t msec = (int32_t) ((realTime % 1000000000) / 1000000); local
275 snprintf(tmpBuf, sizeof(tmpBuf), ".%03d", msec);
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
res_send.c 560 int msec; local
671 msec = (_res.retrans << try) * 1000;
673 msec /= _res.nscount;
674 if (msec <= 0)
675 msec = 1000;
706 n = poll(&pfd, 1, msec);
  /external/fio/
diskutil.h 15 uint64_t msec; member in struct:disk_util_stats
  /external/llvm/include/llvm/Support/
TimeValue.h 243 uint64_t msec() const { function in class:llvm::sys::TimeValue
324 void msec( int64_t milliseconds ) { function in class:llvm::sys::TimeValue
  /external/skia/src/pdf/
SkPDFMetadata.cpp 76 double msec = SkTime::GetMSecs(); local
77 md5.write(&msec, sizeof(msec));
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
TimeValue.h 234 uint64_t msec() const { function in class:llvm::sys::TimeValue
323 void msec( int64_t milliseconds ) { function in class:llvm::sys::TimeValue
  /external/vboot_reference/tests/
vboot_api_devmode_tests.c 33 uint16_t msec; member in struct:__anon36496
231 VBDEBUG((" VbExKeyboardRead() - returning %d at %d msec\n",
237 VBDEBUG((" VbExKeyboardRead() - returning %d at %d msec\n",
242 void VbExSleepMs(uint32_t msec) {
243 current_ticks += (uint64_t)msec * TICKS_PER_MSEC;
245 VBDEBUG(("VbExSleepMs(%d) -> %d\n", msec, current_time));
252 VbError_t VbExBeep(uint32_t msec, uint32_t frequency) {
253 VBDEBUG(("VbExBeep(%d, %d) at %d msec\n", msec, frequency, current_time));
256 msec == expected_event[current_event].msec &
    [all...]
  /frameworks/wilhelm/src/android/
android_GenericMediaPlayer.cpp 286 // msec != NULL
288 // *msec ==
291 void GenericMediaPlayer::getPositionMsec(int* msec) {
296 if (player == 0 || player->getCurrentPosition(msec) != NO_ERROR) {
297 *msec = ANDROID_UNKNOWN_TIME;
567 int msec = 0; local
568 if (OK == mPlayer->getDuration(&msec)) {
570 mDurationMsec = msec;
  /external/libxml2/
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);
  /external/syslinux/com32/lua/src/
syslinux.c 265 /* sleep for msec milliseconds */
268 unsigned int msec = luaL_checkint(L, 1); local
269 msleep(msec);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
bandwidth_estimator.c 42 * 8 bits/byte * 1000 msec/sec * 1/framelength (in msec)->bits/byte*sec
43 * frame length will either be 30 or 60 msec. 8738 is 1/60 in Q19 and 1/30 in Q18
61 /* Number of samples in 25 msec */
169 int32_t msec; local
251 /* Calculate framesize in msec */
280 msec = (arrivalTime - bweStr->lastReduction);
284 if (msec > 208000) {
285 msec = 208000;
290 exponent = WEBRTC_SPL_UMUL(0x0000004C, msec);
    [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);

Completed in 3896 milliseconds

1 2 3 4 5 6