| /netbsd-src/sys/external/bsd/drm2/dist/drm/amd/display/modules/stats/ |
| H A D | stats.c | 90 struct stats_time_cache *time; member 149 core_stats->time = kcalloc(core_stats->entries, in mod_stats_create() 153 if (core_stats->time == NULL) in mod_stats_create() 180 kfree(core_stats->time); in mod_stats_create() 194 kfree(core_stats->time); in mod_stats_destroy() 205 struct stats_time_cache *time = NULL; in mod_stats_dump() local 218 time = core_stats->time; in mod_stats_dump() 245 i == time[time_index].entry_id) { in mod_stats_dump() 250 time[time_index].render_time_in_us, in mod_stats_dump() 251 time[time_index].avg_render_time_in_us_last_ten, in mod_stats_dump() [all …]
|
| /netbsd-src/external/gpl3/binutils.old/dist/include/gdb/ |
| H A D | signals.def | 46 SET (GDB_SIGNAL_XCPU, 24, "SIGXCPU", "CPU time limit exceeded") 69 SET (GDB_SIGNAL_REALTIME_33, 45, "SIG33", "Real-time event 33") 70 SET (GDB_SIGNAL_REALTIME_34, 46, "SIG34", "Real-time event 34") 71 SET (GDB_SIGNAL_REALTIME_35, 47, "SIG35", "Real-time event 35") 72 SET (GDB_SIGNAL_REALTIME_36, 48, "SIG36", "Real-time event 36") 73 SET (GDB_SIGNAL_REALTIME_37, 49, "SIG37", "Real-time event 37") 74 SET (GDB_SIGNAL_REALTIME_38, 50, "SIG38", "Real-time event 38") 75 SET (GDB_SIGNAL_REALTIME_39, 51, "SIG39", "Real-time event 39") 76 SET (GDB_SIGNAL_REALTIME_40, 52, "SIG40", "Real-time event 40") 77 SET (GDB_SIGNAL_REALTIME_41, 53, "SIG41", "Real-time event 41") [all …]
|
| /netbsd-src/external/gpl3/binutils/dist/include/gdb/ |
| H A D | signals.def | 46 SET (GDB_SIGNAL_XCPU, 24, "SIGXCPU", "CPU time limit exceeded") 69 SET (GDB_SIGNAL_REALTIME_33, 45, "SIG33", "Real-time event 33") 70 SET (GDB_SIGNAL_REALTIME_34, 46, "SIG34", "Real-time event 34") 71 SET (GDB_SIGNAL_REALTIME_35, 47, "SIG35", "Real-time event 35") 72 SET (GDB_SIGNAL_REALTIME_36, 48, "SIG36", "Real-time event 36") 73 SET (GDB_SIGNAL_REALTIME_37, 49, "SIG37", "Real-time event 37") 74 SET (GDB_SIGNAL_REALTIME_38, 50, "SIG38", "Real-time event 38") 75 SET (GDB_SIGNAL_REALTIME_39, 51, "SIG39", "Real-time event 39") 76 SET (GDB_SIGNAL_REALTIME_40, 52, "SIG40", "Real-time event 40") 77 SET (GDB_SIGNAL_REALTIME_41, 53, "SIG41", "Real-time event 41") [all …]
|
| /netbsd-src/external/mpl/bind/dist/tests/isccfg/ |
| H A D | duration_test.c | 89 uint32_t time; 112 { .string = "unlimited", .time = 0 }, in ISC_RUN_TEST_IMPL() 113 { .string = "PT0S", .time = 0 }, in ISC_RUN_TEST_IMPL() 114 { .string = "PT42S", .time = 42 }, in ISC_RUN_TEST_IMPL() 115 { .string = "PT10m", .time = 600 }, in ISC_RUN_TEST_IMPL() 116 { .string = "PT10m4S", .time = 604 }, in ISC_RUN_TEST_IMPL() 117 { .string = "PT3600S", .time = 3600 }, in ISC_RUN_TEST_IMPL() 118 { .string = "pT2H", .time = 7200 }, in ISC_RUN_TEST_IMPL() 119 { .string = "Pt2H3S", .time = 7203 }, in ISC_RUN_TEST_IMPL() 120 { .string = "PT2h1m3s", .time in ISC_RUN_TEST_IMPL() 90 uint32_t time; global() member [all...] |
| /netbsd-src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/ |
| H A D | nouveau_nvkm_core_subdev.c | 121 s64 time; in nvkm_subdev_fini() local 124 time = ktime_to_us(ktime_get()); in nvkm_subdev_fini() 137 time = ktime_to_us(ktime_get()) - time; in nvkm_subdev_fini() 138 nvkm_trace(subdev, "%s completed in %"PRId64"us\n", action, time); in nvkm_subdev_fini() 145 s64 time; in nvkm_subdev_preinit() local 148 time = ktime_to_us(ktime_get()); in nvkm_subdev_preinit() 158 time = ktime_to_us(ktime_get()) - time; in nvkm_subdev_preinit() 159 nvkm_trace(subdev, "preinit completed in %"PRId64"us\n", time); in nvkm_subdev_preinit() 166 s64 time; in nvkm_subdev_init() local 170 time = ktime_to_us(ktime_get()); in nvkm_subdev_init() [all …]
|
| /netbsd-src/external/bsd/libbind/dist/nameser/ |
| H A D | ns_date.c | 58 struct tm time; in ns_datetosecs() local 70 memset(&time, 0, sizeof time); in ns_datetosecs() 71 time.tm_year = datepart(cp + 0, 4, 1990, 9999, errp) - 1900; in ns_datetosecs() 72 time.tm_mon = datepart(cp + 4, 2, 01, 12, errp) - 1; in ns_datetosecs() 73 time.tm_mday = datepart(cp + 6, 2, 01, 31, errp); in ns_datetosecs() 74 time.tm_hour = datepart(cp + 8, 2, 00, 23, errp); in ns_datetosecs() 75 time.tm_min = datepart(cp + 10, 2, 00, 59, errp); in ns_datetosecs() 76 time.tm_sec = datepart(cp + 12, 2, 00, 59, errp); in ns_datetosecs() 88 result = time.tm_sec; /*%< Seconds */ in ns_datetosecs() 89 result += time.tm_min * 60; /*%< Minutes */ in ns_datetosecs() [all …]
|
| /netbsd-src/external/cddl/dtracetoolkit/dist/Docs/Notes/ |
| H A D | ALLexclusive_notes.txt | 11 * What is "exclusive" function time? 13 This is the time of function execution, from when the function begins to 14 when it completes, excluding the time spent executing any child function. 16 Exclusive function time can be calculated like this, 18 exclusive function time = time(function end) - time(function start) - 19 time(total child exclusive time) 22 time, so that it can be subtracted from the parent execution time. 69 Exclusive function time for func_a() in the above output would be the 70 time from line 2 to line 13 minus the time from line 5 to 12 to subtract 71 the time spent in both func_b() and func_c(). Or, you could say that [all …]
|
| H A D | ALLinclusive_notes.txt | 11 * What is "inclusive" function time? 13 This is the time of function execution, from when the function begins to 16 Inclusive function time is calculated in a very simple way, 18 inclusive function time = time(function end) - time(function start) 66 Inclusive function time for func_a() in the above output would be the 67 time from line 2 to line 13. This inclusive time includes the time 70 Looking back at the code, inclusive time for func_a() is the time spent 73 See Notes/ALLexclusive_notes.txt for details on "exclusive" function time.
|
| H A D | ALLelapsed_notes.txt | 2 * The following are notes for all scripts that measure elapsed time. 10 * What is "elapsed" time? 12 Elapsed time is the absolute time from one point to another. This time 14 off-CPU time due to other system events such as I/O, scheduling, 19 elapsed time. 24 time and take the average (or run your workload several times and let 27 See Notes/ALLoncpu_notes.txt for a description of a different time 28 measurement, "on-CPU" time. 31 * How is "elapsed" time measured? 33 In DTrace, the following template provides elapsed time as "this->elapsed",
|
| /netbsd-src/external/cddl/dtracetoolkit/dist/Notes/ |
| H A D | ALLexclusive_notes.txt | 11 * What is "exclusive" function time? 13 This is the time of function execution, from when the function begins to 14 when it completes, excluding the time spent executing any child function. 16 Exclusive function time can be calculated like this, 18 exclusive function time = time(function end) - time(function start) - 19 time(total child exclusive time) 22 time, so that it can be subtracted from the parent execution time. 69 Exclusive function time for func_a() in the above output would be the 70 time from line 2 to line 13 minus the time from line 5 to 12 to subtract 71 the time spent in both func_b() and func_c(). Or, you could say that [all …]
|
| H A D | ALLinclusive_notes.txt | 11 * What is "inclusive" function time? 13 This is the time of function execution, from when the function begins to 16 Inclusive function time is calculated in a very simple way, 18 inclusive function time = time(function end) - time(function start) 66 Inclusive function time for func_a() in the above output would be the 67 time from line 2 to line 13. This inclusive time includes the time 70 Looking back at the code, inclusive time for func_a() is the time spent 73 See Notes/ALLexclusive_notes.txt for details on "exclusive" function time.
|
| H A D | ALLelapsed_notes.txt | 2 * The following are notes for all scripts that measure elapsed time. 10 * What is "elapsed" time? 12 Elapsed time is the absolute time from one point to another. This time 14 off-CPU time due to other system events such as I/O, scheduling, 19 elapsed time. 24 time and take the average (or run your workload several times and let 27 See Notes/ALLoncpu_notes.txt for a description of a different time 28 measurement, "on-CPU" time. 31 * How is "elapsed" time measured? 33 In DTrace, the following template provides elapsed time as "this->elapsed",
|
| /netbsd-src/usr.sbin/mrouted/ |
| H A D | callout.c | 25 int time; /* time offset to next event*/ member 58 if (!ptr->time) { in age_callout_queue() 71 ptr->time --; in age_callout_queue() 73 logit(LOG_DEBUG,0,"[callout, age_callout_queue] -- time (%d)", ptr->time); in age_callout_queue() 109 node->time = delay; in timer_setTimer() 124 if (delay < ptr->time) { in timer_setTimer() 132 ptr->time -= node->time; in timer_setTimer() 139 delay -= ptr->time; node->time = delay; in timer_setTimer() 185 (ptr->next)->time += ptr->time; in timer_clearTimer() 210 logit(LOG_DEBUG,0,"(%d,%d) ", ptr->id, ptr->time); in print_Q() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/ |
| H A D | X509_cmp_time.pod | 7 - X509 time functions 22 X509_cmp_time() compares the ASN1_TIME in I<asn1_time> with the time 26 I<asn1_time> with the current time, expressed as time_t. 28 X509_cmp_timeframe() compares the given time period with the reference time 30 B<X509_V_FLAG_USE_CHECK_TIME>; else the current time is used as reference time. 32 X509_time_adj_ex() sets the ASN1_TIME structure I<asn1_time> to the time 35 X509_time_adj() sets the ASN1_TIME structure I<asn1_time> to the time 43 In all methods, if I<in_tm> is NULL, the current time, expressed as 49 X509_gmtime_adj() sets the ASN1_TIME structure I<asn1_time> to the time 50 I<offset_sec> after the current time. It is equivalent to calling [all …]
|
| H A D | ASN1_TIME_set.pod | 70 functions set the structure I<s> to the time represented by the time_t 71 value I<t>. If I<s> is NULL a new time structure is allocated and returned. 74 functions set the time structure I<s> to the time represented 75 by the time I<offset_day> and I<offset_sec> after the time_t value I<t>. 77 time before I<t>. The I<offset_sec> value can also exceed the number of 82 ASN1_GENERALIZEDTIME_set_string() functions set the time structure I<s> 83 to the time represented by string I<str> which must be in appropriate ASN.1 84 time format (for example YYMMDDHHMMSSZ or YYYYMMDDHHMMSSZ). If I<s> is NULL 88 ASN1_TIME_set_string_X509() sets B<ASN1_TIME> structure I<s> to the time 89 represented by string I<str> which must be in appropriate time format [all …]
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/ |
| H A D | ASN1_TIME_set.pod | 64 functions set the structure B<s> to the time represented by the time_t 65 value B<t>. If B<s> is NULL a new time structure is allocated and returned. 68 functions set the time structure B<s> to the time represented 69 by the time B<offset_day> and B<offset_sec> after the time_t value B<t>. 71 time before B<t>. The B<offset_sec> value can also exceed the number of 76 ASN1_GENERALIZEDTIME_set_string() functions set the time structure B<s> 77 to the time represented by string B<str> which must be in appropriate ASN.1 78 time format (for example YYMMDDHHMMSSZ or YYYYMMDDHHMMSSZ). If B<s> is NULL 82 ASN1_TIME_set_string_X509() sets ASN1_TIME structure B<s> to the time 83 represented by string B<str> which must be in appropriate time format [all …]
|
| /netbsd-src/lib/libc/ |
| H A D | README | 150 Consequently, the signature of time(3), written as 152 time_t time(time_t *); 156 int32_t time(int32_t *); 160 int64_t time(int64_t *); 165 time weak alias for _time 170 time weak alias for _time 177 The header file <time.h> (src/include/time.h) declares 179 time_t time(time_t *) __RENAME(__time50); 181 so that compiling C programs that call time will yield objects that 187 defines `time' as a macro expanding to `_time': [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/datetime/ |
| H A D | timezone.d | 31 import core.time : abs, convert, dur, Duration, hours, minutes; 47 import core.stdc.time : time_t; in version() 68 Represents a time zone. It is used with $(REF SysTime,std,datetime,systime) 69 to indicate the time zone of a $(REF SysTime,std,datetime,systime). 76 The name of the time zone. Exactly how the time zone name is formatted 79 name that Windows chose to give the registry key for that time zone 81 English). For other time zone types, what it is depends on how they're 145 in UTC time (i.e. std time) and converts it to this time zone's time. in name() 148 stdTime = The UTC time that needs to be adjusted to this time zone's in name() 156 in this time zone's time and converts it to UTC (i.e. std time). in name() [all …]
|
| H A D | package.d | 6 Phobos provides the following functionality for time: 43 $(REF_ALTTEXT Duration, Duration, core, time)$(NBSP) 44 $(REF_ALTTEXT weeks, weeks, core, time)$(NBSP) 45 $(REF_ALTTEXT days, days, core, time)$(NBSP) 46 $(REF_ALTTEXT hours, hours, core, time)$(NBSP) 47 $(REF_ALTTEXT minutes, minutes, core, time)$(NBSP) 48 $(REF_ALTTEXT seconds, seconds, core, time)$(NBSP) 49 $(REF_ALTTEXT msecs, msecs, core, time)$(NBSP) 50 $(REF_ALTTEXT usecs, usecs, core, time)$(NBSP) 51 $(REF_ALTTEXT hnsecs, hnsecs, core, time)$(NBSP) [all …]
|
| /netbsd-src/games/trek/ |
| H A D | warp.c | 82 double time; in warp() local 114 time = dist / speed; in warp() 117 percent = 100 * time / Now.time + 0.5; in warp() 129 time *= frac; in warp() 135 Move.time = move(fl, course, time, speed); in warp() 138 dist = Move.time * speed; in warp() 161 time = (Ship.warp - 8.0) * dist * (franf() + 1.0); in warp() 162 Now.date += time; in warp() 169 Event[i].date += time; in warp() 175 time = Now.date; in warp() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libiberty/ |
| H A D | pex-unix.c | 126 struct pex_time *time) in pex_wait() argument 132 if (time == NULL) in pex_wait() 138 if (time != NULL) in pex_wait() 140 time->user_seconds = r.ru_utime.tv_sec; in pex_wait() 141 time->user_microseconds= r.ru_utime.tv_usec; in pex_wait() 142 time->system_seconds = r.ru_stime.tv_sec; in pex_wait() 143 time->system_microseconds= r.ru_stime.tv_usec; in pex_wait() 157 struct pex_time *time) in pex_wait() argument 159 if (time != NULL) in pex_wait() 160 memset (time, 0, sizeof (struct pex_time)); in pex_wait() [all …]
|
| /netbsd-src/external/gpl3/binutils.old/dist/libiberty/ |
| H A D | pex-unix.c | 126 struct pex_time *time) in pex_wait() argument 132 if (time == NULL) in pex_wait() 138 if (time != NULL) in pex_wait() 140 time->user_seconds = r.ru_utime.tv_sec; in pex_wait() 141 time->user_microseconds= r.ru_utime.tv_usec; in pex_wait() 142 time->system_seconds = r.ru_stime.tv_sec; in pex_wait() 143 time->system_microseconds= r.ru_stime.tv_usec; in pex_wait() 157 struct pex_time *time) in pex_wait() argument 159 if (time != NULL) in pex_wait() 160 memset (time, 0, sizeof (struct pex_time)); in pex_wait() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libiberty/ |
| H A D | pex-unix.c | 126 struct pex_time *time) in pex_wait() argument 132 if (time == NULL) in pex_wait() 138 if (time != NULL) in pex_wait() 140 time->user_seconds = r.ru_utime.tv_sec; in pex_wait() 141 time->user_microseconds= r.ru_utime.tv_usec; in pex_wait() 142 time->system_seconds = r.ru_stime.tv_sec; in pex_wait() 143 time->system_microseconds= r.ru_stime.tv_usec; in pex_wait() 157 struct pex_time *time) in pex_wait() argument 159 if (time != NULL) in pex_wait() 160 memset (time, 0, sizeof (struct pex_time)); in pex_wait() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/datetime/ |
| H A D | package.d | 8 $(LI Types to represent points in time: 13 $(LI Types to represent intervals of time.) 14 $(LI Types to represent ranges over intervals of time.) 15 $(LI Types to represent time zones (used by 23 Closely related to std.datetime is <a href="core_time.html">$(D core.time)</a>, 24 and some of the time types used in std.datetime come from there - such as 25 $(REF Duration, core,time), $(REF TickDuration, core,time), and 26 $(REF FracSec, core,time). 27 core.time is publically imported into std.datetime, it isn't necessary 53 time), $(REF DateTime,std,_datetime,date) (if they want dates and times [all …]
|
| /netbsd-src/external/gpl2/xcvs/dist/m4/ |
| H A D | timespec.m4 | 17 AC_CHECK_HEADERS_ONCE(sys/time.h) 20 dnl Persuade glibc <time.h> to declare nanosleep(). 23 AC_CHECK_DECLS(nanosleep, , , [#include <time.h>]) 27 dnl in time.h or sys/time.h. 35 AC_CHECK_HEADERS_ONCE(sys/time.h) 40 # include <sys/time.h> 41 # include <time.h> 44 # include <sys/time.h> 46 # include <time.h> 57 [Define if struct timespec is declared in <time.h>. ])
|