HomeSort by: relevance | last modified time | path
    Searched defs:times (Results 1 - 25 of 42) sorted by relevancy

1 2

  /src/lib/libc/gen/
times.c 1 /* $NetBSD: times.c,v 1.15 2009/01/11 02:46:27 christos Exp $ */
35 static char sccsid[] = "@(#)times.c 8.1 (Berkeley) 6/4/93";
37 __RCSID("$NetBSD: times.c,v 1.15 2009/01/11 02:46:27 christos Exp $");
44 #include <sys/times.h>
66 times(struct tms *tp) function in typeref:typename:clock_t
times.c 1 /* $NetBSD: times.c,v 1.15 2009/01/11 02:46:27 christos Exp $ */
35 static char sccsid[] = "@(#)times.c 8.1 (Berkeley) 6/4/93";
37 __RCSID("$NetBSD: times.c,v 1.15 2009/01/11 02:46:27 christos Exp $");
44 #include <sys/times.h>
66 times(struct tms *tp) function in typeref:typename:clock_t
  /src/tests/fs/vfs/
t_unpriv.c 123 times(const atf_tc_t *tc, const char *mp) function in typeref:typename:void
221 ATF_TC_FSAPPLY(times, "time set checks");
229 ATF_TP_FSAPPLY(times);
t_unpriv.c 123 times(const atf_tc_t *tc, const char *mp) function in typeref:typename:void
221 ATF_TC_FSAPPLY(times, "time set checks");
229 ATF_TP_FSAPPLY(times);
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
selftest_engine_heartbeat.c 204 u32 times[5]; local in function:__live_heartbeat_fast
218 for (i = 0; i < ARRAY_SIZE(times); i++) {
246 times[i] = ktime_us_delta(t1, t0);
249 sort(times, ARRAY_SIZE(times), sizeof(times[0]), cmp_u32, NULL);
253 times[ARRAY_SIZE(times) / 2],
254 times[0],
255 times[ARRAY_SIZE(times) - 1])
    [all...]
selftest_engine_heartbeat.c 204 u32 times[5]; local in function:__live_heartbeat_fast
218 for (i = 0; i < ARRAY_SIZE(times); i++) {
246 times[i] = ktime_us_delta(t1, t0);
249 sort(times, ARRAY_SIZE(times), sizeof(times[0]), cmp_u32, NULL);
253 times[ARRAY_SIZE(times) / 2],
254 times[0],
255 times[ARRAY_SIZE(times) - 1])
    [all...]
selftest_lrc.c 2767 ktime_t times[2] = {}; local in function:nop_virtual_engine
2793 times[1] = ktime_get_raw();
2848 times[1] = ktime_sub(ktime_get_raw(), times[1]);
2850 times[0] = times[1];
2866 nctx, ve[0]->engine->name, ktime_to_ns(times[0]),
2867 prime, div64_u64(ktime_to_ns(times[1]), prime));
  /src/tests/usr.bin/xlint/lint1/
