| /freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | AnalysisManager.h | 134 SourceLocation IL = SM.getIncludeLoc(SM.getFileID(SL)); in isInCodeFile() local 135 if (!IL.isValid() || !SM.isInMainFile(IL)) in isInCodeFile() 139 if (SM.getFilename(IL).contains("UnifiedSource")) { in isInCodeFile()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | CStringSyntaxChecker.cpp | 67 if (const auto *IL = dyn_cast<IntegerLiteral>(E)) in isOne() local 68 return (IL->getValue().isIntN(1)); in isOne() 181 if (const auto *IL = dyn_cast<IntegerLiteral>(LenArg->IgnoreParenImpCasts())) { in containsBadStrlcpyStrlcatPattern() local 182 uint64_t ILRawVal = IL->getValue().getZExtValue(); in containsBadStrlcpyStrlcatPattern() 192 if ((IL = dyn_cast<IntegerLiteral>(BE->getRHS()->IgnoreParenImpCasts()))) { in containsBadStrlcpyStrlcatPattern() 193 DstOff = IL->getValue().getZExtValue(); in containsBadStrlcpyStrlcatPattern()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | SmallPtrSet.h | 474 void insert(std::initializer_list<PtrType> IL) { in insert() argument 475 insert(IL.begin(), IL.end()); in insert() 568 SmallPtrSet(std::initializer_list<PtrType> IL) in SmallPtrSet() argument 570 this->insert(IL.begin(), IL.end()); in SmallPtrSet() 589 operator=(std::initializer_list<PtrType> IL) { 591 this->insert(IL.begin(), IL.end());
|
| H A D | TinyPtrVector.h | 113 TinyPtrVector(std::initializer_list<EltTy> IL) in TinyPtrVector() argument 114 : Val(IL.size() == 0 in TinyPtrVector() 116 : IL.size() == 1 ? PtrUnion(*IL.begin()) in TinyPtrVector() 117 : PtrUnion(new VecTy(IL.begin(), IL.end()))) {} in TinyPtrVector()
|
| H A D | SmallVector.h | 699 void append(std::initializer_list<T> IL) { in append() argument 700 append(IL.begin(), IL.end()); in append() 731 void assign(std::initializer_list<T> IL) { in assign() argument 733 append(IL); in assign() 934 void insert(iterator I, std::initializer_list<T> IL) { in insert() argument 935 insert(I, IL.begin(), IL.end()); in insert() 1227 SmallVector(std::initializer_list<T> IL) : SmallVectorImpl<T>(N) { 1228 this->append(IL); 1280 SmallVector &operator=(std::initializer_list<T> IL) { 1281 this->assign(IL);
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | Compiler.h | 62 InitLink IL{K_Field}; in Field() 63 IL.Offset = Offset; in Field() 64 return IL; in Field() 67 InitLink IL{K_Temp}; in Temp() 68 IL.Offset = Offset; in Temp() 69 return IL; in Temp() 72 InitLink IL{K_Decl}; in Decl() 73 IL.D = D; in Decl() 74 return IL; in Decl() 77 InitLink IL{K_Elem}; in Elem() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/ |
| H A D | Interpreter.cpp | 63 IL = new IntrinsicLowering(getDataLayout()); in Interpreter() 67 delete IL; in ~Interpreter()
|
| H A D | Interpreter.h | 76 IntrinsicLowering *IL; variable
|
| /freebsd/crypto/krb5/src/windows/kfwlogon/ |
| H A D | kfwlogon.c | 194 MSV1_0_INTERACTIVE_LOGON *IL; in NPLogonNotify() local 256 IL = (MSV1_0_INTERACTIVE_LOGON *) lpAuthentInfo; in NPLogonNotify() 261 if (!UnicodeStringToANSI(IL->UserName, uname, MAX_USERNAME_LENGTH) || in NPLogonNotify() 262 !UnicodeStringToANSI(IL->Password, password, MAX_PASSWORD_LENGTH) || in NPLogonNotify() 263 !UnicodeStringToANSI(IL->LogonDomainName, logonDomain, MAX_DOMAIN_LENGTH)) in NPLogonNotify()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | StmtOpenMP.cpp | 350 Dir->setIsLastIterVariable(Exprs.IL); in Create() 526 Dir->setIsLastIterVariable(Exprs.IL); in Create() 673 Dir->setIsLastIterVariable(Exprs.IL); in Create() 718 Dir->setIsLastIterVariable(Exprs.IL); in Create() 1067 Dir->setIsLastIterVariable(Exprs.IL); in Create() 1171 Dir->setIsLastIterVariable(Exprs.IL); in Create() 1216 Dir->setIsLastIterVariable(Exprs.IL); in Create() 1259 Dir->setIsLastIterVariable(Exprs.IL); in Create() 1304 Dir->setIsLastIterVariable(Exprs.IL); in Create() 1349 Dir->setIsLastIterVariable(Exprs.IL); in Create() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Format.h | 231 FormattedBytes(ArrayRef<uint8_t> B, uint32_t IL, std::optional<uint64_t> O, 233 : Bytes(B), FirstByteOffset(O), IndentLevel(IL), NumPerLine(NPL),
|
| /freebsd/contrib/llvm-project/clang/include/clang/Analysis/Support/ |
| H A D | BumpVector.h | 224 for (T *I = E + D - 1, *IL = S + D - 1; I != IL; --I) { in move_range_right() local
|
| /freebsd/crypto/openssl/test/certs/ |
| H A D | ca-key2.pem | 5 H0/7DehJ6ugIabapyf3mFV/RLi0w8FeeSqbW+IL/SULOr9NWhB8yfShpStsyqUvQ
|
| /freebsd/contrib/llvm-project/lldb/tools/lldb-server/ |
| H A D | lldb-server.cpp | 53 llvm::InitLLVM IL(argc, argv, /*InstallPipeSignalExitHandler=*/false); in main() local
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | IR2Vec.h | 80 Embedding(std::initializer_list<double> IL) : Data(IL) {} in Embedding()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | CodeViewYAMLDebugSections.cpp | 623 for (const auto &IL : Lines) { in fromCodeViewSubsection() local 625 auto ExpF = getFileName(Strings, Checksums, IL.Header->FileID); in fromCodeViewSubsection() 629 Site.Inlinee = IL.Header->Inlinee.getIndex(); in fromCodeViewSubsection() 630 Site.SourceLineNum = IL.Header->SourceLineNum; in fromCodeViewSubsection() 632 for (const auto EF : IL.ExtraFiles) { in fromCodeViewSubsection()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGOpenMPRuntime.h | 949 Address IL = Address::invalid(); 962 StaticRTInput(unsigned IVSize, bool IVSigned, bool Ordered, Address IL, 965 : IVSize(IVSize), IVSigned(IVSigned), Ordered(Ordered), IL(IL), LB(LB), in IVSize() 1037 Address IL, Address LB, 1908 unsigned IVSize, bool IVSigned, Address IL,
|
| H A D | CGStmtOpenMP.cpp | 3021 RT.emitForNext(*this, S.getBeginLoc(), IVSize, IVSigned, LoopArgs.IL, in EmitOMPOuterLoop() 3185 IVSize, IVSigned, Ordered, LoopArgs.IL, LoopArgs.LB, LoopArgs.UB, in EmitOMPForOuterLoop() 3202 LoopArgs.IL, LoopArgs.Chunk, LoopArgs.EUB); in EmitOMPForOuterLoop() 3237 IVSize, IVSigned, /* Ordered = */ false, LoopArgs.IL, LoopArgs.LB, in EmitOMPDistributeOuterLoop() 3256 OuterLoopArgs.IL = LoopArgs.IL; in EmitOMPDistributeOuterLoop() 3511 LValue IL = in EmitOMPWorksharingLoop() local 3596 [IVSize, IVSigned, Ordered, IL, LB, UB, ST, StaticChunkedOne, Chunk, in EmitOMPWorksharingLoop() 3605 IVSize, IVSigned, Ordered, IL.getAddress(), LB.getAddress(), in EmitOMPWorksharingLoop() 3649 ST.getAddress(), IL.getAddress(), Chunk, in EmitOMPWorksharingLoop() 3656 EmitOMPSimdFinal(S, [IL, &S](CodeGenFunction &CGF) { in EmitOMPWorksharingLoop() [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | SourceLocation.h | 316 SourceLocation IL) 317 : Filename(FN), ID(FID), Line(Ln), Col(Co), IncludeLoc(IL) {}
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/ |
| H A D | EmulateInstructionARM64.h | 142 IL : 1, // Illegal state bit member
|
| /freebsd/lib/libc/net/ |
| H A D | protocols | 46 il 40 IL # IL Transport Protocol
|
| /freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
| H A D | OHOS.cpp | 124 static std::string makePath(const std::initializer_list<std::string> &IL) { in makePath() argument 126 for (const auto &S : IL) in makePath()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
| H A D | SPIRVPrepareFunctions.cpp | 143 IntrinsicLowering IL(M->getDataLayout()); in lowerIntrinsicToFunction() local 144 IL.LowerIntrinsicCall(BSwap); in lowerIntrinsicToFunction()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaDeclAttr.cpp | 407 const auto *IL = dyn_cast<IntegerLiteral>(ArgExp); in checkAttrArgsAreCapabilityObjs() local 408 if(FD && IL) { in checkAttrArgsAreCapabilityObjs() 410 llvm::APInt ArgValue = IL->getValue(); in checkAttrArgsAreCapabilityObjs() 976 IdentifierLoc *IL = AL.getArgAsIdent(0); in handleConsumableAttr() local 978 IL->getIdentifierInfo()->getName(), DefaultState)) { in handleConsumableAttr() 979 S.Diag(IL->getLoc(), diag::warn_attribute_type_not_supported) in handleConsumableAttr() 980 << AL << IL->getIdentifierInfo(); in handleConsumableAttr() 1080 IdentifierLoc *IL = AL.getArgAsIdent(0); in handleReturnTypestateAttr() local 1082 IL->getIdentifierInfo()->getName(), ReturnState)) { in handleReturnTypestateAttr() 1083 S.Diag(IL->getLoc(), diag::warn_attribute_type_not_supported) in handleReturnTypestateAttr() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | VectorCombine.cpp | 2647 for (InstLane IL : Item) { in generateInstLaneVectorFromOperand() local 2648 auto [U, Lane] = IL; in generateInstLaneVectorFromOperand() 2833 all_of(drop_begin(Item), [Item](InstLane &IL) { in foldShuffleToIdentity() argument 2835 Use *U = IL.first; in foldShuffleToIdentity() 2844 if (all_of(drop_begin(Item), [Item](InstLane &IL) { in foldShuffleToIdentity() argument 2846 auto [U, Lane] = IL; in foldShuffleToIdentity() 2855 auto CheckLaneIsEquivalentToFirst = [Item](InstLane IL) { in foldShuffleToIdentity() argument 2857 if (!IL.first) in foldShuffleToIdentity() 2859 Value *V = IL.first->get(); in foldShuffleToIdentity() 2918 if (!all_of(drop_begin(Item), [Item, Op](InstLane &IL) { in foldShuffleToIdentity() argument [all …]
|