Home
last modified time | relevance | path

Searched defs:C (Results 1 – 25 of 1337) sorted by relevance

12345678910>>...54

/src/contrib/llvm-project/llvm/include/llvm/Support/
H A DSwapByteOrder.h31 inline unsigned char getSwappedBytes(unsigned char C) { return llvm::byteswap(C); } in getSwappedBytes()
32 inline signed char getSwappedBytes( signed char C) { return llvm::byteswap(C); } in getSwappedBytes()
33 inline char getSwappedBytes( char C) { return llvm::byteswap(C); } in getSwappedBytes()
35 inline unsigned short getSwappedBytes(unsigned short C) { return llvm::byteswap(C); } in getSwappedBytes()
36 inline signed short getSwappedBytes( signed short C) { return llvm::byteswap(C); } in getSwappedBytes()
38 inline unsigned int getSwappedBytes(unsigned int C) { return llvm::byteswap(C); } in getSwappedBytes()
39 inline signed int getSwappedBytes( signed int C) { return llvm::byteswap(C); } in getSwappedBytes()
41 inline unsigned long getSwappedBytes(unsigned long C) { return llvm::byteswap(C); } in getSwappedBytes()
42 inline signed long getSwappedBytes( signed long C) { return llvm::byteswap(C); } in getSwappedBytes()
44 inline unsigned long long getSwappedBytes(unsigned long long C) { return llvm::byteswap(C); } in getSwappedBytes()
[all …]
H A DDataExtractor.h37 inline uint24_t getSwappedBytes(uint24_t C) { in getSwappedBytes()
136 const char *getCStr(Cursor &C) const { return getCStrRef(C).data(); } in getCStr()
169 StringRef getCStrRef(Cursor &C) const { in getCStrRef()
239 StringRef getBytes(Cursor &C, uint64_t Length) { in getBytes()
279 uint64_t getUnsigned(Cursor &C, uint32_t Size) const { in getUnsigned()
332 uint64_t getAddress(Cursor &C) const { return getUnsigned(C, AddressSize); } in getAddress()
359 uint8_t getU8(Cursor &C) const { return getU8(&C.Offset, &C.Err); } in getU8()
397 void getU8(Cursor &C, SmallVectorImpl<uint8_t> &Dst, uint32_t Count) const { in getU8()
433 uint16_t getU16(Cursor &C) const { return getU16(&C.Offset, &C.Err); } in getU16()
486 uint32_t getU24(Cursor &C) const { return getU24(&C.Offset, &C.Err); } in getU24()
[all …]
/src/contrib/llvm-project/clang/lib/AST/
H A DOpenACCClause.cpp20 bool OpenACCClauseWithParams::classof(const OpenACCClause *C) { in classof()
25 bool OpenACCClauseWithExprs::classof(const OpenACCClause *C) { in classof()
30 bool OpenACCClauseWithVarList::classof(const OpenACCClause *C) { in classof()
40 bool OpenACCClauseWithCondition::classof(const OpenACCClause *C) { in classof()
43 bool OpenACCClauseWithSingleIntExpr::classof(const OpenACCClause *C) { in classof()
48 OpenACCDefaultClause *OpenACCDefaultClause::Create(const ASTContext &C, in Create()
59 OpenACCIfClause *OpenACCIfClause::Create(const ASTContext &C, in Create()
79 OpenACCSelfClause *OpenACCSelfClause::Create(const ASTContext &C, in Create()
128 OpenACCNumWorkersClause::Create(const ASTContext &C, SourceLocation BeginLoc, in Create()
149 OpenACCVectorLengthClause::Create(const ASTContext &C, SourceLocation BeginLoc, in Create()
[all …]
H A DStmtOpenMP.cpp262 OMPMetaDirective *OMPMetaDirective::Create(const ASTContext &C, in Create()
273 OMPMetaDirective *OMPMetaDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
282 const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, in Create()
292 OMPParallelDirective *OMPParallelDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
301 const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, in Create()
327 OMPSimdDirective *OMPSimdDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
337 const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, in Create()
400 OMPForDirective *OMPForDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
410 OMPTileDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
422 OMPTileDirective *OMPTileDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
[all …]
H A DDeclOpenMP.cpp28 OMPThreadPrivateDecl *OMPThreadPrivateDecl::Create(ASTContext &C, in Create()
38 OMPThreadPrivateDecl *OMPThreadPrivateDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
57 OMPAllocateDecl *OMPAllocateDecl::Create(ASTContext &C, DeclContext *DC, in Create()
66 OMPAllocateDecl *OMPAllocateDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
86 OMPRequiresDecl *OMPRequiresDecl::Create(ASTContext &C, DeclContext *DC, in Create()
93 OMPRequiresDecl *OMPRequiresDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
115 ASTContext &C, DeclContext *DC, SourceLocation L, DeclarationName Name, in Create()
122 OMPDeclareReductionDecl::CreateDeserialized(ASTContext &C, GlobalDeclID ID) { in CreateDeserialized()
145 ASTContext &C, DeclContext *DC, SourceLocation L, DeclarationName Name, in Create()
152 OMPDeclareMapperDecl *OMPDeclareMapperDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
[all …]
H A DASTConcept.cpp23 CreateUnsatisfiedConstraintRecord(const ASTContext &C, in CreateUnsatisfiedConstraintRecord()
39 const ASTContext &C, const ConstraintSatisfaction &Satisfaction) in ASTConstraintSatisfaction()
50 const ASTContext &C, const ASTConstraintSatisfaction &Satisfaction) in ASTConstraintSatisfaction()
61 ASTConstraintSatisfaction::Create(const ASTContext &C, in Create()
71 const ASTContext &C, const ASTConstraintSatisfaction &Satisfaction) { in Rebuild()
79 llvm::FoldingSetNodeID &ID, const ASTContext &C, in Profile()
88 ConceptReference::Create(const ASTContext &C, NestedNameSpecifierLoc NNS, in Create()
H A DExprConcepts.cpp34 const ASTContext &C, ConceptReference *Loc, in ConceptSpecializationExpr()
60 ConceptSpecializationExpr::Create(const ASTContext &C, ConceptReference *Loc, in Create()
67 const ASTContext &C, ConceptReference *Loc, in ConceptSpecializationExpr()
87 ConceptSpecializationExpr::Create(const ASTContext &C, ConceptReference *Loc, in Create()
119 RequiresExpr::RequiresExpr(ASTContext &C, SourceLocation RequiresKWLoc, in RequiresExpr()
167 RequiresExpr::RequiresExpr(ASTContext &C, EmptyShell Empty, in RequiresExpr()
174 ASTContext &C, SourceLocation RequiresKWLoc, RequiresExprBodyDecl *Body, in Create()
188 RequiresExpr::Create(ASTContext &C, EmptyShell Empty, in Create()
H A DOpenMPClause.cpp59 OMPClauseWithPreInit *OMPClauseWithPreInit::get(OMPClause *C) { in get()
64 const OMPClauseWithPreInit *OMPClauseWithPreInit::get(const OMPClause *C) { in get()
183 OMPClauseWithPostUpdate *OMPClauseWithPostUpdate::get(OMPClause *C) { in get()
188 const OMPClauseWithPostUpdate *OMPClauseWithPostUpdate::get(const OMPClause *C) { in get()
302 if (Stmt **C = getAddrOfExprAsWritten(getPreInitStmt())) in used_children() local
308 if (Stmt **C = getAddrOfExprAsWritten(getPreInitStmt())) in used_children() local
314 if (Stmt **C = getAddrOfExprAsWritten(getPreInitStmt())) in used_children() local
320 if (Stmt **C = getAddrOfExprAsWritten(getPreInitStmt())) in used_children() local
326 if (Stmt **C = getAddrOfExprAsWritten(getPreInitStmt())) in used_children() local
332 if (Stmt **C = getAddrOfExprAsWritten(getPreInitStmt())) in used_children() local
[all …]
H A DCommentLexer.cpp27 static inline bool isHTMLNamedCharacterReferenceCharacter(char C) { in isHTMLNamedCharacterReferenceCharacter()
31 static inline bool isHTMLDecimalCharacterReferenceCharacter(char C) { in isHTMLDecimalCharacterReferenceCharacter()
35 static inline bool isHTMLHexCharacterReferenceCharacter(char C) { in isHTMLHexCharacterReferenceCharacter()
83 const char C = Name[i]; in resolveHTMLHexCharacterReference() local
157 bool isHTMLIdentifierStartingCharacter(char C) { in isHTMLIdentifierStartingCharacter()
161 bool isHTMLIdentifierCharacter(char C) { in isHTMLIdentifierCharacter()
184 const char C = *BufferPtr; in skipHTMLQuotedString() local
203 bool isCommandNameStartCharacter(char C) { in isCommandNameStartCharacter()
207 bool isCommandNameCharacter(char C) { in isCommandNameCharacter()
360 char C = *TokenPtr; in lexCommentText() local
[all …]
H A DStmtProfile.cpp445 const OMPClauseWithPreInit *C) { in VistOMPClauseWithPreInit()
451 const OMPClauseWithPostUpdate *C) { in VistOMPClauseWithPostUpdate()
457 void OMPClauseProfiler::VisitOMPIfClause(const OMPIfClause *C) { in VisitOMPIfClause()
463 void OMPClauseProfiler::VisitOMPFinalClause(const OMPFinalClause *C) { in VisitOMPFinalClause()
469 void OMPClauseProfiler::VisitOMPNumThreadsClause(const OMPNumThreadsClause *C) { in VisitOMPNumThreadsClause()
475 void OMPClauseProfiler::VisitOMPAlignClause(const OMPAlignClause *C) { in VisitOMPAlignClause()
480 void OMPClauseProfiler::VisitOMPSafelenClause(const OMPSafelenClause *C) { in VisitOMPSafelenClause()
485 void OMPClauseProfiler::VisitOMPSimdlenClause(const OMPSimdlenClause *C) { in VisitOMPSimdlenClause()
490 void OMPClauseProfiler::VisitOMPSizesClause(const OMPSizesClause *C) { in VisitOMPSizesClause()
496 void OMPClauseProfiler::VisitOMPFullClause(const OMPFullClause *C) {} in VisitOMPFullClause()
[all …]
/src/contrib/llvm-project/compiler-rt/lib/orc/
H A Dendianness.h101 inline unsigned char getSwappedBytes(unsigned char C) { return C; } in getSwappedBytes()
102 inline signed char getSwappedBytes(signed char C) { return C; } in getSwappedBytes()
103 inline char getSwappedBytes(char C) { return C; } in getSwappedBytes()
105 inline unsigned short getSwappedBytes(unsigned short C) { in getSwappedBytes()
108 inline signed short getSwappedBytes(signed short C) { return ByteSwap_16(C); } in getSwappedBytes()
110 inline unsigned int getSwappedBytes(unsigned int C) { return ByteSwap_32(C); } in getSwappedBytes()
111 inline signed int getSwappedBytes(signed int C) { return ByteSwap_32(C); } in getSwappedBytes()
113 inline unsigned long getSwappedBytes(unsigned long C) { in getSwappedBytes()
118 inline signed long getSwappedBytes(signed long C) { in getSwappedBytes()
124 inline unsigned long long getSwappedBytes(unsigned long long C) { in getSwappedBytes()
[all …]
/src/sbin/growfs/
H A Ddebug.h70 #define DBG_DUMP_HEX(F,C,M) dbg_dump_hex((F),(C),(M)) argument
71 #define DBG_DUMP_FS(F,C) dbg_dump_fs((F),(C)) argument
72 #define DBG_DUMP_CG(F,C,M) dbg_dump_cg((C),(M)) argument
73 #define DBG_DUMP_CSUM(F,C,M) dbg_dump_csum((C),(M)) argument
74 #define DBG_DUMP_INO(F,C,M) (F)->fs_magic == FS_UFS1_MAGIC \ argument
77 #define DBG_DUMP_IBLK(F,C,M,L) dbg_dump_iblk((F),(C),(M),(L)) argument
78 #define DBG_DUMP_INMAP(F,C,M) dbg_dump_inmap((F),(C),(M)) argument
79 #define DBG_DUMP_FRMAP(F,C,M) dbg_dump_frmap((F),(C),(M)) argument
80 #define DBG_DUMP_CLMAP(F,C,M) dbg_dump_clmap((F),(C),(M)) argument
81 #define DBG_DUMP_CLSUM(F,C,M) dbg_dump_clsum((F),(C),(M)) argument
[all …]
/src/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMILexer.cpp85 static Cursor skipWhitespace(Cursor C) { in skipWhitespace()
91 static bool isNewlineChar(char C) { return C == '\n' || C == '\r'; } in isNewlineChar()
94 static Cursor skipComment(Cursor C) { in skipComment()
104 static Cursor skipMachineOperandComment(Cursor C) { in skipMachineOperandComment()
118 static bool isIdentifierChar(char C) { in isIdentifierChar()
128 Cursor C = Cursor(Value.substr(1, Value.size() - 2)); in unescapeQuotedString() local
154 static Cursor lexStringConstant(Cursor C, ErrorCallbackType ErrorCallback) { in lexStringConstant()
168 static Cursor lexName(Cursor C, MIToken &Token, MIToken::TokenKind Type, in lexName()
293 static Cursor maybeLexIdentifier(Cursor C, MIToken &Token) { in maybeLexIdentifier()
305 static Cursor maybeLexMachineBasicBlock(Cursor C, MIToken &Token, in maybeLexMachineBasicBlock()
[all …]
/src/contrib/llvm-project/clang/lib/Index/
H A DCommentToXML.cpp98 FullCommentParts::FullCommentParts(const FullComment *C, in FullCommentParts()
198 void printHTMLStartTagComment(const HTMLStartTagComment *C, in printHTMLStartTagComment()
262 void CommentASTToHTMLConverter::visitTextComment(const TextComment *C) { in visitTextComment()
267 const InlineCommandComment *C) { in visitInlineCommandComment()
311 const HTMLStartTagComment *C) { in visitHTMLStartTagComment()
316 const HTMLEndTagComment *C) { in visitHTMLEndTagComment()
321 const ParagraphComment *C) { in visitParagraphComment()
334 const BlockCommandComment *C) { in visitBlockCommandComment()
354 const ParamCommandComment *C) { in visitParamCommandComment()
386 const TParamCommandComment *C) { in visitTParamCommandComment()
[all …]
/src/contrib/llvm-project/llvm/include/llvm/Passes/
H A DPassBuilder.h407 const std::function<void(FunctionPassManager &, OptimizationLevel)> &C) { in registerPeepholeEPCallback()
421 const std::function<void(LoopPassManager &, OptimizationLevel)> &C) { in registerLateLoopOptimizationsEPCallback()
431 const std::function<void(LoopPassManager &, OptimizationLevel)> &C) { in registerLoopOptimizerEndEPCallback()
441 const std::function<void(FunctionPassManager &, OptimizationLevel)> &C) { in registerScalarOptimizerLateEPCallback()
452 const std::function<void(CGSCCPassManager &, OptimizationLevel)> &C) { in registerCGSCCOptimizerLateEPCallback()
463 const std::function<void(FunctionPassManager &, OptimizationLevel)> &C) { in registerVectorizerStartEPCallback()
473 const std::function<void(ModulePassManager &, OptimizationLevel)> &C) { in registerPipelineStartEPCallback()
482 const std::function<void(ModulePassManager &, OptimizationLevel)> &C) { in registerPipelineEarlySimplificationEPCallback()
491 const std::function<void(ModulePassManager &, OptimizationLevel)> &C) { in registerOptimizerEarlyEPCallback()
500 const std::function<void(ModulePassManager &, OptimizationLevel)> &C) { in registerOptimizerLastEPCallback()
[all …]
/src/contrib/llvm-project/llvm/lib/IR/
H A DType.cpp36 Type *Type::getPrimitiveType(LLVMContext &C, TypeID IDNumber) { in getPrimitiveType()
93 Type *Type::getFloatingPointTy(LLVMContext &C, const fltSemantics &S) { in getFloatingPointTy()
237 Type *Type::getVoidTy(LLVMContext &C) { return &C.pImpl->VoidTy; } in getVoidTy()
238 Type *Type::getLabelTy(LLVMContext &C) { return &C.pImpl->LabelTy; } in getLabelTy()
239 Type *Type::getHalfTy(LLVMContext &C) { return &C.pImpl->HalfTy; } in getHalfTy()
240 Type *Type::getBFloatTy(LLVMContext &C) { return &C.pImpl->BFloatTy; } in getBFloatTy()
241 Type *Type::getFloatTy(LLVMContext &C) { return &C.pImpl->FloatTy; } in getFloatTy()
242 Type *Type::getDoubleTy(LLVMContext &C) { return &C.pImpl->DoubleTy; } in getDoubleTy()
243 Type *Type::getMetadataTy(LLVMContext &C) { return &C.pImpl->MetadataTy; } in getMetadataTy()
244 Type *Type::getTokenTy(LLVMContext &C) { return &C.pImpl->TokenTy; } in getTokenTy()
[all …]
/src/sys/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dctype.h36 #define iscntrl(C) (uchar(C) <= 0x1f || uchar(C) == 0x7f) argument
37 #define isgraph(C) ((C) >= 0x21 && (C) <= 0x7E) argument
38 #define ispunct(C) \ argument
43 #define isspace(C) ((C) == 0x20 || ((C) >= 0x9 && (C) <= 0xD)) argument
/src/contrib/llvm-project/clang/include/clang/AST/
H A DASTUnresolvedSet.h45 ASTUnresolvedSet(ASTContext &C, unsigned N) : Decls(C, N) {} in ASTUnresolvedSet()
56 void addDecl(ASTContext &C, NamedDecl *D, AccessSpecifier AS) { in addDecl()
60 void addLazyDecl(ASTContext &C, GlobalDeclID ID, AccessSpecifier AS) { in addLazyDecl()
89 void reserve(ASTContext &C, unsigned N) { in reserve()
93 void append(ASTContext &C, iterator I, iterator E) { in append()
109 ASTUnresolvedSet &get(ASTContext &C) const { in get()
115 void reserve(ASTContext &C, unsigned N) { Impl.reserve(C, N); } in reserve()
117 void addLazyDecl(ASTContext &C, GlobalDeclID ID, AccessSpecifier AS) { in addLazyDecl()
H A DOpenACCClause.h64 static bool classof(const OpenACCClause *C) { in classof()
86 static bool classof(const OpenACCClause *C) { in classof()
107 static bool classof(const OpenACCClause *C) { in classof()
133 static bool classof(const OpenACCClause *C) { in classof()
159 static bool classof(const OpenACCClause *C) { in classof()
185 static bool classof(const OpenACCClause *C) { in classof()
260 static bool classof(const OpenACCClause *C) { in classof()
299 static bool classof(const OpenACCClause *C) { in classof()
355 static bool classof(const OpenACCClause *C) { in classof()
369 static bool classof(const OpenACCClause *C) { in classof()
[all …]
H A DASTVector.h60 ASTVector(const ASTContext &C, unsigned N) : Capacity(nullptr, false) { in ASTVector()
162 void push_back(const_reference Elt, const ASTContext &C) { in push_back()
173 void reserve(const ASTContext &C, unsigned N) { in reserve()
184 void append(const ASTContext &C, in_iter in_start, in_iter in_end) { in append()
202 void append(const ASTContext &C, size_type NumInputs, const T &Elt) { in append()
219 iterator insert(const ASTContext &C, iterator I, const T &Elt) { in insert()
240 iterator insert(const ASTContext &C, iterator I, size_type NumToInsert, in insert()
289 iterator insert(const ASTContext &C, iterator I, ItTy From, ItTy To) { in insert()
341 void resize(const ASTContext &C, unsigned N, const T &NV) { in resize()
380 void ASTVector<T>::grow(const ASTContext &C, size_t MinSize) { in grow()
/src/sys/contrib/ck/include/
H A Dck_rwcohort.h45 #define CK_RWCOHORT_WP_READ_LOCK(N, RW, C, GC, LC) \ argument
47 #define CK_RWCOHORT_WP_READ_UNLOCK(N, RW, C, GC, LC) \ argument
49 #define CK_RWCOHORT_WP_WRITE_LOCK(N, RW, C, GC, LC) \ argument
51 #define CK_RWCOHORT_WP_WRITE_UNLOCK(N, RW, C, GC, LC) \ argument
149 #define CK_RWCOHORT_RP_READ_LOCK(N, RW, C, GC, LC) \ argument
151 #define CK_RWCOHORT_RP_READ_UNLOCK(N, RW, C, GC, LC) \ argument
153 #define CK_RWCOHORT_RP_WRITE_LOCK(N, RW, C, GC, LC) \ argument
155 #define CK_RWCOHORT_RP_WRITE_UNLOCK(N, RW, C, GC, LC) \ argument
250 #define CK_RWCOHORT_NEUTRAL_READ_LOCK(N, RW, C, GC, LC) \ argument
252 #define CK_RWCOHORT_NEUTRAL_READ_UNLOCK(N, RW, C, GC, LC) \ argument
[all …]
/src/contrib/llvm-project/llvm/lib/Support/
H A DDJB.cpp22 UTF32 C; in chopOneUTF32() local
37 static StringRef toUTF8(UTF32 C, MutableArrayRef<UTF8> Storage) { in toUTF8()
51 static UTF32 foldCharDwarf(UTF32 C) { in foldCharDwarf()
63 for (unsigned char C : Buffer) { in fastCaseFoldingDjbHash() local
78 UTF32 C = foldCharDwarf(chopOneUTF32(Buffer)); in caseFoldingDjbHash() local
/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DUnixAPIChecker.cpp114 SVal PtrVal, const Expr *PtrExpr, CheckerContext &C, ProgramStateRef State, in EnsurePtrNotNull()
183 void UnixAPIMisuseChecker::ReportOpenBug(CheckerContext &C, in ReportOpenBug()
196 void UnixAPIMisuseChecker::CheckOpen(CheckerContext &C, in CheckOpen()
201 void UnixAPIMisuseChecker::CheckOpenAt(CheckerContext &C, in CheckOpenAt()
206 void UnixAPIMisuseChecker::CheckOpenVariant(CheckerContext &C, in CheckOpenVariant()
316 const Expr *SizePtrExpr, CheckerContext &C, ProgramStateRef State) const { in EnsureGetdelimBufferAndSizeCorrect()
371 void UnixAPIMisuseChecker::CheckGetDelim(CheckerContext &C, in CheckGetDelim()
401 void UnixAPIMisuseChecker::CheckPthreadOnce(CheckerContext &C, in CheckPthreadOnce()
463 CheckerContext &C, in ReportZeroByteAllocation()
486 void UnixAPIPortabilityChecker::BasicAllocationCheck(CheckerContext &C, in BasicAllocationCheck()
[all …]
/src/sys/dev/pms/RefTisa/sallsdk/spc/
H A Dmpidebug.h192 #define smTraceState(L,S,C,T) siTraceState(agRoot,L,S,C,T) argument
193 #define smTraceChipState(L,C,T) siTraceState(agRoot,L,fiTraceSmChip,C,T) argument
194 #define smTraceFabricState(L,C,T) siTraceState(agRoot,L,fiTraceSmFabr,C,T) argument
195 #define smTracePortState(L,C,T) siTraceState(agRoot,L,fiTraceSmPort,C,T) argument
196 #define smTraceLoginState(L,C,T) siTraceState(agRoot,L,fiTraceSmLogin,C,T) argument
197 #define smTraceXchgState(L,C,T) siTraceState(agRoot,L,fiTraceSmXchg,C,T) argument
198 #define smTraceDiscFabState(L,C,T) siTraceState(agRoot,L,fiTraceDiscFab,C,T) argument
199 #define smTraceDiscLoopState(L,C,T) siTraceState(agRoot,L,fiTraceDiscLoop,C,T) argument
200 #define smTraceFc2State(L,C,T) siTraceState(agRoot,L,fiTraceFc2,C,T) argument
201 #define smTraceScsiTgtState(L,C,T) siTraceState(agRoot,L,fiTraceTgtState,C,T) argument
[all …]
/src/contrib/llvm-project/llvm/lib/Demangle/
H A DRustDemangle.cpp170 static inline bool isDigit(const char C) { return '0' <= C && C <= '9'; } in isDigit()
172 static inline bool isHexDigit(const char C) { in isHexDigit()
176 static inline bool isLower(const char C) { return 'a' <= C && C <= 'z'; } in isLower()
178 static inline bool isUpper(const char C) { return 'A' <= C && C <= 'Z'; } in isUpper()
181 static inline bool isValid(const char C) { in isValid()
386 static bool parseBasicType(char C, BasicType &Type) { in parseBasicType()
544 char C = consume(); in demangleType() local
638 for (char C : Ident.Name) { in demangleFnSig() local
732 char C = consume(); in demangleConst() local
834 char C = CodePoint; in demangleConstChar() local
[all …]

12345678910>>...54