HomeSort by: relevance | last modified time | path
    Searched refs:time (Results 1 - 25 of 1869) 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"
compat_siglist.c 42 #include <sys/time.h>
43 #include <compat/sys/time.h>
compat_signame.c 42 #include <sys/time.h>
43 #include <compat/sys/time.h>
compat_times.c 11 #include <time.h>
12 #include <compat/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"
compat_asctime.c 12 #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/
stats.c 90 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_index].render_time_in_us
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/
xtime.c 6 #include <sys/time.h>
9 #include "csh/time.c"
  /src/sys/arch/evbmips/stand/sbmips/netboot/
getsecs.c 50 long long time; local in function:getsecs
52 time = cfe_getticks();
54 return (time / 10);
  /src/sys/arch/sbmips/stand/netboot/
getsecs.c 50 long long time; local in function:getsecs
52 time = cfe_getticks();
54 return (time / 10);
  /src/sys/compat/sys/
timex.h 24 #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/lib/libc/compat/sys/
compat___ntp_gettime30.c 10 #include <sys/time.h>
24 ontvp->time.tv_sec = (int32_t)ntv.time.tv_sec;
25 ontvp->time.tv_nsec = ntv.time.tv_nsec;
compat_ntp_gettime.c 10 #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;
compat_gettimeofday.c 41 #include <sys/time.h>
42 #include <compat/sys/time.h>
45 "warning: reference to compatibility gettimeofday(); include <sys/time.h> to generate correct reference")
compat_mknod.c 45 #include <sys/time.h>
46 #include <compat/sys/time.h>
  /src/games/trek/
impulse.c 55 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;
rest.c 66 /* 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;
warp.c 61 ** 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, speed)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/
nouveau_nvkm_core_subdev.c 121 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/
time.c 1 /* $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/
compat_parsedate.c 42 #include <time.h>
43 #include <sys/time.h>
44 #include <compat/include/time.h>
45 #include <compat/sys/time.h>
  /src/usr.sbin/mrouted/
callout.c 25 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/
priv.h 16 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/
init_braces.c 71 struct time { struct in function:init_anonymous_struct_and_union
76 struct time t0;
77 struct time t1;
  /src/sys/sys/
timeb.h 44 time_t time; /* seconds since the Epoch */ member in struct:timeb

Completed in 24 milliseconds

1 2 3 4 5 6 7 8 91011>>