HomeSort by relevance Sort by last modified time
    Searched refs:EC (Results 26 - 50 of 339) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/llvm/lib/IRReader/
IRReader.cpp 39 if (std::error_code EC = ModuleOrErr.getError()) {
41 EC.message());
56 if (std::error_code EC = FileOrErr.getError()) {
58 "Could not open input file: " + EC.message());
74 if (std::error_code EC = ModuleOrErr.getError()) {
76 EC.message());
89 if (std::error_code EC = FileOrErr.getError()) {
91 "Could not open input file: " + EC.message());
  /external/clang/unittests/Basic/
VirtualFileSystemTest.cpp 107 std::error_code &EC) override {
287 std::error_code EC;
289 EC = llvm::sys::fs::createUniqueDirectory(Name, Path);
292 EC = llvm::sys::fs::create_directory(Twine(Path));
294 if (EC)
296 EXPECT_FALSE(EC);
310 std::error_code EC;
311 vfs::directory_iterator I = FS->dir_begin(Twine(TestDirectory), EC);
312 ASSERT_FALSE(EC);
320 I = FS->dir_begin(Twine(TestDirectory), EC);
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/Orc/
IndirectionUtils.h 149 std::error_code EC;
154 sys::Memory::MF_WRITE, EC));
155 assert(!EC && "Failed to allocate resolver block");
160 EC = sys::Memory::protectMappedMemory(ResolverBlock.getMemoryBlock(),
163 assert(!EC && "Failed to mprotect resolver block");
179 std::error_code EC;
184 sys::Memory::MF_WRITE, EC));
185 assert(!EC && "Failed to allocate trampoline block");
200 EC = sys::Memory::protectMappedMemory(TrampolineBlock.getMemoryBlock(),
203 assert(!EC && "Failed to mprotect trampoline block")
    [all...]
  /external/llvm/include/llvm/Support/
ToolOutputFile.h 48 tool_output_file(StringRef Filename, std::error_code &EC,
  /external/llvm/lib/CodeGen/
EdgeBundles.cpp 41 EC.clear();
42 EC.grow(2 * MF->getNumBlockIDs());
49 EC.join(OutE, 2 * (*SI)->getNumber());
51 EC.compress();
  /external/llvm/tools/yaml2obj/
yaml2obj.cpp 87 std::error_code EC;
89 new tool_output_file(OutputFilename, EC, sys::fs::F_None));
90 if (EC) {
91 errs() << EC.message() << '\n';
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/
EC.java 10 import org.bouncycastle.jcajce.provider.asymmetric.ec.KeyFactorySpi;
17 public class EC
19 private static final String PREFIX = "org.bouncycastle.jcajce.provider.asymmetric" + ".ec.";
31 // provider.addAlgorithm("AlgorithmParameters.EC", PREFIX + "AlgorithmParametersSpi");
62 registerOid(provider, X9ObjectIdentifiers.id_ecPublicKey, "EC", new KeyFactorySpi.EC());
65 // if (!Properties.isOverrideSet("org.bouncycastle.ec.disable_mqv"))
67 registerOid(provider, X9ObjectIdentifiers.dhSinglePass_stdDH_sha1kdf_scheme, "EC", new KeyFactorySpi.EC());
71 // registerOid(provider, X9ObjectIdentifiers.dhSinglePass_cofactorDH_sha1kdf_scheme, "EC", new KeyFactorySpi.EC())
    [all...]
  /external/llvm/lib/Support/
LockFileManager.cpp 146 if (std::error_code EC = sys::fs::make_absolute(this->FileName)) {
147 Error = EC;
162 if (std::error_code EC = sys::fs::createUniqueFile(
164 Error = EC;
171 if (auto EC = getHostID(HostID)) {
172 Error = EC;
200 std::error_code EC =
202 if (!EC) {
207 if (EC != errc::file_exists) {
208 Error = EC;
    [all...]
  /external/llvm/lib/Object/
COFFObjectFile.cpp 34 // Returns false if size is greater than the buffer size. And sets ec.
35 static bool checkSize(MemoryBufferRef M, std::error_code &EC, uint64_t Size) {
37 EC = object_error::unexpected_eof;
60 if (std::error_code EC = checkOffset(M, Addr, Size))
61 return EC;
151 std::error_code EC = getSymbolName(Symb, Result);
152 if (EC)
153 return EC;
171 if (std::error_code EC = getSection(SectionNumber, Section))
172 return EC;
    [all...]
ObjectFile.cpp 50 if (std::error_code EC = Name.getError())
51 return EC;
105 if (std::error_code EC = FileOrErr.getError())
106 return EC;
111 if (std::error_code EC = ObjOrErr.getError())
112 return EC;
Binary.cpp 80 if (std::error_code EC = FileOrErr.getError())
81 return EC;
86 if (std::error_code EC = BinOrErr.getError())
87 return EC;
  /external/clang/lib/Sema/
SemaAccess.cpp 100 // We want to add canonical declarations to the EC lists for
407 const EffectiveContext &EC,
409 if (EC.includesClass(Friend))
412 if (EC.isDependent()) {
417 I = EC.Records.begin(), E = EC.Records.end(); I != E; ++I) {
429 const EffectiveContext &EC,
432 return MatchesFriend(S, EC, cast<CXXRecordDecl>(RT->getDecl()));
444 const EffectiveContext &EC,
451 I = EC.Records.begin(), E = EC.Records.end(); I != E; ++I)
    [all...]
  /external/llvm/lib/DebugInfo/Symbolize/
Symbolize.cpp 53 if (auto EC = InfoOrErr.getError())
54 return EC;
73 if (auto EC = InfoOrErr.getError())
74 return EC;
96 if (auto EC = InfoOrErr.getError())
97 return EC;
266 if (auto EC = ObjOrErr.getError()) {
268 std::make_pair(std::make_pair(Path, ArchName), EC));
269 return EC;
295 if (auto EC = BinOrErr.getError())
    [all...]
  /external/llvm/tools/dsymutil/
dsymutil.cpp 103 std::error_code EC;
104 llvm::raw_fd_ostream PL(InfoPlist, EC, llvm::sys::fs::F_Text);
105 if (EC) {
107 << EC.message() << '\n';
155 if (std::error_code EC = create_directories(Bundle.str(), true,
158 << EC.message() << "\n";
184 if (auto EC = getUniqueFile(OutputFile, FD, UniqueFile)) {
186 << OutputFile << "': " << EC.message() << '\n';
299 if (auto EC = DebugMapPtrsOrErr.getError()) {
301 << "\": " << EC.message() << '\n'
    [all...]
  /external/llvm/lib/ProfileData/
CoverageMappingReader.cpp 430 if (auto EC = Section.getName(FoundName))
431 return EC;
443 if (std::error_code EC = BinOrErr.getError())
444 return EC;
451 if (std::error_code EC = ObjectFileOrErr.getError())
452 return EC;
471 if (auto EC = NamesSection.getError())
472 return EC;
475 if (auto EC = CoverageSection.getError())
476 return EC;
    [all...]
  /external/llvm/tools/llvm-profdata/
llvm-profdata.cpp 117 std::error_code EC;
118 raw_fd_ostream Output(OutputFilename.data(), EC, sys::fs::F_None);
119 if (EC)
120 exitWithErrorCode(EC, OutputFilename);
126 if (std::error_code ec = ReaderOrErr.getError())
127 exitWithErrorCode(ec, Input.Filename);
131 if (std::error_code EC = Writer.addRecord(std::move(I), Input.Weight)) {
133 bool firstTime = WriterErrorCodes.insert(EC).second;
134 handleMergeWriterError(EC, Input.Filename, I.Name, firstTime);
156 if (std::error_code EC = WriterOrErr.getError()
    [all...]
  /external/clang/lib/Basic/
VirtualFileSystem.cpp 146 if (std::error_code EC = sys::fs::status(FD, RealStatus))
147 return EC;
184 directory_iterator dir_begin(const Twine &Dir, std::error_code &EC) override;
193 if (std::error_code EC = sys::fs::status(Path, RealStatus))
194 return EC;
201 if (std::error_code EC = sys::fs::openFileForRead(Name, FD))
202 return EC;
208 if (std::error_code EC = llvm::sys::fs::current_path(Dir))
209 return EC;
238 RealFSDirIter(const Twine &_Path, std::error_code &EC)
    [all...]
  /external/llvm/include/llvm/Analysis/
DOTGraphTraitsPass.h 99 std::error_code EC;
103 raw_fd_ostream File(Filename, EC, sys::fs::F_Text);
107 if (!EC)
162 std::error_code EC;
166 raw_fd_ostream File(Filename, EC, sys::fs::F_Text);
169 if (!EC)
  /external/llvm/lib/ExecutionEngine/Orc/
OrcTargetSupport.cpp 130 std::error_code EC;
136 EC));
138 if (EC)
139 return EC;
154 if (auto EC = sys::Memory::protectMappedMemory(StubsBlock,
157 return EC;
  /external/boringssl/src/crypto/ec/
wnaf.c 68 #include <openssl/ec.h>
104 OPENSSL_PUT_ERROR(EC, ERR_R_MALLOC_FAILURE);
115 OPENSSL_PUT_ERROR(EC, ERR_R_INTERNAL_ERROR);
127 OPENSSL_PUT_ERROR(EC, ERR_R_INTERNAL_ERROR);
138 OPENSSL_PUT_ERROR(EC, ERR_R_MALLOC_FAILURE);
171 OPENSSL_PUT_ERROR(EC, ERR_R_INTERNAL_ERROR);
181 OPENSSL_PUT_ERROR(EC, ERR_R_INTERNAL_ERROR);
192 OPENSSL_PUT_ERROR(EC, ERR_R_INTERNAL_ERROR);
198 OPENSSL_PUT_ERROR(EC, ERR_R_INTERNAL_ERROR);
266 OPENSSL_PUT_ERROR(EC, EC_R_UNDEFINED_GENERATOR)
    [all...]
  /external/clang/lib/Frontend/
HeaderIncludeGen.cpp 86 std::error_code EC;
88 OutputPath.str(), EC, llvm::sys::fs::F_Append | llvm::sys::fs::F_Text);
89 if (EC) {
91 << EC.message();
  /external/clang/tools/libclang/
CXLoadedDiagnostic.cpp 255 std::error_code EC = readDiagnostics(file);
256 if (EC) {
257 switch (EC.value()) {
262 reportBad(CXLoadDiag_CannotLoad, EC.message());
265 reportInvalidFile(EC.message());
299 std::error_code EC;
300 if ((EC = readLocation(SDStart, *Start)))
301 return EC;
302 if ((EC = readLocation(SDEnd, *End)))
303 return EC;
    [all...]
  /external/llvm/include/llvm/ProfileData/
SampleProfWriter.h 43 if (std::error_code EC = writeHeader(ProfileMap))
44 return EC;
49 if (std::error_code EC = write(FName, Profile))
50 return EC;
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86ELFRelocationInfo.cpp 33 if (std::error_code EC = SymNameOrErr.getError())
34 report_fatal_error(EC.message());
38 if (std::error_code EC = SymAddr.getError())
39 report_fatal_error(EC.message());
X86MachORelocationInfo.cpp 34 if (std::error_code EC = SymNameOrErr.getError())
35 report_fatal_error(EC.message());
95 if (std::error_code EC = RSymName.getError())
96 report_fatal_error(EC.message());

Completed in 668 milliseconds

12 3 4 5 6 7 8 91011>>