HomeSort by: relevance | last modified time | path
    Searched defs:seconds (Results 1 - 25 of 166) sorted by relevancy

1 2 3 4 5 6 7

  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
gdb-sigterm.c 25 unsigned int seconds = TIMEOUT + 20; local
27 alarm (seconds);
gdb-sigterm.c 25 unsigned int seconds = TIMEOUT + 20; local
27 alarm (seconds);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
gdb-sigterm.c 25 unsigned int seconds = TIMEOUT + 20; local
27 alarm (seconds);
gdb-sigterm.c 25 unsigned int seconds = TIMEOUT + 20; local
27 alarm (seconds);
  /src/external/bsd/ntp/dist/libntp/lib/isc/unix/include/isc/
time.h 42 unsigned int seconds; member in struct:isc_interval
52 unsigned int seconds, unsigned int nanoseconds);
54 * Set 'i' to a value representing an interval of 'seconds' seconds and
86 unsigned int seconds; member in struct:isc_time
93 isc_time_set(isc_time_t *t, unsigned int seconds, unsigned int nanoseconds);
95 * Set 't' to a value which represents the given number of seconds and
102 * isc_interval_set(i, seconds, nanoseconds);
245 * Return the number of seconds since the epoch stored in a time structure.
255 * Ensure the number of seconds in an isc_time_t is representable by a time_t
    [all...]
