/external/openssh/ |
misc.c | 306 long total, secs; local 318 secs = strtol(p, &endp, 10); 320 (errno == ERANGE && (secs == LONG_MIN || secs == LONG_MAX)) || 321 secs < 0) 333 secs *= MINUTES; 337 secs *= HOURS; 341 secs *= DAYS; 345 secs *= WEEKS; 350 total += secs; [all...] |
/external/chromium_org/third_party/libxslt/libexslt/ |
date.c | 750 time_t secs; local 759 secs = time(NULL); 761 localtime_r(&secs, &localTm); 763 localTm = *localtime(&secs); 779 gmtime_r(&secs, &gmTm); 781 gmTm = *gmtime(&secs); 1107 double secs, days; local 1117 secs = dt->sec; 1123 if (secs < 0.0) { 1124 secs = -secs 3060 double secs; local [all...] |
/external/chromium/base/ |
time.h | 61 static TimeDelta FromSeconds(int64 secs); 433 inline TimeDelta TimeDelta::FromSeconds(int64 secs) { 434 return TimeDelta(secs * Time::kMicrosecondsPerSecond);
|
/external/chromium_org/base/time/ |
time.h | 67 static TimeDelta FromSeconds(int64 secs); 511 inline TimeDelta TimeDelta::FromSeconds(int64 secs) { 512 return TimeDelta(secs * Time::kMicrosecondsPerSecond);
|
/external/wpa_supplicant_8/src/utils/ |
eloop_none.c | 111 int eloop_register_timeout(unsigned int secs, unsigned int usecs, 126 timeout->time.sec += secs; 132 wpa_printf(MSG_DEBUG, "ELOOP: Too long timeout (secs=%u) to " 133 "ever happen - ignore it", secs);
|
eloop_win.c | 237 int eloop_register_timeout(unsigned int secs, unsigned int usecs, 252 timeout->time.sec += secs; 258 wpa_printf(MSG_DEBUG, "ELOOP: Too long timeout (secs=%u) to " 259 "ever happen - ignore it", secs);
|
/external/chromium_org/net/quic/ |
quic_time.h | 40 static Delta FromSeconds(int64 secs);
|
/external/chromium_org/tools/cygprofile/ |
mergetraces.py | 29 secs msecs pid:threadid func 108 secs = int (fields[0]) 115 converted_calls.append((secs, msecs, fields[2], (callee - startAddr))) 180 print "secs\tmsecs\tpid:threadid\tfunc"
|
/external/v8/src/ |
platform-nullos.cc | 95 int OS::GetUserTime(uint32_t* secs, uint32_t* usecs) { 97 *secs = 0;
|
/frameworks/rs/ |
rsCppUtils.h | 178 static inline nsecs_t nanoseconds_to_milliseconds(nsecs_t secs) 180 return secs/1000000;
|
/bionic/libc/netbsd/resolv/ |
res_debug.c | 768 int deg = 0, min = 0, secs = 0, secsfrac = 0; local 791 secs = secs * 10 + (*cp++ - '0'); 817 + (((((deg * 60) + min) * 60) + secs) * 1000) 823 - (((((deg * 60) + min) * 60) + secs) * 1000) 1111 p_secstodate (u_long secs) { 1114 time_t myclock = secs;
|
/external/smack/src/org/xbill/DNS/ |
ZoneTransferIn.java | 318 * @param secs The maximum amount of time that this zone transfer can take. 321 setTimeout(int secs) { 322 if (secs < 0) 325 timeout = 1000L * secs;
|
/external/dhcpcd/ |
dhcp.h | 145 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/chromium_org/third_party/openssl/openssl/apps/ |
openssl.cnf | 343 accuracy = secs:1, millisecs:500, microsecs:100 # (optional)
|
/external/openssl/apps/ |
openssl.cnf | 343 accuracy = secs:1, millisecs:500, microsecs:100 # (optional)
|
/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/libppp/src/ |
ip.c | 888 log_Printf(LogTCPIP, "%s - (timeout = %d / ALIVE = %d secs)\n", 891 log_Printf(LogTCPIP, "%s - (timeout = %d secs)\n", logbuf, *psecs); 912 unsigned secs, alivesecs; local 923 secs = 0; 925 NULL, &secs) < 0) 930 if (secs == 0) 931 secs = alivesecs; 932 bundle_StartIdleTimer(bundle, secs);
|
ipv6cp.c | 427 u_int32_t secs = 0; local 445 bp = mbuf_Read(bp, &secs, sizeof secs); 450 if (secs == 0) 451 secs = alivesecs; 452 bundle_StartIdleTimer(bundle, secs);
|
/external/llvm/unittests/Support/ |
YAMLIOTest.cpp | 654 NormalizedSeconds(IO &, TotalSeconds &secs) 655 : hours(secs/3600), 656 minutes((secs - (hours*3600))/60), 657 seconds(secs % 60) { 668 static void mapping(IO &io, TotalSeconds &secs) { 669 MappingNormalization<NormalizedSeconds, TotalSeconds> keys(io, secs);
|
/external/qemu/ |
vl-android.c | 1037 int cyls, heads, secs, translation; local 1048 "cyls", "heads", "secs", "trans", 1060 cyls = heads = secs = 0; 1144 if (get_param_value(buf, sizeof(buf), "secs", str)) { 1145 secs = strtol(buf, NULL, 0); 1148 if (cyls || heads || secs) { 1157 if (secs < 1 || secs > 63) { 1158 fprintf(stderr, "qemu: '%s' invalid physical secs number\n", str); 1166 "qemu: '%s' trans must be used with cyls,heads and secs\n" 2539 int cyls, heads, secs, translation; local [all...] |
vl.c | 840 int cyls, heads, secs, translation; local 851 "cyls", "heads", "secs", "trans", 863 cyls = heads = secs = 0; 947 if (get_param_value(buf, sizeof(buf), "secs", str)) { 948 secs = strtol(buf, NULL, 0); 951 if (cyls || heads || secs) { 960 if (secs < 1 || secs > 63) { 961 fprintf(stderr, "qemu: '%s' invalid physical secs number\n", str); 969 "qemu: '%s' trans must be used with cyls,heads and secs\n" 2072 int cyls, heads, secs, translation; local [all...] |
block.c | 1215 int cylinders, heads, secs; local 1220 bdrv_get_geometry_hint(bs, &cylinders, &heads, &secs); 1225 *psecs = secs; 1227 if (guess_disk_lchs(bs, &cylinders, &heads, &secs) == 0) 1939 int64_t secs; local [all...] |
/external/qemu/hw/ |
scsi-disk.c | 626 int cylinders, heads, secs; local 632 bdrv_get_geometry_hint(s->bdrv, &cylinders, &heads, &secs); 657 int cylinders, heads, secs; local 666 bdrv_get_geometry_hint(s->bdrv, &cylinders, &heads, &secs); 668 p[5] = secs & 0xff;
|
/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;
|