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

1 2 3 4 5

  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
quit-live.c 23 int secs = 30; local
25 while (secs--)
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.server/
reconnect-ctrl-c.c 23 int secs = 30; local
25 while (secs--)
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
quit-live.c 23 int secs = 30; local
25 while (secs--)
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.server/
reconnect-ctrl-c.c 23 int secs = 30; local
25 while (secs--)
  /src/external/bsd/libarchive/dist/libarchive/
archive_entry_copy_bhfi.c 37 int64_t secs; local
40 ntfs_to_unix(FILETIME_to_ntfs(&bhfi->ftLastAccessTime), &secs, &nsecs);
41 archive_entry_set_atime(entry, secs, nsecs);
42 ntfs_to_unix(FILETIME_to_ntfs(&bhfi->ftLastWriteTime), &secs, &nsecs);
43 archive_entry_set_mtime(entry, secs, nsecs);
44 ntfs_to_unix(FILETIME_to_ntfs(&bhfi->ftCreationTime), &secs, &nsecs);
45 archive_entry_set_birthtime(entry, secs, nsecs);
46 archive_entry_set_ctime(entry, secs, nsecs);
  /src/external/gpl3/binutils/dist/include/som/
clock.h 26 unsigned char secs[4]; member in struct:som_external_clock
  /src/external/gpl3/binutils.old/dist/include/som/
clock.h 26 unsigned char secs[4]; member in struct:som_external_clock
  /src/external/gpl3/gdb/dist/include/som/
clock.h 26 unsigned char secs[4]; member in struct:som_external_clock
  /src/external/gpl3/gdb.old/dist/include/som/
clock.h 26 unsigned char secs[4]; member in struct:som_external_clock
  /src/external/bsd/ntp/dist/tests/libntp/
test-libntp.c 26 time_t secs = ntpcal_etime_to_seconds(H, M, S); local
28 nowtime = days * SECSPERDAY + secs;
  /src/sys/arch/landisk/stand/boot/
getsecs.c 200 satime_t secs; local
217 secs = sec;
218 secs += min * 60;
219 secs += hour * 60 * 60;
220 secs += day * 60 * 60 * 24;
226 printf("getsecs: secs = %d\n", (uint32_t)secs);
229 return secs;
  /src/sys/arch/next68k/stand/boot/
rtc.c 104 u_int secs; local
107 secs = rtc_read(RTC_CNTR0) << 24 |
119 secs = BCD_DECODE(d) * (60*60*24) +
125 return secs;
  /src/sys/dev/
clock_subr.c 85 uint64_t secs, i, year, days; local
131 secs = (((uint64_t)days
136 if ((time_t)secs < 0 || secs > __type_max(time_t))
138 return secs;
142 clock_secs_to_ymdhms(time_t secs, struct clock_ymdhms *dt)
149 if (secs < 0)
152 days = secs / SECS_PER_DAY;
153 rsec = secs % SECS_PER_DAY;
  /src/sys/stand/efiboot/
prompt.c 77 int last_secs = -1, secs; local
86 secs = (i + POLL_FREQ - 1) / POLL_FREQ;
87 if (secs != last_secs) {
99 last_secs = secs;
  /src/tests/dev/clock_subr/
t_clock_subr.c 262 time_t secs; local
266 secs = clock_ymdhms_to_secs(__UNCONST(&clock_tests[i].clock));
267 ATF_CHECK_EQ_MSG(clock_tests[i].time, secs, "%jd != %jd",
268 (intmax_t)clock_tests[i].time, (intmax_t)secs);
  /src/lib/libc/nameser/
ns_ttl.c 62 int secs, mins, hours, days, weeks, x; local
65 secs = (int)(src % 60); src /= 60;
88 if (secs || !(weeks || days || hours || mins)) {
89 T(fmt1(secs, 'S', &dst, &dstlen));
  /src/usr.bin/leave/
leave.c 73 u_int secs; local
112 secs = (hours * HOUR) + (minutes * MINUTE);
123 secs = (hours - t->tm_hour) * HOUR;
124 secs += (minutes - t->tm_min) * MINUTE;
126 doalarm(secs);
131 doalarm(u_int secs)
147 daytime += secs;
156 if (secs >= FIVEMIN) {
157 sleep(secs - FIVEMIN);
160 secs = FIVEMIN
    [all...]
  /src/external/bsd/libbind/dist/nameser/
ns_ttl.c 56 int secs, mins, hours, days, weeks, x; local
59 secs = src % 60; src /= 60;
82 if (secs || !(weeks || days || hours || mins)) {
83 T(fmt1(secs, 'S', &dst, &dstlen));
  /src/external/bsd/ntp/dist/include/
ntp_calgps.h 50 int32_t secs; /* since midnight, denorm is ok */ member in struct:ntpdatum
  /src/external/mpl/bind/dist/lib/dns/
ttl.c 71 unsigned int secs, mins, hours, days, weeks, x; local
73 secs = src % 60;
102 if (secs != 0 || (weeks == 0 && days == 0 && hours == 0 && mins == 0)) {
103 RETERR(ttlfmt(secs, "second", verbose, x > 0, target));
  /src/regress/sys/kern/select/
select.c 180 unsigned int secs; local
186 secs = atoi(argv[1]);
213 sleep(secs);
  /src/sys/arch/amiga/stand/bootblock/boot/
amigaio.h 55 u_int32_t secs, member in struct:TimerIO
  /src/sys/arch/dreamcast/dev/g2/
g2rtc.c 155 uint32_t secs; local
158 secs = (uint32_t)tv->tv_sec + G2RTC_OFFSET;
164 bus_space_write_4(sc->sc_bt, sc->sc_bh, 4, secs & 0xffff);
165 bus_space_write_4(sc->sc_bt, sc->sc_bh, 0, secs >> 16);
169 if (g2rtc_read(sc->sc_bt, sc->sc_bh) == secs)
  /src/external/gpl3/binutils/dist/gas/config/
obj-ecoff.c 76 asection *secs[n_names]; local
81 secs[i] = NULL;
88 secs[i] = sec;
99 if (secs[i])
101 bfd_set_section_vma (secs[i], addr);
102 addr += bfd_section_size (secs[i]);
105 if (secs[i])
106 bfd_section_list_prepend (stdoutput, secs[i]);
  /src/external/gpl3/binutils.old/dist/gas/config/
obj-ecoff.c 76 asection *secs[n_names]; local
81 secs[i] = NULL;
88 secs[i] = sec;
99 if (secs[i])
101 bfd_set_section_vma (secs[i], addr);
102 addr += bfd_section_size (secs[i]);
105 if (secs[i])
106 bfd_section_list_prepend (stdoutput, secs[i]);

Completed in 40 milliseconds

1 2 3 4 5