Symbol: tn
games/robots/move.c
213
timespecadd(&tn, &tv, &tn);
games/robots/move.c
214
if (timespeccmp(&tn, &t, <))
games/robots/move.c
218
timespecsub(&tn, &t, &t);
games/robots/move.c
52
struct timespec t, tn;
games/robots/move.c
70
clock_gettime(CLOCK_MONOTONIC, &tn);
games/worm/worm.c
160
clock_gettime(CLOCK_MONOTONIC, &tn);
games/worm/worm.c
161
if (timespeccmp(&t, &tn, <=)) {
games/worm/worm.c
162
t = tn;
games/worm/worm.c
172
timespecsub(&t, &tn, &tdiff);
games/worm/worm.c
90
struct timespec t, tn, tdiff;
lib/libcurses/tinfo/lib_setup.c
495
_nc_setup_tinfo(const char *const tn, TERMTYPE2 *const tp)
lib/libcurses/tinfo/lib_setup.c
498
int status = _nc_read_entry2(tn, filename, tp);
lib/libcurses/tinfo/read_termcap.c
1050
} else if (_nc_name_match(tc, tn, "|:")) { /* treat as a capability file */
lib/libcurses/tinfo/read_termcap.c
1129
TR(TRACE_DATABASE, ("Looking for %s in %s", tn, termpaths[i]));
lib/libcurses/tinfo/read_termcap.c
1162
if (_nc_name_match(ep->tterm.term_names, tn, "|:")) {
lib/libcurses/tinfo/read_termcap.c
962
_nc_read_termcap_entry(const char *const tn, TERMTYPE2 *const tp)
lib/libcurses/tinfo/read_termcap.c
977
TR(TRACE_DATABASE, ("read termcap entry for %s", tn));
lib/libcurses/tinfo/read_termcap.c
979
if (strlen(tn) == 0
lib/libcurses/tinfo/read_termcap.c
980
|| strcmp(tn, ".") == 0
lib/libcurses/tinfo/read_termcap.c
981
|| strcmp(tn, "..") == 0
lib/libcurses/tinfo/read_termcap.c
982
|| _nc_pathlast(tn) != 0) {
lib/libcurses/tinfo/read_termcap.c
983
TR(TRACE_DATABASE, ("illegal or missing entry name '%s'", tn));
lib/libcurses/tinfo/read_termcap.c
988
&& !_nc_is_abs_path(p) && _nc_name_match(p, tn, "|:")) {
lib/libcurses/tinfo/read_termcap.c
994
if ((status = _nc_tgetent(tc, &source, &lineno, tn)) < 0)
sbin/unwind/libunbound/validator/val_sigcrypt.c
1397
time_t te, ti, tn;
sbin/unwind/libunbound/validator/val_sigcrypt.c
1403
tn = (time_t)now;
sbin/unwind/libunbound/validator/val_sigcrypt.c
1407
&&gmtime_r(&tn, &tm) && strftime(now_buf, 15, "%Y%m%d%H%M%S", &tm)) {
sys/arch/landisk/include/bus.h
226
#define __bs_rs(sz, tn, t, h, o) \
sys/arch/landisk/include/bus.h
229
#define __bs_ws(sz, tn, t, h, o, v) \
sys/arch/landisk/include/bus.h
232
#define __bs_nonsingle(type, sz, tn, t, h, o, a, c) \
sys/arch/landisk/include/bus.h
235
#define __bs_set(type, sz, tn, t, h, o, v, c) \
sys/arch/landisk/include/bus.h
238
#define __bs_copy(sz, tn, t, h1, o1, h2, o2, cnt) \
sys/dev/pci/drm/i915/gt/intel_gt_requests.c
137
struct intel_timeline *tl, *tn;
sys/dev/pci/drm/i915/gt/intel_gt_requests.c
143
list_for_each_entry_safe(tl, tn, &timelines->active_list, link) {
sys/dev/pci/drm/i915/gt/intel_gt_requests.c
181
list_safe_reset_next(tl, tn, link);
sys/dev/pci/drm/i915/gt/intel_gt_requests.c
193
list_for_each_entry_safe(tl, tn, &free, link)
sys/dev/pci/drm/i915/gt/intel_timeline.c
418
struct intel_timeline *tl, *tn;
sys/dev/pci/drm/i915/gt/intel_timeline.c
422
list_for_each_entry_safe(tl, tn, &timelines->active_list, link) {
sys/dev/pci/drm/i915/gt/intel_timeline.c
474
list_safe_reset_next(tl, tn, link);
sys/dev/pci/drm/i915/gt/intel_timeline.c
486
list_for_each_entry_safe(tl, tn, &free, link)
sys/dev/usb/ugen.c
485
u_int32_t tn;
sys/dev/usb/ugen.c
579
usbd_get_xfer_status(xfer, NULL, NULL, &tn, NULL);
sys/dev/usb/ugen.c
580
DPRINTFN(1, ("ugenread: got %u bytes\n", tn));
sys/dev/usb/ugen.c
581
error = uiomove(buf, tn, uio);
sys/dev/usb/ugen.c
582
if (error || tn < n)
sys/tmpfs/tmpfs_mem.c
170
tmpfs_node_put(struct tmpfs_mount *mp, struct tmpfs_node *tn)
sys/tmpfs/tmpfs_mem.c
175
pool_put(&tmpfs_node_pool, tn);
usr.bin/lndir/lndir.c
116
tn = argv[1];
usr.bin/lndir/lndir.c
118
tn = ".";
usr.bin/lndir/lndir.c
121
if (stat(tn, &ts) == -1)
usr.bin/lndir/lndir.c
122
err(1, "%s", tn);
usr.bin/lndir/lndir.c
124
errc(2, ENOTDIR, "%s", tn);
usr.bin/lndir/lndir.c
125
if (chdir(tn) == -1)
usr.bin/lndir/lndir.c
126
err(1, "%s", tn);
usr.bin/lndir/lndir.c
86
char *fn, *tn;
usr.bin/make/generate.c
137
int tn;
usr.bin/make/generate.c
143
tn = strtonum(argv[1], 1, INT_MAX, &errstr);
usr.bin/make/generate.c
146
t = table[tn-1];
usr.bin/make/generate.c
158
tn, slots);
usr.bin/make/generate.c
176
printf("#define MAGICSLOTS%d %u\n", tn, slots);
usr.bin/pkgconf/libpkgconf/path.c
294
pkgconf_node_t *n, *tn;
usr.bin/pkgconf/libpkgconf/path.c
296
PKGCONF_FOREACH_LIST_ENTRY_SAFE(dirlist->head, tn, n)
usr.bin/telnet/commands.c
1948
{ "open", openhelp, tn, 0 },
usr.bin/telnet/externs.h
167
int tn(int argc, char **argv);
usr.bin/telnet/main.c
201
if (tn(argp - args, args) == 1)
usr.sbin/unbound/validator/val_sigcrypt.c
1397
time_t te, ti, tn;
usr.sbin/unbound/validator/val_sigcrypt.c
1403
tn = (time_t)now;
usr.sbin/unbound/validator/val_sigcrypt.c
1407
&&gmtime_r(&tn, &tm) && strftime(now_buf, 15, "%Y%m%d%H%M%S", &tm)) {