time.h 42 unsigned int seconds; member in struct:isc_interval
52 unsigned int seconds, unsigned int nanoseconds);
54 * Set 'i' to a value representing an interval of 'seconds' seconds and
86 unsigned int seconds; member in struct:isc_time
93 isc_time_set(isc_time_t *t, unsigned int seconds, unsigned int nanoseconds);
95 * Set 't' to a value which represents the given number of seconds and
102 * isc_interval_set(i, seconds, nanoseconds);
245 * Return the number of seconds since the epoch stored in a time structure.
255 * Ensure the number of seconds in an isc_time_t is representable by a time_t
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/isc/unix/include/isc/
time.h 39 unsigned int seconds; member in struct:isc_interval
55 isc_interval_set(isc_interval_t *i, unsigned int seconds,
58 * Set 'i' to a value representing an interval of 'seconds' seconds and
90 unsigned int seconds; member in struct:isc_time
97 isc_time_set(isc_time_t *t, unsigned int seconds, unsigned int nanoseconds);
99 * Set 't' to a value which represents the given number of seconds and
106 * isc_interval_set(i, seconds, nanoseconds);
269 * Return the number of seconds since the epoch stored in a time structure.
279 * Ensure the number of seconds in an isc_time_t is representable by a time_t
    [all...]
time.h 39 unsigned int seconds; member in struct:isc_interval
55 isc_interval_set(isc_interval_t *i, unsigned int seconds,
58 * Set 'i' to a value representing an interval of 'seconds' seconds and
90 unsigned int seconds; member in struct:isc_time
97 isc_time_set(isc_time_t *t, unsigned int seconds, unsigned int nanoseconds);
99 * Set 't' to a value which represents the given number of seconds and
106 * isc_interval_set(i, seconds, nanoseconds);
269 * Return the number of seconds since the epoch stored in a time structure.
279 * Ensure the number of seconds in an isc_time_t is representable by a time_t
    [all...]
  /src/external/bsd/kyua-cli/dist/utils/
datetime.hpp 52 /// The amount of seconds in the time delta.
53 int64_t seconds; member in class:utils::datetime::delta
datetime.hpp 52 /// The amount of seconds in the time delta.
53 int64_t seconds; member in class:utils::datetime::delta
  /src/external/mpl/bind/dist/bin/tests/system/rpz/
dnsrps.c 21 * -w sec.ond wait for seconds, because `sleep 0.1` is not portable
59 double seconds; local
125 seconds = strtod(optarg, &p);
126 if (seconds <= 0 || *p != '\0') {
130 usleep((int)(seconds * 1000.0 * 1000.0));
dnsrps.c 21 * -w sec.ond wait for seconds, because `sleep 0.1` is not portable
59 double seconds; local
125 seconds = strtod(optarg, &p);
126 if (seconds <= 0 || *p != '\0') {
130 usleep((int)(seconds * 1000.0 * 1000.0));
  /src/external/mpl/bind/dist/lib/isccfg/
duration.c 174 /* Record seconds. */
234 * units is lost, and is treated as seconds from now on.
246 uint64_t seconds = 0; local
250 seconds += (uint64_t)duration->parts[6]; /* Seconds */
251 seconds += (uint64_t)duration->parts[5] * 60; /* Minutes */
252 seconds += (uint64_t)duration->parts[4] * 3600; /* Hours */
253 seconds += (uint64_t)duration->parts[3] * 86400; /* Days */
254 seconds += (uint64_t)duration->parts[2] * 86400 * 7; /* Weeks */
259 seconds += (uint64_t)duration->parts[1] * 86400 * 31; /* Months *
    [all...]
duration.c 174 /* Record seconds. */
234 * units is lost, and is treated as seconds from now on.
246 uint64_t seconds = 0; local
250 seconds += (uint64_t)duration->parts[6]; /* Seconds */
251 seconds += (uint64_t)duration->parts[5] * 60; /* Minutes */
252 seconds += (uint64_t)duration->parts[4] * 3600; /* Hours */
253 seconds += (uint64_t)duration->parts[3] * 86400; /* Days */
254 seconds += (uint64_t)duration->parts[2] * 86400 * 7; /* Weeks */
259 seconds += (uint64_t)duration->parts[1] * 86400 * 31; /* Months *
    [all...]
  /src/external/bsd/tcpdump/dist/
ntp.c 30 #define DIFF_1970_1900 INT64_C(2208988800) /* 1970 - 1900 in seconds */
33 #define DIFF_2036_1970 INT64_C(2085978496) /* 2036 - 1970 in seconds */
58 time_t seconds; local
66 seconds = (time_t)seconds_64bit;
67 if (seconds != seconds_64bit) {
75 fmt, gmtime(&seconds));
ntp.c 30 #define DIFF_1970_1900 INT64_C(2208988800) /* 1970 - 1900 in seconds */
33 #define DIFF_2036_1970 INT64_C(2085978496) /* 2036 - 1970 in seconds */
58 time_t seconds; local
66 seconds = (time_t)seconds_64bit;
67 if (seconds != seconds_64bit) {
75 fmt, gmtime(&seconds));
print-arista.c 90 arista_print_date_hms_time(netdissect_options *ndo, const uint32_t seconds,
93 const time_t ts = seconds;
121 uint32_t seconds; local
143 seconds = GET_BE_U_4(bp);
145 arista_print_date_hms_time(ndo, seconds, nanoseconds);
149 seconds = GET_BE_U_2(bp);
151 ND_PRINT("%u.%09u", seconds, nanoseconds);
  /src/sys/arch/mac68k/mac68k/
pram.c 64 long year, month, day, hour, minute, seconds, i, dayperyear; local
71 seconds = 0;
114 seconds = t;
119 monstr[month], day, year, hour, minute, seconds);
pram.c 64 long year, month, day, hour, minute, seconds, i, dayperyear; local
71 seconds = 0;
114 seconds = t;
119 monstr[month], day, year, hour, minute, seconds);
  /src/external/bsd/nsd/dist/simdzone/src/generic/
time.h 77 const uint64_t seconds = minutes * 60 + sec; local
79 uint32_t time = htobe32((uint32_t)seconds);
time.h 77 const uint64_t seconds = minutes * 60 + sec; local
79 uint32_t time = htobe32((uint32_t)seconds);
  /src/external/bsd/openldap/dist/libraries/libldap/
ppolicy.c 92 exptimep (OUT) This result parameter is filled in with the number of seconds before
230 long seconds = 0; local
247 seconds = strtol( buf, &next, 10 );
251 *secondsp = seconds;
ppolicy.c 92 exptimep (OUT) This result parameter is filled in with the number of seconds before
230 long seconds = 0; local
247 seconds = strtol( buf, &next, 10 );
251 *secondsp = seconds;
  /src/external/gpl2/xcvs/dist/lib/
getdate.y 161 /* Gregorian year, month, day, hour, minutes, seconds, and nanoseconds. */
167 struct timespec seconds; /* includes nanoseconds */
169 /* Relative year, month, day, hour, minutes, seconds, and nanoseconds. */
225 %type <timespec> seconds signed_seconds unsigned_seconds
235 '@' seconds
237 pc->seconds = $2;
289 pc->seconds.tv_sec = $5.tv_nsec / 10000000;
290 pc->seconds.tv_nsec = 0;
300 pc->seconds.tv_sec = 0;
301 pc->seconds.tv_nsec = 0
535 seconds: signed_seconds | unsigned_seconds; label
    [all...]
getdate.y 161 /* Gregorian year, month, day, hour, minutes, seconds, and nanoseconds. */
167 struct timespec seconds; /* includes nanoseconds */
169 /* Relative year, month, day, hour, minutes, seconds, and nanoseconds. */
225 %type <timespec> seconds signed_seconds unsigned_seconds
235 '@' seconds
237 pc->seconds = $2;
289 pc->seconds.tv_sec = $5.tv_nsec / 10000000;
290 pc->seconds.tv_nsec = 0;
300 pc->seconds.tv_sec = 0;
301 pc->seconds.tv_nsec = 0
535 seconds: signed_seconds | unsigned_seconds; label
    [all...]

Completed in 135 milliseconds

1 2 3 4 5 6 7