Searched refs:secs (Results 1 - 25 of 83) sorted by relevance

1234

/external/skia/samplecode/
H A DSampleAnimBlur.cpp15 SkScalar get_anim_sin(double secs, SkScalar amplitude, SkScalar periodInSec, SkScalar phaseInSec) { argument
19 double t = secs + phaseInSec;
63 fBlurSigma = get_anim_sin(timer.secs(), 100, 4, 5);
64 fCircleRadius = 3 + get_anim_sin(timer.secs(), 150, 25, 3);
/external/libunwind/tests/
H A Dforker.c37 double secs; local
71 secs = ((stop.tv_sec + 1e-6 * stop.tv_usec)
74 (unsigned long) (1e9 * secs / (double) count));
/external/mdnsresponder/mDNSPosix/
H A Dparselog.py98 secs=0
100 secs = secs*60 +float(t)
101 if (secs>maxTime):
102 maxTime=secs
103 if (secs<minTime):
104 minTime=secs
107 #print (("getIP:%s" % (line)), time, secs)
123 plotPoints.append([secs, ipList[ip][0], (qaList[1])[1:-1]])
125 plotPoints.append([secs, ipLis
[all...]
/external/e2fsprogs/lib/e2p/
H A Dls.c56 static const char *interval_string(unsigned int secs) argument
63 if (secs == 0)
66 if (secs >= MONTH_INT) {
67 num = secs / MONTH_INT;
68 secs -= num*MONTH_INT;
71 if (secs >= WEEK_INT) {
72 num = secs / WEEK_INT;
73 secs -= num*WEEK_INT;
78 if (secs >= DAY_INT) {
79 num = secs / DAY_IN
[all...]
/external/linux-tools-perf/src/tools/perf/scripts/perl/
H A Dcheck-perf-trace.pl102 my ($event_name, $cpu, $secs, $nsecs, $pid, $comm) = @_;
105 $event_name, $cpu, $secs, $nsecs, $pid, $comm);
/external/linux-tools-perf/src/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
H A DUtil.py22 def nsecs(secs, nsecs):
23 return secs * NSECS_PER_SEC + nsecs
H A DCore.py112 self.secs = common_secs
118 return (self.secs * (10 ** 9)) + self.nsecs
121 return "%d.%d" % (self.secs, int(self.nsecs / 1000))
/external/linux-tools-perf/src/tools/perf/scripts/python/
H A Dcheck-perf-trace.py60 def print_header(event_name, cpu, secs, nsecs, pid, comm):
62 (event_name, cpu, secs, nsecs, pid, comm),
/external/skia/gm/
H A DSkAnimTimer.h66 * automatically, so that repeated calls to msec() or secs() will always return the
87 double secs() const { function in class:SkAnimTimer
97 double value = this->secs() * speed;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DDateTimeRule.java300 int secs = time % 60;
316 buf.append(secs/10);
317 buf.append(secs%10);
/external/e2fsprogs/debugfs/
H A Dlsdel.c84 long secs = 0; local
90 "[secs]", 0))
94 secs = strtol(argv[1],&tmp,0);
135 (secs && ((unsigned) abs(now - secs) > inode.i_dtime)))
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dmodule.cpp133 __proc(s, x.secs);
163 auto it = std::find_if(secs.begin(), secs.end(), [&](const section &x) {
167 if (it == secs.end())
H A Dmodule.hpp102 clover::compat::vector<section> secs; member in struct:clover::module
/external/linux-tools-perf/src/tools/perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/
H A DUtil.pm34 my ($secs, $nsecs) = @_;
36 return $secs * $NSECS_PER_SEC + $nsecs;
/external/tcpdump/
H A Dutil.c230 relts_print(int secs) argument
237 if (secs == 0) {
241 if (secs < 0) {
243 secs = -secs;
245 while (secs > 0) {
246 if (secs >= *s) {
247 (void)printf("%d%s", secs / *s, *l);
248 secs -= (secs / *
[all...]
/external/jetty/src/java/org/eclipse/jetty/server/session/
H A DHashedSession.java78 public void setMaxInactiveInterval(int secs) argument
80 super.setMaxInactiveInterval(secs);
82 _hashSessionManager.setScavengePeriod((secs+9)/10);
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_imaadpcm.c285 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/sonivox/arm-hybrid-22k/lib_src/
H A Deas_imaadpcm.c285 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/sonivox/arm-wt-22k/lib_src/
H A Deas_imaadpcm.c285 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/wpa_supplicant_8/hostapd/src/utils/
H A Deloop.h169 * @secs: Number of seconds to the timeout
179 int eloop_register_timeout(unsigned int secs, unsigned int usecs,
/external/wpa_supplicant_8/src/utils/
H A Deloop.h169 * @secs: Number of seconds to the timeout
179 int eloop_register_timeout(unsigned int secs, unsigned int usecs,
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Deloop.h169 * @secs: Number of seconds to the timeout
179 int eloop_register_timeout(unsigned int secs, unsigned int usecs,
/external/clang/utils/
H A DFindSpecRefs683 secs = str[1:str.index(']')].split('.')
690 indices = secs
692 secs = str.split('.')
694 if 'p' in secs[-1]:
695 secs[-1],p = secs[-1].split('p',1)
697 indices = map(int, secs)
/external/iproute2/ip/
H A Dipmonitor.c90 time_t secs = ((__u32*)NLMSG_DATA(n))[0]; local
92 tstr = asctime(localtime(&secs));
/external/mesa3d/src/gallium/state_trackers/clover/tgsi/
H A Dcompiler.cpp86 m.secs.push_back({ 0, module::section::text, sz, { (char *)prog, sz } });

Completed in 1034 milliseconds

1234