Searched refs:time (Results 1 - 25 of 1878) sorted by relevance

1234567891011>>

/src/lib/libc/compat/gen/
H A Dcompat_time.c12 #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"
H A Dcompat_siglist.c42 #include <sys/time.h>
43 #include <compat/sys/time.h>
H A Dcompat_signame.c42 #include <sys/time.h>
43 #include <compat/sys/time.h>
H A Dcompat_times.c11 #include <time.h>
12 #include <compat/include/time.h>
/src/lib/libc/compat/time/
H A Dcompat_difftime.c41 #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"
H A Dcompat_asctime.c12 #include <time.h>
13 #include <sys/time.h>
14 #include <compat/include/time.h>
15 #include <compat/sys/time.h>
24 " include <time.h> for correct reference")
27 " include <time.h> for correct reference")
33 #include "time/asctime.c"
/src/sys/external/bsd/drm2/dist/drm/amd/display/modules/stats/
H A Dstats.c90 struct stats_time_cache *time; member in struct:core_stats
149 core_stats->time = kcalloc(core_stats->entries,
153 if (core_stats->time == NULL)
180 kfree(core_stats->time);
194 kfree(core_stats->time);
205 struct stats_time_cache *time = NULL; local in function:mod_stats_dump
218 time = core_stats->time;
245 i == time[time_index].entry_id) {
250 time[time_inde
280 struct stats_time_cache *time = NULL; local in function:mod_stats_reset_data
337 struct stats_time_cache *time = NULL; local in function:mod_stats_update_flip
380 struct stats_time_cache *time = NULL; local in function:mod_stats_update_vupdate
430 struct stats_time_cache *time = NULL; local in function:mod_stats_update_freesync
[all...]
/src/usr.bin/time/
H A Dxtime.c6 #include <sys/time.h>
9 #include "csh/time.c"
/src/sys/compat/sys/
H A Dtimex.h24 #include <compat/sys/time.h>
28 * Note: The time member is in microseconds if STA_NANO is zero and
32 struct timespec50 time; /* current time (ns) (ro) */ member in struct:ntptimeval50
36 int time_state; /* time status */
40 struct timeval50 time; /* current time (ro) */ member in struct:ntptimeval30
/src/sys/arch/sbmips/stand/netboot/
H A Dgetsecs.c50 long long time; local in function:getsecs
52 time = cfe_getticks();
54 return (time / 10);
/src/sys/arch/evbmips/stand/sbmips/netboot/
H A Dgetsecs.c50 long long time; local in function:getsecs
52 time = cfe_getticks();
54 return (time / 10);
/src/lib/libc/compat/sys/
H A Dcompat___ntp_gettime30.c10 #include <sys/time.h>
24 ontvp->time.tv_sec = (int32_t)ntv.time.tv_sec;
25 ontvp->time.tv_nsec = ntv.time.tv_nsec;
H A Dcompat_ntp_gettime.c10 #include <sys/time.h>
24 ontvp->time.tv_sec = (int32_t)ntv.time.tv_sec;
25 ontvp->time.tv_usec = ntv.time.tv_nsec / 1000;
H A Dcompat__lwp_park.c45 #include <sys/time.h>
46 #include <compat/sys/time.h>
H A Dcompat_gettimeofday.c41 #include <sys/time.h>
42 #include <compat/sys/time.h>
45 "warning: reference to compatibility gettimeofday(); include <sys/time.h> to generate correct reference")
/src/games/trek/
H A Dimpulse.c55 double dist, time; local in function:impulse
78 time = dist / 0.095;
79 percent = 100 * time / Now.time + 0.5;
81 printf("Spock: That would take %d%% of our remaining time.\n",
87 Move.time = move(0, course, time, 0.095);
88 Ship.energy -= 20 + 100 * Move.time * 0.095;
H A Drest.c66 /* get the time to rest */
70 percent = 100 * t / Now.time + 0.5;
72 printf("Spock: That would take %d%% of our remaining time.\n",
77 Move.time = t;
81 if (Ship.cond != DOCKED && Move.time > t)
82 Move.time = t + 0.0001;
H A Dwarp.c61 ** case, there is code to handle time warps, etc.
82 double time; local in function:warp
112 /* compute the speed we will move at, and the time it will take */
114 time = dist / speed;
117 percent = 100 * time / Now.time + 0.5;
119 printf("Spock: That would take %d%% of our remaining time.\n",
129 time *= frac;
135 Move.time = move(fl, course, time, spee
[all...]
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/
H A Dnouveau_nvkm_core_subdev.c121 s64 time; local in function:nvkm_subdev_fini
124 time = ktime_to_us(ktime_get());
137 time = ktime_to_us(ktime_get()) - time;
138 nvkm_trace(subdev, "%s completed in %"PRId64"us\n", action, time);
145 s64 time; local in function:nvkm_subdev_preinit
148 time = ktime_to_us(ktime_get());
158 time = ktime_to_us(ktime_get()) - time;
159 nvkm_trace(subdev, "preinit completed in %"PRId64"us\n", time);
166 s64 time; local in function:nvkm_subdev_init
173 s64 time; local in function:nvkm_subdev_init
204 s64 time; local in function:nvkm_subdev_del
[all...]
/src/lib/libc/gen/
H A Dtime.c1 /* $NetBSD: time.c,v 1.12 2012/03/13 21:13:37 christos Exp $ */
35 static char sccsid[] = "@(#)time.c 8.1 (Berkeley) 6/4/93";
37 __RCSID("$NetBSD: time.c,v 1.12 2012/03/13 21:13:37 christos Exp $");
43 #include <sys/time.h>
45 #include <time.h>
48 time(time_t *t) function in typeref:typename:time_t
/src/lib/libutil/compat/
H A Dcompat_parsedate.c42 #include <time.h>
43 #include <sys/time.h>
44 #include <compat/include/time.h>
45 #include <compat/sys/time.h>
/src/usr.sbin/mrouted/
H A Dcallout.c25 int time; /* time offset to next event*/ member in struct:timeout_q
58 if (!ptr->time) {
71 ptr->time --;
73 logit(LOG_DEBUG,0,"[callout, age_callout_queue] -- time (%d)", ptr->time);
109 node->time = delay;
124 if (delay < ptr->time) {
132 ptr->time -= node->time;
[all...]
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/timer/
H A Dpriv.h16 void (*time)(struct nvkm_timer *, u64 time); member in struct:nvkm_timer_func
17 void (*alarm_init)(struct nvkm_timer *, u32 time);
/src/tests/usr.bin/xlint/lint1/
H A Dinit_braces.c71 struct time { struct in function:init_anonymous_struct_and_union
76 struct time t0;
77 struct time t1;
/src/sys/sys/
H A Dtimeb.h44 time_t time; /* seconds since the Epoch */ member in struct:timeb

Completed in 10 milliseconds

1234567891011>>