Home
last modified time | relevance | path

Searched refs:tn (Results 1 – 25 of 52) sorted by relevance

123

/openbsd/usr.bin/lndir/
H A Dlndir.c86 char *fn, *tn; in main() local
116 tn = argv[1]; in main()
118 tn = "."; in main()
121 if (stat(tn, &ts) == -1) in main()
122 err(1, "%s", tn); in main()
124 errc(2, ENOTDIR, "%s", tn); in main()
125 if (chdir(tn) == -1) in main()
126 err(1, "%s", tn); in main()
/openbsd/gnu/llvm/clang/include/clang/Basic/
H A DBuiltins.def749 BUILTIN(__sync_or_and_fetch_1, "ccD*c.", "tn")
798 BUILTIN(__sync_lock_release_1, "vcD*.", "tn")
799 BUILTIN(__sync_lock_release_2, "vsD*.", "tn")
800 BUILTIN(__sync_lock_release_4, "viD*.", "tn")
805 BUILTIN(__sync_swap_1, "ccD*c.", "tn")
806 BUILTIN(__sync_swap_2, "ssD*s.", "tn")
807 BUILTIN(__sync_swap_4, "iiD*i.", "tn")
808 BUILTIN(__sync_swap_8, "LLiLLiD*LLi.", "tn")
1572 BUILTIN(__builtin_annotation, "v.", "tn")
1656 LANGBUILTIN(read_pipe, "i.", "tn", OCL_PIPE)
[all …]
/openbsd/games/robots/
H A Dmove.c52 struct timespec t, tn; in get_move() local
70 clock_gettime(CLOCK_MONOTONIC, &tn); in get_move()
213 timespecadd(&tn, &tv, &tn); in get_move()
214 if (timespeccmp(&tn, &t, <)) in get_move()
218 timespecsub(&tn, &t, &t); in get_move()
/openbsd/usr.bin/make/
H A Dgenerate.c147 int tn; in main() local
153 tn = strtonum(argv[1], 1, INT_MAX, &errstr); in main()
156 t = table[tn-1]; in main()
168 tn, slots); in main()
186 printf("#define MAGICSLOTS%d %u\n", tn, slots); in main()
/openbsd/lib/libcurses/tinfo/
H A Dread_termcap.c962 _nc_read_termcap_entry(const char *const tn, TERMTYPE2 *const tp) in _nc_read_termcap_entry() argument
977 TR(TRACE_DATABASE, ("read termcap entry for %s", tn)); in _nc_read_termcap_entry()
979 if (strlen(tn) == 0 in _nc_read_termcap_entry()
980 || strcmp(tn, ".") == 0 in _nc_read_termcap_entry()
981 || strcmp(tn, "..") == 0 in _nc_read_termcap_entry()
982 || _nc_pathlast(tn) != 0) { in _nc_read_termcap_entry()
983 TR(TRACE_DATABASE, ("illegal or missing entry name '%s'", tn)); in _nc_read_termcap_entry()
988 && !_nc_is_abs_path(p) && _nc_name_match(p, tn, "|:")) { in _nc_read_termcap_entry()
994 if ((status = _nc_tgetent(tc, &source, &lineno, tn)) < 0) in _nc_read_termcap_entry()
1129 TR(TRACE_DATABASE, ("Looking for %s in %s", tn, termpaths[i])); in _nc_read_termcap_entry()
[all …]
/openbsd/gnu/usr.bin/perl/t/perf/
H A Doptree.t151 my $tn = "join($sep, " . ($is_list?'list of constants':'const') . ")";
152 is $last_expr->name, 'const', "$tn optimised to constant";
153 is $sub->(), $expect, "$tn folded correctly";
206 my($tn,$code) = @$_;
209 is $split->name, 'split', "$tn = split swallows up the assignment";
/openbsd/gnu/usr.bin/perl/t/op/
H A Dgmagic.t14 my ($obj, $rexp, $wexp, $tn) = @_;
17 is ($rgot, $rexp, $tn ? "number of fetches when $tn" : ());
18 is ($wgot, $wexp, $tn ? "number of stores when $tn" : ());
H A Dmagic.t180 print $? & 0xFF ? "ok $tn[4]$todo\n" : "not ok $tn[4]$todo\n";
196 print $? ? "not ok $tn[5]\n" : "ok $tn[5]\n";
/openbsd/games/worm/
H A Dworm.c90 struct timespec t, tn, tdiff; in main() local
160 clock_gettime(CLOCK_MONOTONIC, &tn); in main()
161 if (timespeccmp(&t, &tn, <=)) { in main()
162 t = tn; in main()
172 timespecsub(&t, &tn, &tdiff); in main()
/openbsd/sys/dev/pci/drm/i915/gt/
H A Dintel_gt_requests.c137 struct intel_timeline *tl, *tn; in intel_gt_retire_requests_timeout() local
143 list_for_each_entry_safe(tl, tn, &timelines->active_list, link) { in intel_gt_retire_requests_timeout()
181 list_safe_reset_next(tl, tn, link); in intel_gt_retire_requests_timeout()
193 list_for_each_entry_safe(tl, tn, &free, link) in intel_gt_retire_requests_timeout()
H A Dintel_timeline.c418 struct intel_timeline *tl, *tn; in intel_gt_show_timelines() local
422 list_for_each_entry_safe(tl, tn, &timelines->active_list, link) { in intel_gt_show_timelines()
474 list_safe_reset_next(tl, tn, link); in intel_gt_show_timelines()
486 list_for_each_entry_safe(tl, tn, &free, link) in intel_gt_show_timelines()
/openbsd/sys/tmpfs/
H A Dtmpfs_mem.c181 tmpfs_node_put(struct tmpfs_mount *mp, struct tmpfs_node *tn) in tmpfs_node_put() argument
186 pool_put(&tmpfs_node_pool, tn); in tmpfs_node_put()
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/format/
H A Dc99-scanf-1.c19 unsigned_ptrdiff_t *utp, ptrdiff_t *tn) in foo() argument
111 scanf ("%td%ti%to%tu%tx%tX%tn", tp, tp, utp, utp, utp, utp, tn); in foo()
H A Dc99-printf-1.c17 ptrdiff_t t, ptrdiff_t *tn) in foo() argument
92 printf ("%tn", tn); in foo()
/openbsd/regress/lib/libcrypto/x509/bettertls/certificates/
H A D2938.key12 +RTy6VcCcfwHCQpTSsxqMzkd7xKjAPPrR8Y/Nn/tn/wyv4g+LbTD4ZkBUpwAPq5/
H A D2841.key14 9tn/gnmSbk4OTFipXKt0wqpfaE/Am18TzRUSLj4aCQpMmRyLik1INlBR0sYbrZyw
H A D1534.key8 tn/oW7ENRHI5j1pl/t/WzoPiGLefH+3YZAfAUcc8L0DOIs38gBGa4AkeDKthLbrO
H A D1235.key24 OYcJ0QKBgQDzQxWB2ft/tn/AE4tTVVYXuVIzEvhs94nXYjJKfa+9G87NTpzTuQnE
H A D2713.key22 noo0dPnH3yzIcI/RRdkj6eN6sPIl+vPlFVyUOjn+p7+AhrnTkCaximDe2Gr+77tn
H A D2664.key10 Xehu6ekXsEwMwpHJa7mkmS56r7Fp2LIxRj/tn/1/MH13NOeP+erTxphlNyK5xLcG
H A D2171.chain13 tn/sT7qk2ia3phR5zflMjdrtskZFZMdjZotA6LYNGabZCH7/dPTi14RCIqGqB1ue
H A D178.chain37 tn+xjvKY5uKo1s4LshvXrJXzBGWBGY3WLPuTFqpIqKijoBqtj2d/k9xOKCz2ym4V
H A D3590.chain22 EcTcX6Fee8BTc1I+tn/jO3M=
/openbsd/usr.bin/file/magdir/
H A Dvicar6 # From: Ossama Othman <othman@astrosun.tn.cornell.edu
/openbsd/sys/arch/landisk/include/
H A Dbus.h226 #define __bs_rs(sz, tn, t, h, o) \ argument
229 #define __bs_ws(sz, tn, t, h, o, v) \ argument
232 #define __bs_nonsingle(type, sz, tn, t, h, o, a, c) \ argument
235 #define __bs_set(type, sz, tn, t, h, o, v, c) \ argument
238 #define __bs_copy(sz, tn, t, h1, o1, h2, o2, cnt) \ argument

123