HomeSort by: relevance | last modified time | path
    Searched refs:time (Results 1 - 25 of 4849) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libc/compat/gen/
compat_time.c 12 #include <time.h>
13 #include <sys/time.h>
14 #include <compat/include/time.h>
15 #include <compat/sys/time.h>
18 __weak_alias(time,_time)
21 __warn_references(time,
22 "warning: reference to compatibility time();"
23 " include <time.h> for correct reference")
30 #include "gen/time.c"
  /src/external/bsd/jemalloc/dist/src/
nstime.c 12 nstime_set_initialized(nstime_t *time) {
14 time->magic = NSTIME_MAGIC;
19 nstime_assert_initialized(const nstime_t *time) {
25 assert(time->magic == NSTIME_MAGIC ||
26 (time->magic == 0 && time->ns == 0));
37 nstime_initialize_operand(nstime_t *time) {
43 nstime_assert_initialized(time);
44 nstime_set_initialized(time);
48 nstime_init(nstime_t *time, uint64_t ns)
    [all...]
  /src/external/gpl2/xcvs/dist/lib/
xtime.h 11 /* This file simply performs the include magic necessary for using time
18 # include <time.h>
22 # include <sys/time.h>
23 # include <time.h>
26 # include <sys/time.h>
28 # include <time.h>
strftime.h 19 #include <time.h>
  /src/external/bsd/jemalloc.old/dist/src/
nstime.c 12 nstime_init(nstime_t *time, uint64_t ns) {
13 time->ns = ns;
17 nstime_init2(nstime_t *time, uint64_t sec, uint64_t nsec) {
18 time->ns = sec * BILLION + nsec;
22 nstime_ns(const nstime_t *time) {
23 return time->ns;
27 nstime_msec(const nstime_t *time) {
28 return time->ns / MILLION;
32 nstime_sec(const nstime_t *time) {
33 return time->ns / BILLION
    [all...]
  /src/external/gpl3/binutils/dist/libiberty/
gettimeofday.c 4 #include <time.h>
7 #include <sys/time.h>
14 Writes the current time to @var{tp}. This implementation requires
27 if (time (&tp->tv_sec) == (time_t) -1)
  /src/external/gpl3/binutils.old/dist/libiberty/
gettimeofday.c 4 #include <time.h>
7 #include <sys/time.h>
14 Writes the current time to @var{tp}. This implementation requires
27 if (time (&tp->tv_sec) == (time_t) -1)
  /src/external/gpl3/gcc/dist/libgfortran/intrinsics/
time.c 1 /* Implementation of the TIME and TIME8 g77 intrinsics.
27 #include <time.h>
30 /* INTEGER(KIND=4) FUNCTION TIME() */
38 return (GFC_INTEGER_4) time (NULL);
49 return (GFC_INTEGER_8) time (NULL);
  /src/external/gpl3/gcc/dist/libiberty/
gettimeofday.c 4 #include <time.h>
7 #include <sys/time.h>
14 Writes the current time to @var{tp}. This implementation requires
27 if (time (&tp->tv_sec) == (time_t) -1)
  /src/external/gpl3/gcc.old/dist/libgfortran/intrinsics/
time.c 1 /* Implementation of the TIME and TIME8 g77 intrinsics.
27 #include <time.h>
30 /* INTEGER(KIND=4) FUNCTION TIME() */
38 return (GFC_INTEGER_4) time (NULL);
49 return (GFC_INTEGER_8) time (NULL);
  /src/external/gpl3/gcc.old/dist/libiberty/
gettimeofday.c 4 #include <time.h>
7 #include <sys/time.h>
14 Writes the current time to @var{tp}. This implementation requires
27 if (time (&tp->tv_sec) == (time_t) -1)
  /src/external/gpl3/gdb/dist/libiberty/
gettimeofday.c 4 #include <time.h>
7 #include <sys/time.h>
14 Writes the current time to @var{tp}. This implementation requires
27 if (time (&tp->tv_sec) == (time_t) -1)
  /src/external/gpl3/gdb.old/dist/libiberty/
gettimeofday.c 4 #include <time.h>
7 #include <sys/time.h>
14 Writes the current time to @var{tp}. This implementation requires
27 if (time (&tp->tv_sec) == (time_t) -1)
  /src/crypto/external/apache2/openssl/dist/os-dep/
haiku.h 11 #include <sys/time.h>
  /src/crypto/external/bsd/openssl/dist/os-dep/
haiku.h 11 #include <sys/time.h>
  /src/crypto/external/bsd/openssl.old/dist/os-dep/
haiku.h 2 #include <sys/time.h>
  /src/external/bsd/openldap/dist/contrib/ldapc++/src/ac/
time.h 1 /* $NetBSD: time.h,v 1.4 2025/09/05 21:16:14 christos Exp $ */
3 /* Generic time.h */
19 # include <sys/time.h>
24 # include <time.h>
  /src/lib/libc/compat/time/
compat_difftime.c 41 #include <time.h>
42 #include <sys/time.h>
43 #include <compat/include/time.h>
44 #include <compat/sys/time.h>
54 #include "time/difftime.c"
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.btrace/
vdso.c 20 #include <sys/time.h>
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.btrace/
vdso.c 20 #include <sys/time.h>
  /src/external/ibm-public/postfix/dist/src/global/
mail_date.h 10 /* return formatted time
19 #include <time.h>
  /src/external/ibm-public/postfix/dist/src/util/
sane_time.h 10 /* time(2) with backward time jump protection
19 #include <time.h>
timecmp.h 6 #include <time.h>
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
nstime.h 23 void nstime_init(nstime_t *time, uint64_t ns);
24 void nstime_init2(nstime_t *time, uint64_t sec, uint64_t nsec);
25 uint64_t nstime_ns(const nstime_t *time);
26 uint64_t nstime_sec(const nstime_t *time);
27 uint64_t nstime_msec(const nstime_t *time);
28 uint64_t nstime_nsec(const nstime_t *time);
29 void nstime_copy(nstime_t *time, const nstime_t *source);
31 void nstime_add(nstime_t *time, const nstime_t *addend);
32 void nstime_iadd(nstime_t *time, uint64_t addend);
33 void nstime_subtract(nstime_t *time, const nstime_t *subtrahend)
    [all...]
  /src/external/bsd/jemalloc/include/jemalloc/internal/
nstime.h 23 void nstime_init(nstime_t *time, uint64_t ns);
24 void nstime_init2(nstime_t *time, uint64_t sec, uint64_t nsec);
25 uint64_t nstime_ns(const nstime_t *time);
26 uint64_t nstime_sec(const nstime_t *time);
27 uint64_t nstime_msec(const nstime_t *time);
28 uint64_t nstime_nsec(const nstime_t *time);
29 void nstime_copy(nstime_t *time, const nstime_t *source);
31 void nstime_add(nstime_t *time, const nstime_t *addend);
32 void nstime_iadd(nstime_t *time, uint64_t addend);
33 void nstime_subtract(nstime_t *time, const nstime_t *subtrahend)
    [all...]

Completed in 47 milliseconds

1 2 3 4 5 6 7 8 91011>>