| /src/external/apache2/llvm/dist/llvm/include/llvm-c/ |
| ErrorHandling.h | 21 typedef void (*LLVMFatalErrorHandler)(const char *Reason);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| InlineCost.h | 77 const char *Reason = nullptr; 80 InlineCost(int Cost, int Threshold, const char *Reason = nullptr) 81 : Cost(Cost), Threshold(Threshold), Reason(Reason) { 82 assert((isVariable() || Reason) && 83 "Reason must be provided for Never or Always"); 92 static InlineCost getAlways(const char *Reason) { 93 return InlineCost(AlwaysInlineCost, 0, Reason); 95 static InlineCost getNever(const char *Reason) { 96 return InlineCost(NeverInlineCost, 0, Reason); [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| SmallVector.cpp | 53 std::string Reason = "SmallVector unable to grow. Requested capacity (" + 58 throw std::length_error(Reason); 60 report_fatal_error(Reason); 68 std::string Reason = 72 throw std::length_error(Reason); 74 report_fatal_error(Reason);
|
| ErrorHandling.cpp | 82 void llvm::report_fatal_error(const char *Reason, bool GenCrashDiag) { 83 report_fatal_error(Twine(Reason), GenCrashDiag); 86 void llvm::report_fatal_error(const std::string &Reason, bool GenCrashDiag) { 87 report_fatal_error(Twine(Reason), GenCrashDiag); 90 void llvm::report_fatal_error(StringRef Reason, bool GenCrashDiag) { 91 report_fatal_error(Twine(Reason), GenCrashDiag); 94 void llvm::report_fatal_error(const Twine &Reason, bool GenCrashDiag) { 108 handler(handlerData, Reason.str(), GenCrashDiag); 115 OS << "LLVM ERROR: " << Reason << "\n"; 147 void llvm::report_bad_alloc_error(const char *Reason, bool GenCrashDiag) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
| PPCMachineScheduler.cpp | 38 TryCand.Reason = Stall; 42 TryCand.Reason = NoCand; 56 TryCand.Reason = NodeOrder; 144 TryCand.Reason = NodeOrder; 152 if (TryCand.Reason != NodeOrder && TryCand.Reason != NoCand) 169 TryCand.Reason = Stall; 181 TryCand.Reason = NodeOrder; 211 TryCand.Reason = NodeOrder; 217 if (TryCand.Reason != NodeOrder && TryCand.Reason != NoCand [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/ |
| FunctionImport.h | 54 // Generally we won't end up failing due to this reason, as we expect 76 // most recent reason for failing to import (doesn't necessarily correspond 78 ImportFailureReason Reason; 82 ImportFailureReason Reason, unsigned Attempts) 83 : VI(VI), MaxHotness(MaxHotness), Reason(Reason), Attempts(Attempts) {}
|
| /src/external/apache2/llvm/dist/clang/lib/Frontend/ |
| HeaderIncludeGen.cpp | 45 void FileChanged(SourceLocation Loc, FileChangeReason Reason, 132 FileChangeReason Reason, 142 if (Reason == PPCallbacks::EnterFile) { 144 } else if (Reason == PPCallbacks::ExitFile) { 181 if (ShowHeader && Reason == PPCallbacks::EnterFile &&
|
| /src/crypto/external/apache2/openssl/dist/util/ |
| find-unused-errs | 9 # Find unused error function-names and reason-codes, and edit them 23 echo Reason codes only
|
| /src/crypto/external/bsd/openssl/dist/util/ |
| find-unused-errs | 9 # Find unused error function-names and reason-codes, and edit them 23 echo Reason codes only
|
| /src/crypto/external/bsd/openssl.old/dist/util/ |
| find-unused-errs | 9 # Find unused error function-names and reason-codes, and edit them 23 echo Reason codes only
|
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| uuid.d | 340 UUIDParsingException.Reason.tooLittle, "Insufficient Input"); 344 throw new UUIDParsingException(to!string(uuid), 35, UUIDParsingException.Reason.tooMuch, 351 UUIDParsingException.Reason.invalidChar, "Expected '-'"); 387 UUIDParsingException.Reason.invalidChar, "Couldn't parse ubyte"); 431 assert(except && except.reason == UUIDParsingException.Reason.tooLittle); 436 assert(except && except.reason == UUIDParsingException.Reason.tooMuch); 441 assert(except && except.reason == UUIDParsingException.Reason.invalidChar) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| SIMachineScheduler.h | 39 // The reason for this candidate. 40 SIScheduleCandReason Reason = NoCand; 183 assert(Best.Reason != NoCand && "uninitialized Sched candidate"); 185 Reason = Best.Reason; 375 assert(Best.Reason != NoCand && "uninitialized Sched candidate"); 377 Reason = Best.Reason;
|
| SIMachineScheduler.cpp | 124 static const char *getReasonStr(SIScheduleCandReason Reason) { 125 switch (Reason) { 133 llvm_unreachable("Unknown reason!"); 143 SIScheduleCandReason Reason) { 145 TryCand.Reason = Reason; 149 if (Cand.Reason > Reason) 150 Cand.Reason = Reason; [all...] |
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| MacroPPCallbacks.cpp | 158 void MacroPPCallbacks::FileChanged(SourceLocation Loc, FileChangeReason Reason, 162 if (Reason == EnterFile) 164 else if (Reason == ExitFile)
|
| MacroPPCallbacks.h | 96 /// \param PrevFID the file that was exited if \p Reason is ExitFile. 97 void FileChanged(SourceLocation Loc, FileChangeReason Reason,
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/MCA/ |
| HWEventListener.h | 144 HWPressureEvent(GenericReason reason, ArrayRef<InstRef> Insts, 146 : Reason(reason), AffectedInstructions(Insts), ResourceMask(Mask) {} 148 // Reason for this increase in backend pressure. 149 GenericReason Reason;
|
| /src/crypto/external/apache2/openssl/dist/test/recipes/30-test_evp_data/ |
| evppkey_ecc.txt | 82 Reason=point at infinity 90 Reason=point at infinity 160 Reason=point at infinity 168 Reason=point at infinity 238 Reason=point at infinity 246 Reason=point at infinity 316 Reason=point at infinity 324 Reason=point at infinity 396 Reason=point at infinity 404 Reason=point at infinit [all...] |
| evpkdf_tls12_prf.txt | 61 Reason = invalid key length 98 Reason = digest not allowed 125 Reason = invalid key length
|
| evpkdf_x963.txt | 140 Reason = xof digests not allowed 152 Reason = digest not allowed 174 Reason = invalid key length
|
| evpmac_common.txt | 316 Reason = invalid mode 325 Reason = invalid key length 400 Reason = invalid mode 563 Reason = invalid custom length 573 Reason = invalid output length 597 Reason = invalid output length 609 Reason = invalid output length 639 Reason = invalid key length
|
| /src/crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/ |
| evppkey_ecc.txt | 82 Reason=point at infinity 90 Reason=point at infinity 160 Reason=point at infinity 168 Reason=point at infinity 238 Reason=point at infinity 246 Reason=point at infinity 316 Reason=point at infinity 324 Reason=point at infinity 396 Reason=point at infinity 404 Reason=point at infinit [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/ |
| CalledOnceCheck.h | 36 /// the reason. 85 /// \param Reason -- a reason describing the path without a call. 92 NeverCalledReason Reason,
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| ErrorHandling.h | 26 const std::string& reason, 71 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason, 73 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const std::string &reason, 75 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(StringRef reason, 77 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const Twine &reason, 116 LLVM_ATTRIBUTE_NORETURN void report_bad_alloc_error(const char *Reason,
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| MachineScheduler.h | 818 static const char *getReasonStr(GenericSchedulerBase::CandReason Reason); 866 // The reason for this candidate. 867 CandReason Reason; 884 Reason = NoCand; 894 assert(Best.Reason != NoCand && "uninitialized Sched candidate"); 896 Reason = Best.Reason; 931 GenericSchedulerBase::CandReason Reason); 935 GenericSchedulerBase::CandReason Reason); 943 GenericSchedulerBase::CandReason Reason, [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
| FunctionImport.cpp | 178 FunctionImporter::ImportFailureReason &Reason, 180 Reason = FunctionImporter::ImportFailureReason::None; 186 Reason = FunctionImporter::ImportFailureReason::NotLive; 204 Reason = FunctionImporter::ImportFailureReason::GlobalVar; 208 Reason = FunctionImporter::ImportFailureReason::InterposableLinkage; 228 Reason = 235 Reason = FunctionImporter::ImportFailureReason::TooLarge; 242 Reason = FunctionImporter::ImportFailureReason::NotEligible; 248 Reason = FunctionImporter::ImportFailureReason::NoInline; 357 getFailureName(FunctionImporter::ImportFailureReason Reason) { [all...] |