init_braces.c 75 struct times { struct in function:init_anonymous_struct_and_union
83 struct times times; member in struct:init_anonymous_struct_and_union::outer::__anond93d92e8010a::__anond93d92e80208
91 .times = {
99 return var.times.t0.ns;
init_braces.c 75 struct times { struct in function:init_anonymous_struct_and_union
83 struct times times; member in struct:init_anonymous_struct_and_union::outer::__anond93d92e8010a::__anond93d92e80208
91 .times = {
99 return var.times.t0.ns;
  /src/games/warp/
term.c 708 int times = 0; /* loop detector */ local in function:getcmd
756 if (++times > 20) { /* loop? */
term.c 708 int times = 0; /* loop detector */ local in function:getcmd
756 if (++times > 20) { /* loop? */
  /src/sys/dev/pci/qat/
qat_hw17.c 140 int times, received; local in function:qat_adm_mailbox_put_msg_sync
154 for (times = 0; times < 50; times++) {
qat_hw17.c 140 int times, received; local in function:qat_adm_mailbox_put_msg_sync
154 for (times = 0; times < 50; times++) {
  /src/usr.bin/systat/
syscall.c 61 uint64_t times[SYS_NSYSENT]; member in struct:Info
122 if (sysctlnametomib("kern.syscalls.times", times_mib, &times_mib_len))
213 v = s.times[i] - s1.times[i];
217 v = v ? (s.times[i] - s1.times[i]) / v : 0;
253 mvprintw(l, c, FMT, "TIMES", "times");
282 memcpy(s1.times, s.times, sizeof s1.times)
    [all...]
syscall.c 61 uint64_t times[SYS_NSYSENT]; member in struct:Info
122 if (sysctlnametomib("kern.syscalls.times", times_mib, &times_mib_len))
213 v = s.times[i] - s1.times[i];
217 v = v ? (s.times[i] - s1.times[i]) / v : 0;
253 mvprintw(l, c, FMT, "TIMES", "times");
282 memcpy(s1.times, s.times, sizeof s1.times)
    [all...]
  /src/usr.bin/mail/
cmd2.c 458 int times; local in function:clobber
462 times = 1;
464 times = (atoi(argv[0]) + 511) / 512;
465 clob1(times);
cmd2.c 458 int times; local in function:clobber
462 times = 1;
464 times = (atoi(argv[0]) + 511) / 512;
465 clob1(times);
  /src/games/tetris/
scores.c 177 * - All times must be after 1985 and are before 2038,
782 int times; member in struct:checkscores::peruser
808 pu->times = 1;
817 if ((pu->times < MAXSCORES &&
821 pu->times++;
867 * Set times to 0 except for high score on each level.
scores.c 177 * - All times must be after 1985 and are before 2038,
782 int times; member in struct:checkscores::peruser
808 pu->times = 1;
817 if ((pu->times < MAXSCORES &&
821 pu->times++;
867 * Set times to 0 except for high score on each level.
  /src/sys/external/bsd/drm2/dist/drm/i915/selftests/
i915_request.c 544 ktime_t times[2] = {}; local in function:live_nop_request
554 times[1] = ktime_get_raw();
582 times[1] = ktime_sub(ktime_get_raw(), times[1]);
584 times[0] = times[1];
597 ktime_to_ns(times[0]),
598 prime, div64_u64(ktime_to_ns(times[1]), prime));
698 ktime_t times[2] = {}; local in function:live_empty_request
716 times[1] = ktime_get_raw()
    [all...]
i915_request.c 544 ktime_t times[2] = {}; local in function:live_nop_request
554 times[1] = ktime_get_raw();
582 times[1] = ktime_sub(ktime_get_raw(), times[1]);
584 times[0] = times[1];
597 ktime_to_ns(times[0]),
598 prime, div64_u64(ktime_to_ns(times[1]), prime));
698 ktime_t times[2] = {}; local in function:live_empty_request
716 times[1] = ktime_get_raw()
    [all...]
  /src/usr.bin/make/
arch.c 287 * they are (non-)substituted three times, but we need to do
778 struct utimbuf times; local in function:Arch_TouchLib
788 times.actime = times.modtime = now;
789 utime(gn->path, &times); /* TODO: handle errors */
arch.c 287 * they are (non-)substituted three times, but we need to do
778 struct utimbuf times; local in function:Arch_TouchLib
788 times.actime = times.modtime = now;
789 utime(gn->path, &times); /* TODO: handle errors */
  /src/sys/external/bsd/drm2/dist/drm/i915/gem/selftests/
i915_gem_context.c 84 ktime_t times[2] = {}; local in function:live_nop_switch
86 times[0] = ktime_get_raw();
111 times[1] = ktime_get_raw();
114 nctx, engine->name, ktime_to_ns(times[1] - times[0]));
122 times[1] = ktime_get_raw();
166 times[1] = ktime_sub(ktime_get_raw(), times[1]);
168 times[0] = times[1]
    [all...]
i915_gem_context.c 84 ktime_t times[2] = {}; local in function:live_nop_switch
86 times[0] = ktime_get_raw();
111 times[1] = ktime_get_raw();
114 nctx, engine->name, ktime_to_ns(times[1] - times[0]));
122 times[1] = ktime_get_raw();
166 times[1] = ktime_sub(ktime_get_raw(), times[1]);
168 times[0] = times[1]
    [all...]

Completed in 34 milliseconds

1 2