| /NextBSD/contrib/elftoolchain/libdwarf/ |
| HD | libdwarf_nametbl.c | 35 Dwarf_NameTbl nt, tnt; in _dwarf_nametbl_cleanup() local 42 STAILQ_FOREACH_SAFE(nt, &ns->ns_ntlist, nt_next, tnt) { in _dwarf_nametbl_cleanup() 43 STAILQ_FOREACH_SAFE(np, &nt->nt_nplist, np_next, tnp) { in _dwarf_nametbl_cleanup() 44 STAILQ_REMOVE(&nt->nt_nplist, np, _Dwarf_NamePair, in _dwarf_nametbl_cleanup() 48 STAILQ_REMOVE(&ns->ns_ntlist, nt, _Dwarf_NameTbl, nt_next); in _dwarf_nametbl_cleanup() 49 free(nt); in _dwarf_nametbl_cleanup() 63 Dwarf_NameTbl nt; in _dwarf_nametbl_init() local 83 if ((nt = malloc(sizeof(struct _Dwarf_NameTbl))) == NULL) { in _dwarf_nametbl_init() 88 STAILQ_INIT(&nt->nt_nplist); in _dwarf_nametbl_init() 89 STAILQ_INSERT_TAIL(&ns->ns_ntlist, nt, nt_next); in _dwarf_nametbl_init() [all …]
|
| HD | dwarf_nametbl.m4 | 82 Dwarf_NameTbl nt; 92 nt = $1->np_nt; 93 assert(nt != NULL); 95 *ret_offset = nt->nt_cu_offset + $1->np_offset; 104 Dwarf_NameTbl nt; 114 nt = $1->np_nt; 115 assert(nt != NULL); 117 *ret_offset = nt->nt_cu_offset; 128 Dwarf_NameTbl nt; 138 nt = $1->np_nt; [all …]
|
| HD | dwarf_pro_nametbl.m4 | 34 Dwarf_NameTbl nt; 51 nt = dbg->dbgp_$1s; 58 np->np_nt = nt; 66 STAILQ_INSERT_TAIL(&nt->nt_nplist, np, np_next);
|
| /NextBSD/sys/dev/ntb/if_ntb/ |
| HD | if_ntb.c | 103 if_printf(nt->ifp, __VA_ARGS__); \ 292 #define QP_TO_MW(nt, qp) ((qp) % nt->mw_count) argument 309 static void ntb_transport_init_queue(struct ntb_transport_ctx *nt, 333 static void ntb_free_mw(struct ntb_transport_ctx *nt, int num_mw); 334 static int ntb_transport_setup_qp_mw(struct ntb_transport_ctx *nt, 337 static void ntb_transport_link_cleanup(struct ntb_transport_ctx *nt); 487 struct ntb_transport_ctx *nt = ifp->if_softc; in ntb_ioctl() local 494 if (ifr->ifr_mtu > ntb_transport_max_size(nt->qp) - in ntb_ioctl() 516 struct ntb_transport_ctx *nt = ifp->if_softc; in ntb_start() local 519 mtx_lock(&nt->tx_lock); in ntb_start() [all …]
|
| /NextBSD/crypto/heimdal/lib/gssapi/spnego/ |
| HD | accept_sec_context.c | 40 NegotiationToken nt; in send_reject() local 43 nt.element = choice_NegotiationToken_negTokenResp; in send_reject() 45 ALLOC(nt.u.negTokenResp.negResult, 1); in send_reject() 46 if (nt.u.negTokenResp.negResult == NULL) { in send_reject() 50 *(nt.u.negTokenResp.negResult) = reject; in send_reject() 51 nt.u.negTokenResp.supportedMech = NULL; in send_reject() 52 nt.u.negTokenResp.responseToken = NULL; in send_reject() 53 nt.u.negTokenResp.mechListMIC = NULL; in send_reject() 56 output_token->value, output_token->length, &nt, in send_reject() 58 free_NegotiationToken(&nt); in send_reject() [all …]
|
| HD | init_sec_context.c | 85 NegotiationToken nt; in spnego_reply_internal() local 97 memset(&nt, 0, sizeof(nt)); in spnego_reply_internal() 99 nt.element = choice_NegotiationToken_negTokenResp; in spnego_reply_internal() 101 ALLOC(nt.u.negTokenResp.negResult, 1); in spnego_reply_internal() 102 if (nt.u.negTokenResp.negResult == NULL) { in spnego_reply_internal() 107 nt.u.negTokenResp.supportedMech = NULL; in spnego_reply_internal() 113 nt.u.negTokenResp.responseToken = NULL; in spnego_reply_internal() 114 *(nt.u.negTokenResp.negResult) = accept_completed; in spnego_reply_internal() 116 ALLOC(nt.u.negTokenResp.responseToken, 1); in spnego_reply_internal() 117 if (nt.u.negTokenResp.responseToken == NULL) { in spnego_reply_internal() [all …]
|
| /NextBSD/sys/net80211/ |
| HD | ieee80211_node.c | 96 static void node_reclaim(struct ieee80211_node_table *nt, 99 struct ieee80211_node_table *nt, const char *name, 103 static void ieee80211_node_table_cleanup(struct ieee80211_node_table *nt); 725 struct ieee80211_node_table *nt = obss->ni_table; in ieee80211_sta_join1() local 730 IEEE80211_NODE_LOCK(nt); in ieee80211_sta_join1() 731 node_reclaim(nt, obss); /* station table reference */ in ieee80211_sta_join1() 732 IEEE80211_NODE_UNLOCK(nt); in ieee80211_sta_join1() 1155 ieee80211_alloc_node(struct ieee80211_node_table *nt, in ieee80211_alloc_node() argument 1158 struct ieee80211com *ic = nt->nt_ic; in ieee80211_alloc_node() 1170 ether_sprintf(macaddr), nt->nt_name); in ieee80211_alloc_node() [all …]
|
| HD | ieee80211_node.h | 409 #define ieee80211_find_node_locked(nt, mac) \ argument 410 ieee80211_find_node_locked_debug(nt, mac, __func__, __LINE__) 411 #define ieee80211_find_node(nt, mac) \ argument 412 ieee80211_find_node_debug(nt, mac, __func__, __LINE__) 413 #define ieee80211_find_vap_node_locked(nt, vap, mac) \ argument 414 ieee80211_find_vap_node_locked_debug(nt, vap, mac, __func__, __LINE__) 415 #define ieee80211_find_vap_node(nt, vap, mac) \ argument 416 ieee80211_find_vap_node_debug(nt, vap, mac, __func__, __LINE__)
|
| HD | ieee80211_ddb.c | 674 const struct ieee80211_node_table *nt = &ic->ic_sta; in _db_show_com() local 677 TAILQ_FOREACH(ni, &nt->nt_node, ni_list) { in _db_show_com() 685 _db_show_node_table(const char *tag, const struct ieee80211_node_table *nt) in _db_show_node_table() argument 689 db_printf("%s%s@%p:\n", tag, nt->nt_name, nt); in _db_show_node_table() 690 db_printf("%s nodelock %p", tag, &nt->nt_nodelock); in _db_show_node_table() 691 db_printf(" inact_init %d", nt->nt_inact_init); in _db_show_node_table() 692 db_printf(" scanlock %p", &nt->nt_scanlock); in _db_show_node_table() 693 db_printf(" scangen %u\n", nt->nt_scangen); in _db_show_node_table() 695 tag, nt->nt_keyixmax, nt->nt_keyixmap); in _db_show_node_table() 696 for (i = 0; i < nt->nt_keyixmax; i++) { in _db_show_node_table() [all …]
|
| /NextBSD/etc/ |
| HD | disktab | 26 :ty=floppy:se#512:nt#2:rm#300:ns#9:nc#40:\ 31 :ty=floppy:se#512:nt#2:rm#300:ns#9:nc#80:\ 36 :ty=floppy:se#512:nt#2:rm#360:ns#15:nc#80:\ 41 :ty=floppy:se#512:nt#2:rm#300:ns#18:nc#80:\ 46 :ty=floppy:se#512:nt#2:rm#300:ns#36:nc#80:\ 56 :ty=floppy:se#512:nt#2:rm#300:ns#10:nc#80:\ 61 :ty=floppy:se#512:nt#2:rm#300:ns#10:nc#82:\ 66 :ty=floppy:se#512:nt#2:rm#300:ns#18:nc#82:\ 71 :ty=floppy:se#512:nt#2:rm#300:ns#21:nc#82:\ 79 :ty=floppy:se#512:nt#8:rm#300:ns#32:nc#963:\ [all …]
|
| /NextBSD/usr.sbin/timed/timed/ |
| HD | timed.c | 127 struct nets *nt; in main() local 243 for (nt = nets; nt; nt = nt->next) { in main() 244 nentp = getnetbyname(nt->name); in main() 246 nt->net = inet_network(nt->name); in main() 247 if (nt->net != INADDR_NONE) in main() 248 nentp = getnetbyaddr(nt->net, AF_INET); in main() 251 nt->net = nentp->n_net; in main() 252 } else if (nt->net == INADDR_NONE) { in main() 253 errx(1, "unknown net %s", nt->name); in main() 254 } else if (nt->net == INADDR_ANY) { in main() [all …]
|
| /NextBSD/crypto/openssl/crypto/bio/ |
| HD | bf_nbio.c | 103 NBIO_TEST *nt; in nbiof_new() local 105 if (!(nt = (NBIO_TEST *)OPENSSL_malloc(sizeof(NBIO_TEST)))) in nbiof_new() 107 nt->lrn = -1; in nbiof_new() 108 nt->lwn = -1; in nbiof_new() 109 bi->ptr = (char *)nt; in nbiof_new() 164 NBIO_TEST *nt; in nbiof_write() local 173 nt = (NBIO_TEST *)b->ptr; in nbiof_write() 178 if (nt->lwn > 0) { in nbiof_write() 179 num = nt->lwn; in nbiof_write() 180 nt->lwn = 0; in nbiof_write() [all …]
|
| /NextBSD/release/picobsd/mfs_tree/etc/ |
| HD | disktab | 19 :ty=floppy:se#512:nt#2:rm#300:ns#9:nc#40:\ 25 :ty=floppy:se#512:nt#2:rm#300:ns#9:nc#80:\ 31 :ty=floppy:se#512:nt#2:rm#360:ns#15:nc#80:\ 37 :ty=floppy:se#512:nt#2:rm#300:ns#18:nc#80:\ 43 :ty=floppy:se#512:nt#2:rm#300:ns#16:nc#64:\ 56 :dt=ST506:ty=winchester:se#512:nt#8:ns#33:nc#766: \ 66 :ty=removable:dt=SCSI:se#512:nt#1:ns#31:nc#18600:ts#1:rm#4800:\ 72 :se#512:nt#64:ns#32:nc#216:sc#2048:su#444384:\ 76 minimum:ty=mfs:se#512:nt#1:rm#300:\ 82 :ty=removable:se#512:nc#96:nt#64:ns#32:\
|
| /NextBSD/usr.bin/truss/ |
| HD | setup.c | 240 struct threadinfo *nt; in find_thread() local 245 SLIST_FOREACH(nt, &np->threadlist, entries) { in find_thread() 246 if (nt->tid == lwpid) { in find_thread() 247 info->curthread = nt; in find_thread() 252 nt = calloc(1, sizeof(struct threadinfo)); in find_thread() 253 if (nt == NULL) in find_thread() 255 nt->proc = np; in find_thread() 256 nt->tid = lwpid; in find_thread() 257 SLIST_INSERT_HEAD(&np->threadlist, nt, entries); in find_thread() 258 info->curthread = nt; in find_thread() [all …]
|
| /NextBSD/usr.bin/xlint/lint1/ |
| HD | tree.c | 1668 tspec_t nt, ot, ost = NOTSPEC; in convert() local 1673 nt = tp->t_tspec; in convert() 1678 ptconv(arg, nt, ot, tp, tn); in convert() 1679 if (isityp(nt) && isityp(ot)) { in convert() 1680 iiconv(op, arg, nt, ot, tp, tn); in convert() 1681 } else if (nt == PTR && ((ot == PTR && ost == VOID) || isityp(ot)) && in convert() 1684 } else if (isityp(nt) && ot == PTR) { in convert() 1685 piconv(op, nt, tp, tn); in convert() 1686 } else if (nt == PTR && ot == PTR) { in convert() 1694 if (tn->tn_op != CON || nt == VOID) { in convert() [all …]
|
| /NextBSD/contrib/openbsm/etc/ |
| HD | audit_event | 56 32:AUE_CONNECT:connect(2):nt 57 33:AUE_ACCEPT:accept(2):nt 58 34:AUE_BIND:bind(2):nt 59 35:AUE_SETSOCKOPT:setsockopt(2):nt 70 46:AUE_SHUTDOWN:shutdown(2):nt 171 173:AUE_ONESIDE:one-sided session record:nt 177 183:AUE_SOCKET:socket(2):nt 178 184:AUE_SENDTO:sendto(2):nt 180 186:AUE_SOCKETPAIR:socketpair(2):nt 181 187:AUE_SEND:send(2):nt [all …]
|
| /NextBSD/tools/tools/netrate/netreceive/ |
| HD | netreceive.c | 129 int i, si, nt = nsock * nthreads; in make_threads() local 130 int lb = round_to(nt * sizeof (struct td_desc *), 64); in make_threads() 132 char *m = calloc(1, lb + td_len * nt); in make_threads() 143 for (si = i = 0; i < nt; i++, m += td_len) { in make_threads() 168 int i, nt = nsock * nthreads; in main_thread() local 175 for (i = 0; i < nt; i++) { in main_thread()
|
| /NextBSD/lib/libutil/tests/ |
| HD | flopen_test.c | 197 int i, nt; in main() local 199 nt = sizeof(t) / sizeof(*t); in main() 200 printf("1..%d\n", nt); in main() 201 for (i = 0; i < nt; ++i) { in main()
|
| HD | pidfile_test.c | 267 int i, nt; in main() local 269 nt = sizeof(t) / sizeof(*t); in main() 270 printf("1..%d\n", nt); in main() 271 for (i = 0; i < nt; ++i) { in main()
|
| /NextBSD/sys/kern/ |
| HD | uipc_mqueue.c | 1755 struct mqueue_notifier *nt; in mqueue_send_notification() local 1761 nt = mq->mq_notifier; in mqueue_send_notification() 1762 if (nt->nt_sigev.sigev_notify != SIGEV_NONE) { in mqueue_send_notification() 1763 p = nt->nt_proc; in mqueue_send_notification() 1764 error = sigev_findtd(p, &nt->nt_sigev, &td); in mqueue_send_notification() 1769 if (!KSI_ONQ(&nt->nt_ksi)) { in mqueue_send_notification() 1770 ksiginfo_set_sigev(&nt->nt_ksi, &nt->nt_sigev); in mqueue_send_notification() 1771 tdsendsignal(p, td, nt->nt_ksi.ksi_signo, &nt->nt_ksi); in mqueue_send_notification() 1908 struct mqueue_notifier *nt; in notifier_search() local 1910 LIST_FOREACH(nt, &p->p_mqnotifier, nt_link) { in notifier_search() [all …]
|
| /NextBSD/sys/mips/rmi/ |
| HD | fmn.c | 295 int core, nt; in msgring_process_fast_intr() local 301 nt = mthd->running; in msgring_process_fast_intr() 302 if(nt >= mthd->nthreads) { in msgring_process_fast_intr() 308 td = mthd->threads[nt].thread; in msgring_process_fast_intr() 319 mthd->threads[nt].needed = 1; in msgring_process_fast_intr() 322 msgring_wakeup_sleep[core*4+nt]++; in msgring_process_fast_intr() 326 msgring_wakeup_nosleep[core*4+nt]++; in msgring_process_fast_intr()
|
| /NextBSD/contrib/binutils/binutils/ |
| HD | ieee.c | 4733 struct ieee_name_type *nt; in ieee_write_undefined_tag() local 4735 for (nt = h->types; nt != NULL; nt = nt->next) in ieee_write_undefined_tag() 4740 if (nt->kind == DEBUG_KIND_ILLEGAL) in ieee_write_undefined_tag() 4768 || ! ieee_write_id (info, nt->type.name) in ieee_write_undefined_tag() 4770 || ! ieee_write_number (info, nt->type.indx) in ieee_write_undefined_tag() 4778 switch (nt->kind) in ieee_write_undefined_tag() 5827 struct ieee_name_type *nt, *ntlook; in ieee_start_struct_type() local 5854 nt = NULL; in ieee_start_struct_type() 5858 nt = ntlook; in ieee_start_struct_type() 5868 if (nt != NULL) in ieee_start_struct_type() [all …]
|
| /NextBSD/tools/tools/locale/tools/ |
| HD | convert_map.pl | 183 my $nt = int((64 - length($name) + 7) / 8); 184 while ($nt) { 186 $nt--;
|
| /NextBSD/sys/dev/isp/ |
| HD | isp_freebsd.c | 974 restart_queue = ntp->rd.nt.nt_hba; in isp_tmcmd_restart() 986 while (restart_queue->rd.nt.nt_hba) { in isp_tmcmd_restart() 987 restart_queue = restart_queue->rd.nt.nt_hba; in isp_tmcmd_restart() 989 restart_queue->rd.nt.nt_hba = ntp; in isp_tmcmd_restart() 1884 restart_queue = ntp->rd.nt.nt_hba; in isp_handle_platform_atio2() 1896 while (restart_queue->rd.nt.nt_hba) { in isp_handle_platform_atio2() 1897 restart_queue = restart_queue->rd.nt.nt_hba; in isp_handle_platform_atio2() 1899 restart_queue->rd.nt.nt_hba = ntp; in isp_handle_platform_atio2() 1995 ntp->rd.nt.nt_hba = tptr->restart_queue; in isp_handle_platform_atio2() 2107 restart_queue = ntp->rd.nt.nt_hba; in isp_handle_platform_atio7() [all …]
|
| /NextBSD/sys/compat/ndis/ |
| HD | subr_usbd.c | 1182 struct ndisusb_task *nt; in usbd_taskadd() local 1184 nt = malloc(sizeof(struct ndisusb_task), M_USBDEV, M_NOWAIT | M_ZERO); in usbd_taskadd() 1185 if (nt == NULL) in usbd_taskadd() 1187 nt->nt_type = type; in usbd_taskadd() 1188 nt->nt_ctx = ip; in usbd_taskadd() 1191 InsertTailList((&sc->ndisusb_tasklist), (&nt->nt_tasklist)); in usbd_taskadd() 1207 struct ndisusb_task *nt; in usbd_task() local 1216 nt = CONTAINING_RECORD(l, struct ndisusb_task, nt_tasklist); in usbd_task() 1218 ip = nt->nt_ctx; in usbd_task() 1223 switch (nt->nt_type) { in usbd_task() [all …]
|