HomeSort by: relevance | last modified time | path
    Searched defs:NA (Results 1 - 17 of 17) sorted by relevancy

  /src/crypto/external/bsd/openssl.old/dist/test/
drbg_cavs_data.h 28 NA
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.compile/
compile-cplus-member.cc 22 typedef enum {NA = 20, NB, NC, ND} ANON_NE;
51 N::ANON_NE A::s_protected_ = N::NA;
64 if (a.s_protected_ == N::NA) // +20
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.compile/
compile-cplus-member.cc 22 typedef enum {NA = 20, NB, NC, ND} ANON_NE;
51 N::ANON_NE A::s_protected_ = N::NA;
64 if (a.s_protected_ == N::NA) // +20
  /src/sbin/routed/
input.c 943 # define NA (rip->rip_auths)
951 if ((void *)NA >= lim || NA->a_family != RIP_AF_AUTH) {
960 if (ap->type != NA->a_type
965 if (NA->a_type == RIP_AUTH_PW) {
966 if (!memcmp(NA->au.au_pw, ap->key, RIP_AUTH_PW_LEN))
972 if (NA->au.a_md5.md5_keyid != ap->keyid)
975 len = ntohs(NA->au.a_md5.md5_pkt_len);
976 if ((len-sizeof(*rip)) % sizeof(*NA) != 0
977 || len != (char *)lim-(char*)rip-(int)sizeof(*NA)) {
    [all...]
trace.c 895 # define NA ((struct netauth*)n)
952 if (NA->a_type == RIP_AUTH_PW
957 qstring(NA->au.au_pw,
962 if (NA->a_type == RIP_AUTH_MD5
970 ntohs(NA->au.a_md5.md5_pkt_len),
971 NA->au.a_md5.md5_keyid,
972 NA->au.a_md5.md5_auth_len,
973 (int)ntohl(NA->au.a_md5.md5_seqno),
974 (int)ntohs(NA->au.a_md5.rsvd[0]),
975 (int)ntohs(NA->au.a_md5.rsvd[1]))
    [all...]
  /src/external/gpl3/binutils/dist/gprofng/src/
Histable.h 68 NA, LONG, SHORT, MANGLED, SONAME = 0x10
95 get_name (NameFormat = NA)
174 virtual char *get_name (NameFormat = NA);
224 virtual char *get_name (NameFormat = NA);
270 virtual char *get_name (NameFormat = NA);
  /src/external/gpl3/binutils.old/dist/gprofng/src/
Histable.h 68 NA, LONG, SHORT, MANGLED, SONAME = 0x10
95 get_name (NameFormat = NA)
174 virtual char *get_name (NameFormat = NA);
224 virtual char *get_name (NameFormat = NA);
270 virtual char *get_name (NameFormat = NA);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.linespec/
cpls.cc 215 struct na {}; struct in namespace:n
219 struct NA {};
264 n::na na; local
266 foo (na, nb);
267 a<n::na> ana;
271 n::NA<n::na, n::nb> NAnanb;
272 n::NB<n::na, n::nb> Nbnanb;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.linespec/
cpls.cc 215 struct na {}; struct in namespace:n
219 struct NA {};
264 n::na na; local
266 foo (na, nb);
267 a<n::na> ana;
271 n::NA<n::na, n::nb> NAnanb;
272 n::NB<n::na, n::nb> Nbnanb;
  /src/external/mpl/dhcp/bind/dist/lib/dns/
keymgr.c 65 #define NA DST_KEY_STATE_NA
540 * A state in 'states' that is NA matches any state.
542 * If 'next_state' is set (not NA), we are pretending as if record 'type' of
554 if (states[i] == NA) {
557 if (next_state != NA && i == type &&
659 dst_key_state_t zst[NUM_KEYSTATES] = { NA, NA, NA, NA };
702 * If 'next_state' is not NA, we are actually looking for a key as i
799 dst_key_state_t na[NUM_KEYSTATES] = { NA, NA, NA, NA }; local
868 dst_key_state_t na[NUM_KEYSTATES] = { NA, NA, NA, NA }; local
919 dst_key_state_t na[NUM_KEYSTATES] = { NA, NA, NA, NA }; local
957 dst_key_state_t na[NUM_KEYSTATES] = { NA, NA, NA, NA }; local
1043 dst_key_state_t na[NUM_KEYSTATES] = { NA, NA, NA, NA }; local
1114 dst_key_state_t na[NUM_KEYSTATES] = { NA, NA, NA, NA }; local
    [all...]
  /src/sys/kern/
tty.c 152 #define NA ORDINARY | ALPHA
165 E|NA, O|NA, O|NA, E|NA, O|NA, E|NA, E|NA, O|NA, /* 0 - 7 */
166 O|NA, E|NA, E|NO, O|NO, E|NO, O|NO, O|NO, E|NO, /* 8 - ? *
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
RDFGraph.h 340 template <typename S> NodeAddr(const NodeAddr<S> &NA)
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 after "this" in the circular chain
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
RDFGraph.cpp 68 auto NA = P.G.addr<NodeBase*>(P.Obj);
69 uint16_t Attrs = NA.Addr->getAttrs();
371 NodeAddr<NodeBase*> NA = { reinterpret_cast<NodeBase*>(ActiveEnd),
374 return NA;
395 // Insert node NA after "this" in the circular chain.
396 void NodeBase::append(NodeAddr<NodeBase*> NA) {
398 // If NA is already "next", do nothing.
399 if (Next != NA.Id) {
400 Next = NA.Id;
401 NA.Addr->Next = Nx
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonCommonGEP.cpp 143 Value *fabricateGEP(NodeVect &NA, BasicBlock::iterator At,
1080 Value *HexagonCommonGEP::fabricateGEP(NodeVect &NA, BasicBlock::iterator At,
1084 << NA);
1085 unsigned Num = NA.size();
1086 GepNode *RN = NA[0];
1098 if (!NA[nax]->PTy->isPointerTy()) {
1103 // Keep adding indices from NA until we have to stop and generate
1106 GepNode *N = NA[nax-1];
1112 if (NextTy != NA[nax]->PTy)
1166 NodeVect NA; // Nodes to assemble
    [all...]
  /src/external/mpl/bind/dist/lib/dns/
keymgr.c 72 #define NA DST_KEY_STATE_NA
641 * A state in 'states' that is NA matches any state.
643 * If 'next_state' is set (not NA), we are pretending as if record 'type' of
655 if (states[i] == NA) {
658 if (next_state != NA && i == type &&
710 if (keymgr_key_match_state(d->key, k, NA, NA, hidden)) {
768 dst_key_state_t zst[NUM_KEYSTATES] = { NA, NA, NA, NA }
908 dst_key_state_t na[NUM_KEYSTATES] = { NA, NA, NA, NA }; local
977 dst_key_state_t na[NUM_KEYSTATES] = { NA, NA, NA, NA }; local
1028 dst_key_state_t na[NUM_KEYSTATES] = { NA, NA, NA, NA }; local
1066 dst_key_state_t na[NUM_KEYSTATES] = { NA, NA, NA, NA }; local
1152 dst_key_state_t na[NUM_KEYSTATES] = { NA, NA, NA, NA }; local
1223 dst_key_state_t na[NUM_KEYSTATES] = { NA, NA, NA, NA }; local
    [all...]
  /src/external/bsd/ntp/dist/ntpq/
ntpq.c 123 #define NA 2 /* network address */
151 { "dstadr", NA },
3700 case NA:
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseDecl.cpp 1160 // Special handling of 'NA' only when applied to introduced or
1164 IdentifierInfo *NA = Tok.getIdentifierInfo();
1165 if (NA->getName() == "NA") {

Completed in 62 milliseconds