Searched refs:NA (Results 1 - 25 of 37) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRDFGraph.h340 template <typename S> NodeAddr(const NodeAddr<S> &NA) argument
341 : Addr(static_cast<T>(NA.Addr)), Id(NA.Id) {}
343 bool operator== (const NodeAddr<T> &NA) const {
344 assert((Addr == NA.Addr) == (Id == NA.Id));
345 return Addr == NA.Addr;
347 bool operator!= (const NodeAddr<T> &NA) const {
348 return !operator==(NA);
463 // Insert node NA afte
891 auto NA = G.addr<NodeBase*>(getNext()); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRDFGraph.cpp68 auto NA = P.G.addr<NodeBase*>(P.Obj); local
69 uint16_t Attrs = NA.Addr->getAttrs();
371 NodeAddr<NodeBase*> NA = { reinterpret_cast<NodeBase*>(ActiveEnd), local
374 return NA;
395 // Insert node NA after "this" in the circular chain.
396 void NodeBase::append(NodeAddr<NodeBase*> NA) { argument
398 // If NA is already "next", do nothing.
399 if (Next != NA.Id) {
400 Next = NA.Id;
401 NA
435 NodeAddr<NodeBase*> NA = G.addr<NodeBase*>(getNext()); local
474 addMember(NodeAddr<NodeBase*> NA, const DataFlowGraph &G) argument
487 addMemberAfter(NodeAddr<NodeBase*> MA, NodeAddr<NodeBase*> NA, const DataFlowGraph &G) argument
495 removeMember(NodeAddr<NodeBase*> NA, const DataFlowGraph &G) argument
534 NodeAddr<NodeBase*> NA = G.addr<NodeBase*>(getNext()); local
790 NodeAddr<NodeBase*> NA = newNode(0); local
1199 NodeAddr<RefNode*> NA; local
[all...]
/freebsd-11-stable/sbin/routed/
H A Dinput.c949 # define NA (rip->rip_auths) macro
957 if ((void *)NA >= lim || NA->a_family != RIP_AF_AUTH) {
966 if (ap->type != NA->a_type
971 if (NA->a_type == RIP_AUTH_PW) {
972 if (!memcmp(NA->au.au_pw, ap->key, RIP_AUTH_PW_LEN))
978 if (NA->au.a_md5.md5_keyid != ap->keyid)
981 len = ntohs(NA->au.a_md5.md5_pkt_len);
982 if ((len-sizeof(*rip)) % sizeof(*NA) != 0
983 || len != (char *)lim-(char*)rip-(int)sizeof(*NA)) {
1034 #undef NA macro
[all...]
H A Dtrace.c891 # define NA ((struct netauth*)n) macro
948 if (NA->a_type == RIP_AUTH_PW
953 qstring(NA->au.au_pw,
958 if (NA->a_type == RIP_AUTH_MD5
966 ntohs(NA->au.a_md5.md5_pkt_len),
967 NA->au.a_md5.md5_keyid,
968 NA->au.a_md5.md5_auth_len,
969 (int)ntohl(NA->au.a_md5.md5_seqno),
970 (int)ntohs(NA->au.a_md5.rsvd[0]),
971 (int)ntohs(NA
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIFormMemoryClauses.cpp185 unsigned NA = MaskA.getNumLanes();
187 if (NA != NB)
188 return NA > NB;
/freebsd-11-stable/sys/dev/netmap/
H A Dnetmap_kern.h690 * NA(ifp) points here, and the first entry (which hopefully
957 * na_bdg points to the bridge this NA is attached to.
1331 #define netmap_ifp_to_vp(_ifp) (NA(_ifp)->na_vp)
1332 #define netmap_ifp_to_host_vp(_ifp) (NA(_ifp)->na_hostvp)
1623 * NA returns a pointer to the struct netmap adapter from the ifp.
1626 #define NA(_ifp) ((struct netmap_adapter *)WNA(_ifp)) macro
1635 * On old versions of FreeBSD, NA(ifp) is a pspare. On linux we
1638 * We check if NA(ifp) is set and its first element has a related
1643 #define NM_NA_VALID(ifp) (NA(ifp) && \
1644 ((uint32_t)(uintptr_t)NA(if
[all...]
H A Dnetmap_freebsd.c300 NA(ifp)->if_input(ifp, m);
332 (struct netmap_generic_adapter *)NA(ifp);
454 ret = NA(ifp)->if_transmit(ifp, m);
464 return (NA((struct ifnet *)ifp));
1535 struct netmap_adapter *na = NA(ifp);
1545 struct netmap_adapter *na = NA(ifp);
H A Dif_re_netmap.h290 struct netmap_adapter *na = NA(sc->rl_ifp);
318 struct netmap_adapter *na = NA(sc->rl_ifp);
H A Dif_vtnet_netmap.h42 struct netmap_adapter *na = NA(sc->vtnet_ifp);
293 struct netmap_adapter *na = NA(rxq->vtnrx_sc->vtnet_ifp);
H A Dnetmap.c285 * na == NA(ifp) == netmap_hw_adapter created in DEVICE_netmap_attach()
318 * na == NA(ifp) == generic_netmap_adapter created in generic_netmap_attach()
637 netmap_set_all_rings(NA(ifp), NM_KR_STOPPED);
650 netmap_set_all_rings(NA(ifp), 0 /* enabled */);
658 struct netmap_adapter *na = NA(ifp);
669 struct netmap_adapter *na = NA(ifp);
1394 * >0 * NA(ifp) NA(ifp)
1417 prev_na = NA(ifp);
1453 * (NA(if
[all...]
H A Dnetmap_generic.c433 struct netmap_adapter *na = NA(GEN_TX_MBUF_IFP(m));
809 struct netmap_adapter *na = NA(ifp);
1069 /* If NA(ifp) is not null but there is no valid netmap
1120 gna->prev = NA(ifp); /* save old na */
H A Dnetmap_vale.c1478 if (!NM_NA_VALID(ifp) || NA(ifp)->nm_register != netmap_vp_reg) {
1483 vpna = (struct netmap_vp_adapter *)NA(ifp);
1556 int update_err = nm_update_info(req, NA(ifp));
H A Dnetmap_kloop.c1173 ptna = (struct netmap_pt_guest_adapter *) NA(ifp);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp143 Value *fabricateGEP(NodeVect &NA, BasicBlock::iterator At,
1090 Value *HexagonCommonGEP::fabricateGEP(NodeVect &NA, BasicBlock::iterator At, argument
1094 << NA);
1095 unsigned Num = NA.size();
1096 GepNode *RN = NA[0];
1108 if (!NA[nax]->PTy->isPointerTy()) {
1113 // Keep adding indices from NA until we have to stop and generate
1116 GepNode *N = NA[nax-1];
1122 if (NextTy != NA[nax]->PTy)
1176 NodeVect NA; // Node local
[all...]
/freebsd-11-stable/sys/dev/ena/
H A Dena_netmap.c112 struct netmap_adapter *na = NA(adapter->ifp);
180 na = NA(adapter->ifp);
228 na = NA(adapter->ifp);
254 netmap_reset(NA(adapter->ifp), x, qid, 0);
1090 struct netmap_adapter *na = NA(adapter->ifp);
/freebsd-11-stable/sys/dev/vmware/vmxnet3/
H A Dvmx_netmap.h55 struct netmap_adapter *na = NA(ifp);
98 na = NA(ifp);
/freebsd-11-stable/sys/pc98/cbus/
H A Dgdc.c518 #define NA (-2) macro
606 bios_vmode[i].vi_mode = NA;
1000 if (bios_vmode[i].vi_mode == NA)
1026 if (bios_vmode[i].vi_mode == NA)
1478 if (bios_vmode[i].vi_mode == NA)
/freebsd-11-stable/sys/dev/cxgbe/
H A Dt4_netmap.c95 struct netmap_adapter *na = NA(vi->ifp);
230 struct netmap_adapter *na = NA(vi->ifp);
908 struct netmap_adapter *na = NA(ifp);
/freebsd-11-stable/sys/dev/fb/
H A Dvesa.c173 #define NA (-2) macro
1107 info->vi_mode = NA;
1225 if (vesa_vmode[i].vi_mode == NA)
H A Dvga.c316 #define NA (-2) macro
1440 if (bios_vmode[i].vi_mode == NA)
1469 if (bios_vmode[i].vi_mode == NA)
3035 if (bios_vmode[i].vi_mode == NA)
/freebsd-11-stable/sys/dev/ixgbe/
H A Dix_txrx.c546 struct netmap_adapter *na = NA(adapter->ifp);
993 struct netmap_adapter *na = NA(adapter->ifp);
1363 struct netmap_adapter *na = NA(rxr->adapter->ifp);
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp4693 CGDebugInfo::EmitNamespaceAlias(const NamespaceAliasDecl &NA) { argument
4696 auto &VH = NamespaceAliasCache[&NA];
4700 auto Loc = NA.getLocation();
4702 dyn_cast<NamespaceAliasDecl>(NA.getAliasedNamespace()))
4705 getCurrentContextDescriptor(cast<Decl>(NA.getDeclContext())),
4707 getLineNumber(Loc), NA.getName());
4710 getCurrentContextDescriptor(cast<Decl>(NA.getDeclContext())),
4711 getOrCreateNamespace(cast<NamespaceDecl>(NA.getAliasedNamespace())),
4712 getOrCreateFile(Loc), getLineNumber(Loc), NA.getName());
H A DCGDebugInfo.h497 llvm::DIImportedEntity *EmitNamespaceAlias(const NamespaceAliasDecl &NA);
/freebsd-11-stable/contrib/ntp/ntpq/
H A Dntpq.c122 #define NA 2 /* network address */ macro
150 { "dstadr", NA },
3651 case NA:
/freebsd-11-stable/sys/dev/ixl/
H A Dixl_txrx.c581 struct netmap_adapter *na = NA(que->vsi->ifp);
1377 struct netmap_adapter *na = NA(que->vsi->ifp);

Completed in 392 milliseconds

12