Home
last modified time | relevance | path

Searched refs:secs (Results 1 – 25 of 109) sorted by relevance

12345

/external/mdnsresponder/mDNSPosix/
Dparselog.py98 secs=0
100 secs = secs*60 +float(t)
101 if (secs>maxTime):
102 maxTime=secs
103 if (secs<minTime):
104 minTime=secs
123 plotPoints.append([secs, ipList[ip][0], (qaList[1])[1:-1]])
125 plotPoints.append([secs, ipList[ip][0], (qaList[1])[1:-1]])
128 plotPoints.append([secs, ipList[ip][0], (qaList[1])[1:-1]])
131 plotPoints.append([secs, ipList[ip][0], (qaList[1])[1:-1]])
[all …]
/external/srec/portable/src/
Dptimestamp.c31 timestamp->secs = 0; in PTimeStampSet()
39 timestamp->secs = now.time; in PTimeStampSet()
44 timestamp->secs = now.tv_sec; in PTimeStampSet()
55 return (a->secs - b->secs) * 1000 + a->msecs - b->msecs; in PTimeStampDiff()
/external/e2fsprogs/lib/e2p/
Dls.c56 static const char *interval_string(unsigned int secs) in interval_string() argument
63 if (secs == 0) in interval_string()
66 if (secs >= MONTH_INT) { in interval_string()
67 num = secs / MONTH_INT; in interval_string()
68 secs -= num*MONTH_INT; in interval_string()
71 if (secs >= WEEK_INT) { in interval_string()
72 num = secs / WEEK_INT; in interval_string()
73 secs -= num*WEEK_INT; in interval_string()
78 if (secs >= DAY_INT) { in interval_string()
79 num = secs / DAY_INT; in interval_string()
[all …]
/external/tcpdump/
Dutil.c230 relts_print(int secs) in relts_print() argument
237 if (secs == 0) { in relts_print()
241 if (secs < 0) { in relts_print()
243 secs = -secs; in relts_print()
245 while (secs > 0) { in relts_print()
246 if (secs >= *s) { in relts_print()
247 (void)printf("%d%s", secs / *s, *l); in relts_print()
248 secs -= (secs / *s) * *s; in relts_print()
/external/smack/src/org/xbill/DNS/
DTTL.java90 long secs, mins, hours, days, weeks; in format() local
91 secs = ttl % 60; in format()
108 if (secs > 0 || (weeks == 0 && days == 0 && hours == 0 && mins == 0)) in format()
109 sb.append(secs + "S"); in format()
DResolver.java68 void setTimeout(int secs, int msecs); in setTimeout() argument
74 void setTimeout(int secs); in setTimeout() argument
DSimpleResolver.java166 setTimeout(int secs, int msecs) { in setTimeout() argument
167 timeoutValue = (long)secs * 1000 + msecs; in setTimeout()
171 setTimeout(int secs) { in setTimeout() argument
172 setTimeout(secs, 0); in setTimeout()
/external/libunwind/tests/
Dforker.c37 double secs; in main() local
71 secs = ((stop.tv_sec + 1e-6 * stop.tv_usec) in main()
74 (unsigned long) (1e9 * secs / (double) count)); in main()
/external/chromium_org/base/time/
Dtime.h67 static TimeDelta FromSeconds(int64 secs);
69 static TimeDelta FromSecondsD(double secs);
521 inline TimeDelta TimeDelta::FromSeconds(int64 secs) { in FromSeconds() argument
523 if (secs == std::numeric_limits<int64>::max()) in FromSeconds()
525 return TimeDelta(secs * Time::kMicrosecondsPerSecond); in FromSeconds()
537 inline TimeDelta TimeDelta::FromSecondsD(double secs) { in FromSecondsD() argument
539 if (secs == std::numeric_limits<double>::infinity()) in FromSecondsD()
541 return TimeDelta(secs * Time::kMicrosecondsPerSecond); in FromSecondsD()
/external/mesa3d/src/gallium/state_trackers/clover/core/
Dmodule.cpp133 __proc(s, x.secs); in proc()
163 auto it = std::find_if(secs.begin(), secs.end(), [&](const section &x) { in sec()
167 if (it == secs.end()) in sec()
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
Dmodule.cpp133 __proc(s, x.secs); in proc()
163 auto it = std::find_if(secs.begin(), secs.end(), [&](const section &x) { in sec()
167 if (it == secs.end()) in sec()
/external/e2fsprogs/debugfs/
Dlsdel.c84 long secs = 0; in do_lsdel() local
94 secs = strtol(argv[1],&tmp,0); in do_lsdel()
135 (secs && ((unsigned) abs(now - secs) > inode.i_dtime))) in do_lsdel()
/external/clang/utils/
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/linux-tools-perf/perf-3.12.0/tools/perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/
DUtil.pm34 my ($secs, $nsecs) = @_;
36 return $secs * $NSECS_PER_SEC + $nsecs;
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
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/qemu/
Dblockdev.c144 int cyls, heads, secs, translation; in drive_init() local
178 secs = qemu_opt_get_number(opts, "secs", 0); in drive_init()
221 if (cyls || heads || secs) { in drive_init()
230 if (secs < 1 || (type == IF_IDE && secs > 63)) { in drive_init()
259 if (cyls || secs || heads) { in drive_init()
434 bdrv_set_geometry_hint(dinfo->bdrv, cyls, heads, secs); in drive_init()
/external/tcpdump/tests/
DQinQpacketv.out16 …55.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x9696a090, secs 4, Flags [none]
30 …5.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x9696a090, secs 12, Flags [none]
43 …5.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x9696a090, secs 28, Flags [none]
69 …55.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x9696a090, secs 4, Flags [none]
82 …5.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x9696a090, secs 11, Flags [none]
95 …5.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x9696a090, secs 27, Flags [none]
126 …55.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x9696a015, secs 3, Flags [none]
140 …5.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x9696a015, secs 10, Flags [none]
153 …5.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 298, xid 0x9696a015, secs 26, Flags [none]
179 …55.67: BOOTP/DHCP, Request from 00:08:5d:23:0c:3f, length 548, xid 0x9696a015, secs 3, Flags [none]
[all …]
/external/bluetooth/bluedroid/embdrv/sbc/decoder/include/
Doi_bt_spec.h213 #define OI_SECONDS_TO_BT_TICKS(secs) ((secs)*1600) argument
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/
Dcheck-perf-trace.py60 def print_header(event_name, cpu, secs, nsecs, pid, comm): argument
62 (event_name, cpu, secs, nsecs, pid, comm),
/external/qemu/android/
Dsnapshot.c210 uint64_t secs = vm_clock_nsec / 1000000000; in snapshot_format_vm_clock() local
212 (int)(secs / 3600), in snapshot_format_vm_clock()
213 (int)((secs / 60) % 60), in snapshot_format_vm_clock()
214 (int)(secs % 60), in snapshot_format_vm_clock()
/external/sonivox/arm-fm-22k/lib_src/
Deas_imaadpcm.c285 EAS_I32 secs, msecs; in IMADecoderLocate() local
306 secs = time / 1000; in IMADecoderLocate()
307 msecs = time - (secs * 1000); in IMADecoderLocate()
314 temp += secs * pState->sampleRate; in IMADecoderLocate()
/external/sonivox/arm-wt-22k/lib_src/
Deas_imaadpcm.c285 EAS_I32 secs, msecs; in IMADecoderLocate() local
306 secs = time / 1000; in IMADecoderLocate()
307 msecs = time - (secs * 1000); in IMADecoderLocate()
314 temp += secs * pState->sampleRate; in IMADecoderLocate()
/external/sonivox/arm-hybrid-22k/lib_src/
Deas_imaadpcm.c285 EAS_I32 secs, msecs; in IMADecoderLocate() local
306 secs = time / 1000; in IMADecoderLocate()
307 msecs = time - (secs * 1000); in IMADecoderLocate()
314 temp += secs * pState->sampleRate; in IMADecoderLocate()
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/perl/
Dcheck-perf-trace.pl102 my ($event_name, $cpu, $secs, $nsecs, $pid, $comm) = @_;
105 $event_name, $cpu, $secs, $nsecs, $pid, $comm);
/external/chromium_org/base/third_party/nspr/
Dprtime.cc87 static void localtime_r(const time_t* secs, struct tm* time) { in localtime_r() argument
88 (void) localtime_s(time, secs); in localtime_r()
1169 time_t secs; in PR_ParseTimeString() local
1222 secs = (time_t) -1; in PR_ParseTimeString()
1224 secs = mktime(&localTime); in PR_ParseTimeString()
1227 secs = mktime(&localTime); in PR_ParseTimeString()
1229 if (secs != (time_t) -1) in PR_ParseTimeString()
1231 *result_imploded = (PRInt64)secs * PR_USEC_PER_SEC; in PR_ParseTimeString()
1240 secs = 86400; in PR_ParseTimeString()
1241 localtime_r(&secs, &localTime); in PR_ParseTimeString()

12345