Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_threadprivate.cpp47 for (tn = tbl->data[KMP_HASH(pc_addr)]; tn; tn = tn->next) { in __kmp_threadprivate_find_task_common()
54 return tn; in __kmp_threadprivate_find_task_common()
69 for (tn = tbl->data[KMP_HASH(pc_addr)]; tn; tn = tn->next) { in __kmp_find_shared_task_common()
242 for (tn = __kmp_threads[gtid]->th.th_pri_head; tn; tn = tn->link) { in __kmp_common_destroy_gtid()
285 tn = tn->next) { in dump_list()
288 tn->gbl_addr, tn->par_addr)); in dump_list()
409 tn->par_addr = (void *)__kmp_allocate(tn->cmn_size); in kmp_threadprivate_insert()
436 *tt = tn; in kmp_threadprivate_insert()
469 } else if (tn->par_addr != tn->gbl_addr) { in kmp_threadprivate_insert()
477 } else if (tn->par_addr != tn->gbl_addr) { in kmp_threadprivate_insert()
[all …]
/freebsd/lib/librt/
H A Dsigev_thread.c319 tn = malloc(sizeof(*tn)); in sigev_thread_create()
320 tn->tn_cur = NULL; in sigev_thread_create()
321 tn->tn_lwpid = -1; in sigev_thread_create()
322 tn->tn_refcount = 1; in sigev_thread_create()
345 free(tn); in sigev_thread_create()
346 tn = NULL; in sigev_thread_create()
355 return (tn); in sigev_thread_create()
375 tn = arg; in sigev_service_loop()
390 free(tn); in sigev_service_loop()
408 tn->tn_cur = sn; in sigev_service_loop()
[all …]
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dtxg.c930 tl->tl_head[t] = tn; in txg_list_add()
960 *tp = tn; in txg_list_add_tail()
974 txg_node_t *tn; in txg_list_remove() local
981 ASSERT(tn->tn_next[t] == NULL || tn->tn_next[t]->tn_member[t]); in txg_list_remove()
999 txg_node_t *tn, **tp; in txg_list_remove_this() local
1004 for (tp = &tl->tl_head[t]; (tn = *tp) != NULL; tp = &tn->tn_next[t]) { in txg_list_remove_this()
1036 txg_node_t *tn; in txg_list_head() local
1039 tn = tl->tl_head[t]; in txg_list_head()
1043 return (tn == NULL ? NULL : (char *)tn - tl->tl_offset); in txg_list_head()
1055 tn = tn->tn_next[t]; in txg_list_next()
[all …]
/freebsd/usr.sbin/cron/crontab/
H A Dcrontab.c506 if (snprintf(tn, sizeof(tn), CRON_TAB(n)) >= (int)sizeof(tn)) {
512 warn("%s", tn);
535 fclose(tmp); unlink(tn);
565 fclose(tmp); unlink(tn);
576 fclose(tmp); unlink(tn);
583 if (chmod(tn, 0600) < OK)
587 fclose(tmp); unlink(tn);
593 unlink(tn);
599 unlink(tn);
603 if (rename(tn, n)) {
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.def790 BUILTIN(__sync_or_and_fetch_1, "ccD*c.", "tn")
839 BUILTIN(__sync_lock_release_1, "vcD*.", "tn")
840 BUILTIN(__sync_lock_release_2, "vsD*.", "tn")
841 BUILTIN(__sync_lock_release_4, "viD*.", "tn")
846 BUILTIN(__sync_swap_1, "ccD*c.", "tn")
847 BUILTIN(__sync_swap_2, "ssD*s.", "tn")
848 BUILTIN(__sync_swap_4, "iiD*i.", "tn")
849 BUILTIN(__sync_swap_8, "LLiLLiD*LLi.", "tn")
1646 BUILTIN(__builtin_annotation, "v.", "tn")
1731 LANGBUILTIN(read_pipe, "i.", "tn", OCL_PIPE)
[all …]
/freebsd/contrib/ncurses/ncurses/tinfo/
H A Dread_termcap.c960 _nc_read_termcap_entry(const char *const tn, TERMTYPE2 *const tp) in _nc_read_termcap_entry() argument
975 TR(TRACE_DATABASE, ("read termcap entry for %s", tn)); in _nc_read_termcap_entry()
977 if (strlen(tn) == 0 in _nc_read_termcap_entry()
978 || strcmp(tn, ".") == 0 in _nc_read_termcap_entry()
979 || strcmp(tn, "..") == 0 in _nc_read_termcap_entry()
980 || _nc_pathlast(tn) != 0) { in _nc_read_termcap_entry()
981 TR(TRACE_DATABASE, ("illegal or missing entry name '%s'", tn)); in _nc_read_termcap_entry()
986 && !_nc_is_abs_path(p) && _nc_name_match(p, tn, "|:")) { in _nc_read_termcap_entry()
992 if ((status = _nc_tgetent(tc, &source, &lineno, tn)) < 0) in _nc_read_termcap_entry()
1125 TR(TRACE_DATABASE, ("Looking for %s in %s", tn, termpaths[i])); in _nc_read_termcap_entry()
[all …]
H A Dlib_setup.c493 _nc_setup_tinfo(const char *const tn, TERMTYPE2 *const tp) in _nc_setup_tinfo() argument
496 int status = _nc_read_entry2(tn, filename, tp); in _nc_setup_tinfo()
/freebsd/sys/fs/tmpfs/
H A Dtmpfs_vnops.c1738 if (de->td_node == tn) { in tmpfs_vptocnp_dir()
1784 struct tmpfs_node *tn, *tnp, *tnp1; in tmpfs_vptocnp() local
1797 tn = VP_TO_TMPFS_NODE(vp); in tmpfs_vptocnp()
1798 if (tn->tn_type == VDIR) { in tmpfs_vptocnp()
1799 tnp = tn->tn_dir.tn_parent; in tmpfs_vptocnp()
1803 error = tmpfs_vptocnp_fill(vp, tn, tn->tn_dir.tn_parent, buf, in tmpfs_vptocnp()
2103 if (*noff < tn->tn_size) in tmpfs_seek_clamp()
2107 *noff = tn->tn_size; in tmpfs_seek_clamp()
2143 struct tmpfs_node *tn; in tmpfs_seek_datahole() local
2150 tn = VP_TO_TMPFS_NODE(vp); in tmpfs_seek_datahole()
[all …]
/freebsd/contrib/bsnmp/snmpd/
H A Dtrap.c576 SLIST_FOREACH(n, &target_notifylist, tn) { in snmp_send_trap()
831 return (SLIST_NEXT(notify, tn)); in target_next_notify()
840 SLIST_FOREACH(notify, &target_notifylist, tn) in target_new_notify()
852 SLIST_INSERT_HEAD(&target_notifylist, notify, tn); in target_new_notify()
856 SLIST_FOREACH(temp, &target_notifylist, tn) { in target_new_notify()
863 SLIST_INSERT_AFTER(prev, notify, tn); in target_new_notify()
865 SLIST_INSERT_AFTER(temp, notify, tn); in target_new_notify()
878 SLIST_REMOVE(&target_notifylist, notify, target_notify, tn); in target_delete_notify()
906 SLIST_REMOVE_HEAD(&target_notifylist, tn); in target_flush_all()
/freebsd/sbin/routed/
H A Dinput.c142 struct tgate_net *tn; in input() local
682 if (tg && (tn = tg->tgate_nets)->mask != 0) { in input()
683 for (i = 0; i < MAX_TGATE_NETS; i++, tn++) { in input()
684 if (on_net(dst, tn->net, tn->mask) in input()
685 && tn->mask <= mask) in input()
688 if (i >= MAX_TGATE_NETS || tn->mask == 0) { in input()
/freebsd/sys/dev/sym/
H A Dsym_hipd.c6253 tcb_p tp = &np->target[tn]; in sym_get_ccb()
6353 cp->target = tn; in sym_get_ccb()
6357 PRINT_LUN(np, tn, ln); in sym_get_ccb()
8093 u_int tn; local
8107 tp = &np->target[tn];
9008 tp->tinfo.user.period = tn->sync_period ? (tn->sync_period + 3) / 4 : 0;
9032 i = tn->sync_index & 0xf;
9078 tn->bus_width,
9079 tn->sync_period / 4,
9080 tn->timeout);
[all …]
/freebsd/contrib/one-true-awk/testdir/
H A Dt.stately1 …ky|la|me|md|ma|mi|mn|ms|mo|mt|nb|nv|nh|nj|nm|ny|nc|nd|oh|ok|or|pa|ri|sc|sd|tn|tx|ut|vt|va|wa|wv|wi…
/freebsd/sys/dev/amdtemp/
H A Damdtemp.c328 char tn[32]; in amdtemp_attach() local
513 snprintf(tn, sizeof(tn), "dev.amdtemp.%d.sensor_offset", unit); in amdtemp_attach()
514 TUNABLE_INT_FETCH(tn, &sc->sc_offset); in amdtemp_attach()
/freebsd/contrib/file/magic/Magdir/
H A Dvicar6 # From: Ossama Othman <othman@astrosun.tn.cornell.edu
/freebsd/crypto/heimdal/appl/telnet/
H A DChangeLog386 * telnet/commands.c (tn): copy the hostname so it doesn't get
477 * telnet/commands.c (tn): re-enable source routing
483 * telnet/commands.c (tn): clean-up a tiny little bit. give-up if
501 * telnet/commands.c (tn): only set tos for AF_INET. From
533 * telnet/commands.c (tn): handle ai_canonname being set in any of
602 * telnet/commands.c (tn): extra bogus const-cast
627 * telnet/commands.c (tn): use get_default_username
698 * telnet/commands.c (tn): only call gethostbyname2 with AF_INET6
716 * telnet/commands.c (tn): don't advance hostent->h_addr_list, use
733 * telnet/commands.c (tn): moved the printing of `trying...' to the
[all …]
/freebsd/crypto/openssl/crypto/bn/
H A Dbn_mul.c371 bn_mul_normal(&(r[n2]), &(a[n]), tn, &(b[n]), tn); in bn_mul_part_recursive()
372 memset(&r[n2 + tn * 2], 0, sizeof(*r) * (n2 - tn * 2)); in bn_mul_part_recursive()
/freebsd/sbin/init/
H A Dinit.c853 struct timeval tv, tn; in single_user() local
995 tn = tv; in single_user()
997 while (tv.tv_sec > tn.tv_sec || (tv.tv_sec == in single_user()
998 tn.tv_sec && tv.tv_usec > tn.tv_usec)) { in single_user()
1000 gettimeofday(&tn, NULL); in single_user()
/freebsd/sys/dev/rl/
H A Dif_rl.c646 char tn[32]; in rl_attach() local
653 snprintf(tn, sizeof(tn), "dev.rl.%d.twister_enable", unit); in rl_attach()
654 TUNABLE_INT_FETCH(tn, &sc->rl_twister_enable); in rl_attach()
676 snprintf(tn, sizeof(tn), "dev.rl.%d.prefer_iomap", unit); in rl_attach()
677 TUNABLE_INT_FETCH(tn, &prefer_iomap); in rl_attach()
/freebsd/crypto/heimdal/appl/telnet/telnet/
H A Dmain.c349 if (tn(argp - args, args) == 1) in main()
H A Dexterns.h237 int tn(int argc, char **argv);
/freebsd/contrib/telnet/telnet/
H A Dmain.c372 if (tn(argp - args, args) == 1) in main()
H A Dexterns.h319 tn(int, char **),
/freebsd/sys/contrib/ncsw/Peripherals/QM/
H A Dqm_portal_fqr.c973 uint32_t tmpA, tmpN, ta=0, tn=0, initFqFlag; in qm_new_fq() local
1049 tn = tmpN; in qm_new_fq()
1053 fq_opts.fqd.td.exp = tn; in qm_new_fq()
1106 tn = tmpN; in qm_new_fq()
1110 fq_opts.fqd.td.exp = tn; in qm_new_fq()
2297 uint32_t tmpA, tmpN, ta=0, tn=0; in QM_CG_Create() local
2453 tn = tmpN; in QM_CG_Create()
2458 p_Mcc->initcgr.cgr.cs_thres.Tn = tn; in QM_CG_Create()
2674 uint32_t tmpA, tmpN, ta=0, tn=0; in QM_CG_ModifyTailDropThreshold() local
2713 tn = tmpN; in QM_CG_ModifyTailDropThreshold()
[all …]
/freebsd/contrib/tcsh/nls/french/
H A Dset2040 38 %s\t\tn'est pas défini\n
/freebsd/sys/netinet/
H A Dsctp_timer.c1530 struct timeval tn, *tim_touse; in sctp_autoclose_timer() local
1534 (void)SCTP_GETTIME_TIMEVAL(&tn); in sctp_autoclose_timer()
1547 ticks_gone_by = sctp_secs_to_ticks((uint32_t)(tn.tv_sec - tim_touse->tv_sec)); in sctp_autoclose_timer()

12