/external/sonivox/arm-wt-22k/lib_src/ |
eas_imaadpcm.c | 285 EAS_I32 secs, msecs; local 305 /* break down into secs and msecs */ 306 secs = time / 1000; 307 msecs = time - (secs * 1000); 314 temp += secs * pState->sampleRate;
|
/external/opencore/oscl/oscl/osclbase/src/ |
oscl_time.inl | 187 unsigned long secs = this->ts.tv_usec / USEC_PER_SEC; 188 this->ts.tv_sec += secs; 189 this->ts.tv_usec -= secs * USEC_PER_SEC;
|
/external/sonivox/jet_tools/JetCreator/ |
eas.py | 395 def Locate (self, secs, offset=False):
397 eas_logger.debug('Call EAS_Locate: location=%.3f, relative=%s' % (secs, offset))
399 result = eas_dll.EAS_Locate(self.eas.handle, self.handle, int(secs * 1000 + 0.5), offset)
761 def Render (self, count=None, secs=None):
766 secs - number of seconds to render
768 If both count and secs are None, render a single buffer.
774 if secs is not None:
775 count = int(secs * float(self.config.sampleRate) / float(self.buf_size) + 0.5)
[all...] |
/external/v8/src/ |
platform-posix.cc | 75 int OS::GetUserTime(uint32_t* secs, uint32_t* usecs) { 79 *secs = usage.ru_utime.tv_sec;
|
/external/wpa_supplicant/ |
eloop.c | 226 int eloop_register_timeout(unsigned int secs, unsigned int usecs, 239 timeout->time.sec += secs;
|
eloop.h | 181 * @secs: Number of seconds to the timeout 191 int eloop_register_timeout(unsigned int secs, unsigned int usecs,
|
/frameworks/base/media/libstagefright/codecs/avc/dec/ |
AVCDecoder.cpp | 209 LOGV("seek requested to %lld us (%.2f secs)", seekTimeUs, seekTimeUs / 1E6); 231 LOGV("reading data from timestamp %lld (%.2f secs)",
|
/external/srec/doc/logs/uapi/ |
run_robustness3.log | 92 Record for 2 secs. 216 Record for 2 secs. 340 Record for 2 secs. 464 Record for 2 secs. 588 Record for 2 secs. 712 Record for 2 secs. 836 Record for 2 secs. [all...] |
/external/qemu/ |
vl-android.c | 2333 int cyls, heads, secs, translation; local 5090 int cyls, heads, secs, translation; local [all...] |
vl.c | 2204 int cyls, heads, secs, translation; local 4949 int cyls, heads, secs, translation; local [all...] |
block.h | 113 int cyls, int heads, int secs);
|
block_int.h | 156 int cyls, heads, secs, translation; member in struct:BlockDriverState
|
/external/blktrace/btt/ |
bno_plot.py | 46 set xlabel 'Time (secs)'
|
/external/dhcpcd/ |
dhcp.h | 132 uint16_t secs; /* elapsed time in sec. from boot */ member in struct:dhcp_message
|
/external/dnsmasq/contrib/wrt/ |
dhcp_lease_time.c | 64 u16 secs, flags; member in struct:dhcp_packet
|
/external/iproute2/misc/ |
ifstat.c | 558 " -d, --scan=SECS sample every statistics every SECS\n" 563 " -t, --interval=SECS report average over the last SECS\n"
|
/external/opencore/engines/player/test/src/ |
test_pv_player_engine_testset12.h | 88 * and Sleep of 90 secs right after each state when playing an local/PDL/rtsp url
|
/external/webkit/WebCore/css/ |
tokenizer.flex | 90 {num}s {yyTok = SECS; return yyTok;}
|
/frameworks/base/cmds/stagefright/ |
record.cpp | 68 // Stop returning data after 10 secs.
|
/frameworks/base/media/libstagefright/ |
AwesomePlayer.cpp | 444 LOGV("cache holds %.2f secs worth of data.", cachedDurationUs / 1E6); 860 LOGV("seeking to %lld us (%.2f secs)", mSeekTimeUs, mSeekTimeUs / 1E6); 908 LOGV("seeking audio to %lld us (%.2f secs).", timeUs, timeUs / 1E6); 942 LOGV("we're late by %lld us (%.2f secs)", latenessUs, latenessUs / 1E6); [all...] |
HTTPStream.cpp | 71 setReceiveTimeout(5); // Time out reads after 5 secs by default
|
/packages/apps/Music/src/com/android/music/ |
MusicUtils.java | 733 public static String makeTimeString(Context context, long secs) { 735 secs < 3600 ? R.string.durationformatshort : R.string.durationformatlong); 743 timeArgs[0] = secs / 3600; 744 timeArgs[1] = secs / 60; 745 timeArgs[2] = (secs / 60) % 60; 746 timeArgs[3] = secs; 747 timeArgs[4] = secs % 60; [all...] |
/external/qemu/hw/ |
scsi-disk.c | 625 int cylinders, heads, secs; local 631 bdrv_get_geometry_hint(s->bdrv, &cylinders, &heads, &secs); 656 int cylinders, heads, secs; local 665 bdrv_get_geometry_hint(s->bdrv, &cylinders, &heads, &secs); 667 p[5] = secs & 0xff;
|
/external/netcat/ |
netcat.c | 247 set the timer. Zero secs arg means unarm */ 248 void arm (num, secs) 250 unsigned int secs; 252 if (secs == 0) { /* reset */ 258 alarm (secs); 260 } /* if secs */ [all...] |
/external/opencore/codecs_v2/audio/gsm_amr/amr_nb/enc/include/ |
gsmamr_encoder_wrapper.h | 112 // (ticks per secs). For example, "22050" ticks/sec. 180 // DESCRIPTION: Clock rate or time scale used for the timestamps (ticks per secs)
|