Searched refs:TK (Results 1 - 14 of 14) sorted by relevance

/freebsd-10.3-release/contrib/gcclibs/libcpp/include/
H A Dcpplib.h83 TK(EOF, NONE) \
120 TK(NAME, IDENT) /* word */ \
121 TK(AT_NAME, IDENT) /* @word - Objective-C */ \
122 TK(NUMBER, LITERAL) /* 34_be+ta */ \
124 TK(CHAR, LITERAL) /* 'char' */ \
125 TK(WCHAR, LITERAL) /* L'char' */ \
126 TK(OTHER, LITERAL) /* stray punctuation */ \
128 TK(STRING, LITERAL) /* "string" */ \
129 TK(WSTRING, LITERAL) /* L"string" */ \
130 TK(OBJC_STRIN
141 #define TK macro
154 #undef TK macro
[all...]
/freebsd-10.3-release/sys/net80211/
H A Dieee80211_crypto_tkip.c514 static void tkip_mixing_phase1(u16 *TTAK, const u8 *TK, const u8 *TA, u32 IV32) argument
527 TTAK[0] += _S_(TTAK[4] ^ Mk16(TK[1 + j], TK[0 + j]));
528 TTAK[1] += _S_(TTAK[0] ^ Mk16(TK[5 + j], TK[4 + j]));
529 TTAK[2] += _S_(TTAK[1] ^ Mk16(TK[9 + j], TK[8 + j]));
530 TTAK[3] += _S_(TTAK[2] ^ Mk16(TK[13 + j], TK[12 + j]));
531 TTAK[4] += _S_(TTAK[3] ^ Mk16(TK[
539 tkip_mixing_phase2(u8 *WEPSeed, const u8 *TK, const u16 *TTAK, u16 IV16) argument
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/AST/
H A DDeclTemplate.cpp706 ClassTemplateSpecializationDecl(ASTContext &Context, Kind DK, TagKind TK, argument
713 : CXXRecordDecl(DK, TK, DC, StartLoc, IdLoc,
729 ClassTemplateSpecializationDecl::Create(ASTContext &Context, TagKind TK, argument
740 TK, DC, StartLoc, IdLoc,
823 ClassTemplatePartialSpecializationDecl(ASTContext &Context, TagKind TK, argument
835 TK, DC, StartLoc, IdLoc,
846 Create(ASTContext &Context, TagKind TK,DeclContext *DC, argument
859 = new (Context)ClassTemplatePartialSpecializationDecl(Context, TK, DC,
H A DDeclCXX.cpp86 CXXRecordDecl::CXXRecordDecl(Kind K, TagKind TK, DeclContext *DC, argument
89 : RecordDecl(K, TK, DC, StartLoc, IdLoc, Id, PrevDecl),
93 CXXRecordDecl *CXXRecordDecl::Create(const ASTContext &C, TagKind TK, argument
98 CXXRecordDecl* R = new (C) CXXRecordDecl(CXXRecord, TK, DC, StartLoc, IdLoc,
H A DDecl.cpp3341 RecordDecl::RecordDecl(Kind DK, TagKind TK, DeclContext *DC, argument
3344 : TagDecl(DK, TK, DC, IdLoc, Id, PrevDecl, StartLoc) {
3353 RecordDecl *RecordDecl::Create(const ASTContext &C, TagKind TK, DeclContext *DC, argument
3356 RecordDecl* R = new (C) RecordDecl(Record, TK, DC, StartLoc, IdLoc, Id,
H A DASTContext.cpp4483 CreateRecordDecl(const ASTContext &Ctx, RecordDecl::TagKind TK, argument
4487 return CXXRecordDecl::Create(Ctx, TK, DC, Loc, Loc, Id);
4489 return RecordDecl::Create(Ctx, TK, DC, Loc, Loc, Id);
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DDecl.h2562 TagDecl(Kind DK, TagKind TK, DeclContext *DC, SourceLocation L,
2564 : TypeDecl(DK, DC, L, Id, StartL), DeclContext(DK), TagDeclKind(TK),
2569 assert((DK != Enum || TK == TTK_Enum) &&
2685 void setTagKind(TagKind TK) { TagDeclKind = TK; }
3027 RecordDecl(Kind DK, TagKind TK, DeclContext *DC,
3032 static RecordDecl *Create(const ASTContext &C, TagKind TK, DeclContext *DC,
H A DDeclTemplate.h1426 ClassTemplateSpecializationDecl(ASTContext &Context, Kind DK, TagKind TK,
1438 Create(ASTContext &Context, TagKind TK, DeclContext *DC,
1663 ClassTemplatePartialSpecializationDecl(ASTContext &Context, TagKind TK,
1680 Create(ASTContext &Context, TagKind TK, DeclContext *DC,
H A DDeclCXX.h613 CXXRecordDecl(Kind K, TagKind TK, DeclContext *DC,
665 static CXXRecordDecl *Create(const ASTContext &C, TagKind TK, DeclContext *DC,
/freebsd-10.3-release/contrib/llvm/include/llvm/Support/
H A DYAMLParser.h527 /// @brief Consume the next token and error if it is not \a TK.
528 bool expectToken(int TK);
/freebsd-10.3-release/contrib/gcclibs/libcpp/
H A Dlex.c45 #define TK(e, s) { SPELL_ ## s, U #e }, macro
48 #undef TK macro
/freebsd-10.3-release/contrib/llvm/lib/Support/
H A DYAMLParser.cpp2229 bool Document::expectToken(int TK) { argument
2231 if (T.Kind != TK) {
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenModule.cpp2408 CreateRecordDecl(const ASTContext &Ctx, RecordDecl::TagKind TK, argument
2412 return CXXRecordDecl::Create(Ctx, TK, DC, Loc, Loc, Id);
2414 return RecordDecl::Create(Ctx, TK, DC, Loc, Loc, Id);
/freebsd-10.3-release/contrib/gcc/cp/
H A Dparser.c756 #define TK(e, s) #e,
759 #undef TK
755 #define TK macro
758 #undef TK macro

Completed in 281 milliseconds