Searched defs:EC (Results 1 - 5 of 5) sorted by relevance

/frameworks/compile/slang/
H A Dllvm-rs-as.cpp88 std::error_code EC; local
90 (new tool_output_file(OutputFilename.c_str(), EC, llvm::sys::fs::F_None));
91 if (EC) {
93 errs() << EC.message() << '\n';
H A Dslang.cpp134 std::error_code &EC,
139 EC = llvm::sys::fs::create_directories(
141 if (!EC) {
142 return llvm::make_unique<llvm::tool_output_file>(OutputFile, EC, Flags);
147 << OutputFile << EC.message();
309 std::error_code EC; local
316 OS = OpenOutputFile(OutputFile, llvm::sys::fs::F_Text, EC, mDiagEngine);
324 OS = OpenOutputFile(OutputFile, llvm::sys::fs::F_None, EC, mDiagEngine);
332 if (EC)
343 std::error_code EC; local
132 OpenOutputFile(const char *OutputFile, llvm::sys::fs::OpenFlags Flags, std::error_code &EC, clang::DiagnosticsEngine *DiagEngine) argument
[all...]
/frameworks/compile/libbcc/tools/bcc_strip_attr/
H A Dbcc_strip_attr.cpp133 std::error_code EC; local
134 tool_output_file Out(OutputFilename.c_str(), EC,
136 if (EC) {
137 errs() << EC.message() << '\n';
/frameworks/rs/rsov/compiler/
H A Drs2spirv.cpp87 if (std::error_code EC = MOrErr.getError()) {
88 errs() << "Fails to load bitcode: " << EC.message();
94 if (std::error_code EC = M->materializeAll()) {
95 errs() << "Fails to materialize: " << EC.message();
99 std::error_code EC; local
113 llvm::raw_fd_ostream OFS_BC(outBCFile, EC, llvm::sys::fs::F_None);
129 llvm::raw_fd_ostream OFS(outFile, EC, llvm::sys::fs::F_None);
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreKeyPairGeneratorSpi.java102 public static class EC extends AndroidKeyStoreKeyPairGeneratorSpi { class in class:AndroidKeyStoreKeyPairGeneratorSpi
103 public EC() { method in class:AndroidKeyStoreKeyPairGeneratorSpi.EC
112 /* EC */
424 "Unsupported EC curve name: " + curveName
430 throw new InvalidAlgorithmParameterException("EC key size must match "
436 "EC may only use ECGenParameterSpec");
732 throw new InvalidAlgorithmParameterException("Unsupported EC key size: "
761 // 4. For EC keys, the there is no point in using a digest whose output size is longer than

Completed in 107 milliseconds