HomeSort by relevance Sort by last modified time
    Searched refs:secs (Results 76 - 100 of 140) sorted by null

1 2 34 5 6

  /frameworks/av/media/libeffects/visualizer/
EffectVisualizer.cpp 97 time_t secs = ts.tv_sec - pContext->mBufferUpdateTime.tv_sec; local
100 --secs;
103 deltaMs = secs * 1000 + nsec / 1000000;
  /packages/apps/Music/src/com/android/music/
MusicPicker.java 237 int secs = cursor.getInt(mDurationIdx) / 1000; local
238 if (secs == 0) {
241 vh.duration.setText(MusicUtils.makeTimeString(context, secs));
MusicUtils.java 751 public static String makeTimeString(Context context, long secs) {
753 secs < 3600 ? R.string.durationformatshort : R.string.durationformatlong);
761 timeArgs[0] = secs / 3600;
762 timeArgs[1] = secs / 60;
763 timeArgs[2] = (secs / 60) % 60;
764 timeArgs[3] = secs;
765 timeArgs[4] = secs % 60;
    [all...]
  /external/v8/src/
platform-posix.cc 169 int OS::GetUserTime(uint32_t* secs, uint32_t* usecs) {
173 *secs = usage.ru_utime.tv_sec;
  /external/chromium_org/tools/
nocompile_driver.py 71 LOG(INFO) << "Took %f secs. Started at %f, ended at %f";
  /external/dnsmasq/contrib/wrt/
dhcp_release.c 69 u16 secs, flags; member in struct:dhcp_packet
  /external/grub/netboot/
etherboot.h 520 extern void sleep (int secs);
  /external/linux-tools-perf/
builtin-script.c 226 unsigned long secs; local
255 secs = nsecs / NSECS_PER_SEC;
256 nsecs -= secs * NSECS_PER_SEC;
258 printf("%5lu.%06lu: ", secs, usecs);
  /external/qemu/
block_int.h 193 int cyls, heads, secs, translation; member in struct:BlockDriverState
block.h 163 int cyls, int heads, int secs);
  /external/sonivox/arm-fm-22k/lib_src/
eas_pcm.c 1358 EAS_I32 secs, msecs; local
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_pcm.c 1358 EAS_I32 secs, msecs; local
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_pcm.c 1358 EAS_I32 secs, msecs; local
    [all...]
  /external/openssh/
ssh-keygen.c 1621 int64_t mul, secs; local
1671 int64_t secs; local
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/
options.js 473 var secs = ts.getSeconds();
478 secs = ( secs < 10 ? "0" : "" ) + secs;
480 return (year + "/" + mon + "/" + date + " " + hrs + ":" + mins + ":" + secs);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
imaplib.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
imaplib.py     [all...]
  /external/iproute2/misc/
ss.c 462 int secs, msecs, minutes; local
465 secs = timeout/1000;
466 minutes = secs/60;
467 secs = secs%60;
474 secs = 0;
476 if (secs) {
477 if (secs > 9)
479 sprintf(buf+strlen(buf), "%d%s", secs, msecs ? "." : "sec");
    [all...]
  /external/libppp/src/
ipcp.c 1443 u_int32_t secs = 0; local
    [all...]
  /external/chromium_org/tools/perf/metrics/
media.js 131 // Return delta time since start in secs.
  /external/libvorbis/lib/
psytune.c 321 float secs=framesize/44100.; local
323 ampmax+=secs*ampmax_att_per_sec;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/llvm/
invocation.cpp 245 m.secs.push_back(module::section(0, module::section::text,
  /external/icu4c/test/intltest/
intltest.cpp 734 char secs[256]; local
736 sprintf(secs, "%f", (timeStop-timeStart)/1000.0);
738 secs[0]=0;
745 ctest_xml_testcase(baseName, name, secs, (lastErrorCount!=errorCount)?"err":NULL);
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/llvm/
invocation.cpp 245 m.secs.push_back(module::section(0, module::section::text,
  /external/srec/portable/src/
plog.c 318 loctime = localtime(&now.secs);

Completed in 1713 milliseconds

1 2 34 5 6