HomeSort by relevance Sort by last modified time
    Searched full:usecs (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/kernel-headers/original/asm-x86/
delay.h 14 extern void __udelay(unsigned long usecs);
16 extern void __const_udelay(unsigned long usecs);
  /external/chromium/base/synchronization/
condition_variable_posix.cc 43 int64 usecs = max_time.InMicroseconds(); local
50 abstime.tv_sec = now.tv_sec + (usecs / Time::kMicrosecondsPerSecond);
51 abstime.tv_nsec = (now.tv_usec + (usecs % Time::kMicrosecondsPerSecond)) *
  /frameworks/base/include/media/stagefright/
MetaData.h 57 kKeyTime = 'time', // int64_t (usecs)
58 kKeyDecodingTime = 'decT', // int64_t (decoding timestamp in usecs)
60 kKeyTargetTime = 'tarT', // int64_t (usecs)
61 kKeyDriftTime = 'dftT', // int64_t (usecs)
62 kKeyAnchorTime = 'ancT', // int64_t (usecs)
63 kKeyDuration = 'dura', // int64_t (usecs)
69 kKeyThumbnailTime = 'thbT', // int64_t (usecs)
  /external/netperf/
hist.h 18 0 - 9 in increments of 10 usecs
19 0 - 9 in increments of 100 usecs
  /hardware/invensense/mlsdk/platform/include/
mlos.h 97 static inline void udelay(unsigned long usecs)
99 inv_sleep((usecs + 999) / 1000);
  /bootable/bootloader/legacy/arch_msm7k/
clock.c 114 void udelay(unsigned usecs)
116 usecs = (usecs * 33 + 1000 - 33) / 1000;
123 while(readl(GPT_COUNT_VAL) < usecs) ;
  /external/kernel-headers/original/asm-arm/
delay.h 32 extern void __udelay(unsigned long usecs);
  /external/quake/quake/src/WinQuake/
dosisms.h 93 void dos_usleep(int usecs);
dos_v2.cpp 226 void dos_usleep(int usecs)
228 usleep(usecs);
  /external/iproute2/ip/
ipmonitor.c 91 long usecs = ((__u32*)NLMSG_DATA(n))[1]; local
94 fprintf(fp, "Timestamp: %s %lu us\n", tstr, usecs);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
ethtool.h 86 /* How many usecs to delay an RX interrupt after
94 * used. It is illegal to set both usecs and max frames
108 /* How many usecs to delay a TX interrupt after
116 * used. It is illegal to set both usecs and max frames
130 /* How many usecs to delay in-memory statistics
  /bootable/bootloader/legacy/include/boot/
boot.h 103 void udelay(unsigned usecs);
  /external/v8/src/
platform-nullos.cc 66 int OS::GetUserTime(uint32_t* secs, uint32_t* usecs) {
69 *usecs = 0;
  /external/webrtc/src/system_wrappers/interface/
tick_util.h 266 // _interval is usecs
286 // _interval is usecs
  /external/wpa_supplicant/
eloop_none.c 121 int eloop_register_timeout(unsigned int secs, unsigned int usecs,
132 timeout->time.usec += usecs;
eloop.c 226 int eloop_register_timeout(unsigned int secs, unsigned int usecs,
240 timeout->time.usec += usecs;
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
eloop_none.c 121 int eloop_register_timeout(unsigned int secs, unsigned int usecs,
132 timeout->time.usec += usecs;
  /external/wpa_supplicant_8/src/utils/
eloop_none.c 118 int eloop_register_timeout(unsigned int secs, unsigned int usecs,
129 timeout->time.usec += usecs;
eloop.h 176 * @usecs: Number of microseconds to the timeout
185 int eloop_register_timeout(unsigned int secs, unsigned int usecs,
  /external/kernel-headers/original/linux/
ethtool.h 102 /* How many usecs to delay an RX interrupt after
110 * used. It is illegal to set both usecs and max frames
124 /* How many usecs to delay a TX interrupt after
132 * used. It is illegal to set both usecs and max frames
146 /* How many usecs to delay in-memory statistics
  /external/dbus/dbus/
dbus-mainloop.c 412 _dbus_verbose ("Now is %lu seconds %lu usecs\n",
414 _dbus_verbose ("Last is %lu seconds %lu usecs\n",
416 _dbus_verbose ("Exp is %lu seconds %lu usecs\n",
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/
def.h 312 pa_usec_t sink_usec; /**< Time in usecs a sample takes to be played on the sink. For playback streams and record streams connected to a monitor source. */
313 pa_usec_t source_usec; /**< Time in usecs a sample takes from being recorded to being delivered to the application. Only for record streams. \since 0.5*/
314 pa_usec_t transport_usec; /**< Estimated time in usecs a sample takes to be transferred to/from the daemon. For both playback and record streams. \since 0.5 */
  /external/dhcpcd/
dhcp.h 72 /* number of usecs in a second. */
  /external/iptables/extensions/
libxt_RATEEST.c 62 strcasecmp(p, "usecs") == 0)
  /external/qemu/distrib/sdl-1.2.12/src/video/ipod/
SDL_ipodvideo.c 510 static int M_timer_check(int clock_start, int usecs)
515 if ( (clock - clock_start) >= usecs ) {
614 static int C_timer_check(int clock_start, int usecs)
619 if ( (clock - clock_start) >= usecs ) {

Completed in 557 milliseconds

1 2 3