Home
last modified time | relevance | path

Searched refs:timebuf (Results 1 – 11 of 11) sorted by relevance

/NextBSD/contrib/gcclibs/libgomp/config/mingw32/
HDtime.c37 struct _timeb timebuf; in omp_get_wtime() local
38 _ftime (&timebuf); in omp_get_wtime()
39 return (timebuf.time + (long)(timebuf.millitm) / 1e3); in omp_get_wtime()
/NextBSD/cddl/contrib/opensolaris/cmd/zlook/
HDzlook.c143 char timebuf[512]; in print_stats() local
154 timebuf[0] = 0; in print_stats()
155 if (ctime_r(&sb->st_atime, timebuf, 512)) { in print_stats()
157 (void) printf("%s", timebuf); in print_stats()
159 timebuf[0] = 0; in print_stats()
160 if (ctime_r(&sb->st_mtime, timebuf, 512)) { in print_stats()
162 (void) printf("%s", timebuf); in print_stats()
164 timebuf[0] = 0; in print_stats()
165 if (ctime_r(&sb->st_ctime, timebuf, 512)) { in print_stats()
167 (void) printf("%s", timebuf); in print_stats()
/NextBSD/sbin/nandfs/
HDlssnap.c60 char timebuf[128]; in print_cpinfo() local
64 strftime(timebuf, sizeof(timebuf), "%F %T", &tm); in print_cpinfo()
66 printf("%20llu %s\n", (unsigned long long)cpinfo->nci_cno, timebuf); in print_cpinfo()
/NextBSD/contrib/tcp_wrappers/
HDrfc931.c43 static jmp_buf timebuf; variable
72 longjmp(timebuf, sig);
139 if (setjmp(timebuf) == 0) {
/NextBSD/contrib/binutils/binutils/
HDbucomm.c371 char timebuf[40]; in print_arelt_descr() local
376 sprintf (timebuf, "%.12s %.4s", ctime_result + 4, ctime_result + 20); in print_arelt_descr()
383 (long) buf.st_size, timebuf); in print_arelt_descr()
HDreadelf.c5590 char timebuf[20]; in dynamic_section_mips_val() local
5595 snprintf (timebuf, sizeof (timebuf), "%04u-%02u-%02uT%02u:%02u:%02u", in dynamic_section_mips_val()
5598 printf ("Time Stamp: %s\n", timebuf); in dynamic_section_mips_val()
8663 char timebuf[20]; in process_mips_specific() local
8673 snprintf (timebuf, sizeof (timebuf), in process_mips_specific()
8683 printf (" %s %#10lx %-7ld", timebuf, liblist.l_checksum, in process_mips_specific()
9047 char timebuf[20]; in process_gnu_liblist() local
9057 snprintf (timebuf, sizeof (timebuf), in process_gnu_liblist()
9069 printf (" %s %#010lx %-7ld %-7ld\n", timebuf, liblist.l_checksum, in process_gnu_liblist()
/NextBSD/contrib/tnftp/src/
HDutil.c718 struct tm timebuf; in remotemodtime() local
751 memset(&timebuf, 0, sizeof(timebuf)); in remotemodtime()
753 (strptime(timestr, "%Y%m%d%H%M%S", &timebuf) == NULL)) { in remotemodtime()
758 timebuf.tm_isdst = -1; in remotemodtime()
759 rtime = timegm(&timebuf); in remotemodtime()
/NextBSD/lib/libfetch/
HDhttp.c1543 char timebuf[80]; in http_request_body() local
1637 (void)strftime(timebuf, 80, "%a, %d %b %Y %T GMT", in http_request_body()
1640 fetch_info("If-Modified-Since: %s", timebuf); in http_request_body()
1641 http_cmd(conn, "If-Modified-Since: %s", timebuf); in http_request_body()
/NextBSD/cddl/contrib/opensolaris/cmd/ztest/
HDztest.c5841 print_time(hrtime_t t, char *timebuf) in print_time() argument
5852 timebuf[0] = '\0'; in print_time()
5855 (void) sprintf(timebuf, in print_time()
5858 (void) sprintf(timebuf, "%lluh%02llum%02llus", h, m, s); in print_time()
5860 (void) sprintf(timebuf, "%llum%02llus", m, s); in print_time()
5862 (void) sprintf(timebuf, "%llus", s); in print_time()
6119 char timebuf[100]; in main() local
6256 print_time(zs->zs_proc_stop - now, timebuf); in main()
6267 (ztest_opts.zo_time * NANOSEC), timebuf); in main()
6281 print_time(zc->zc_time, timebuf); in main()
[all …]
/NextBSD/contrib/unbound/daemon/
HDremote.c2048 char timebuf[32]; in do_dump_requestlist() local
2061 get_mesh_age(m, timebuf, sizeof(timebuf), &worker->env); in do_dump_requestlist()
2064 num, (t?t:"TYPE??"), (c?c:"CLASS??"), buf, timebuf, in do_dump_requestlist()
/NextBSD/contrib/gcc/
HDChangeLog-200022368 * cpplib.h (struct cpp_reader): Remove timebuf.