Home
last modified time | relevance | path

Searched refs:EC (Results 1 – 25 of 798) sorted by relevance

12345678910>>...32

/external/boringssl/src/crypto/err/
Dec.errordata1 EC,126,BIGNUM_OUT_OF_RANGE
2 EC,100,BUFFER_TOO_SMALL
3 EC,101,COORDINATES_OUT_OF_RANGE
4 EC,102,D2I_ECPKPARAMETERS_FAILURE
5 EC,103,EC_GROUP_NEW_BY_NAME_FAILURE
6 EC,104,GROUP2PKPARAMETERS_FAILURE
7 EC,105,I2D_ECPKPARAMETERS_FAILURE
8 EC,106,INCOMPATIBLE_OBJECTS
9 EC,107,INVALID_COMPRESSED_POINT
10 EC,108,INVALID_COMPRESSION_BIT
[all …]
/external/llvm/lib/Support/
DIntEqClasses.cpp27 EC.reserve(N); in grow()
28 while (EC.size() < N) in grow()
29 EC.push_back(EC.size()); in grow()
34 unsigned eca = EC[a]; in join()
35 unsigned ecb = EC[b]; in join()
41 EC[b] = eca, b = ecb, ecb = EC[b]; in join()
43 EC[a] = ecb, a = eca, eca = EC[a]; in join()
48 while (a != EC[a]) in findLeader()
49 a = EC[a]; in findLeader()
56 for (unsigned i = 0, e = EC.size(); i != e; ++i) in compress()
[all …]
DFileOutputBuffer.cpp42 std::error_code EC = sys::fs::status(FilePath, Stat); in create() local
54 if (EC) in create()
55 return EC; in create()
61 EC = sys::fs::remove(FilePath); in create()
62 if (EC) in create()
63 return EC; in create()
73 EC = sys::fs::createUniqueFile(Twine(FilePath) + ".tmp%%%%%%%", FD, in create()
75 if (EC) in create()
76 return EC; in create()
86 EC = sys::fs::resize_file(FD, Size); in create()
[all …]
DLockFileManager.cpp146 if (std::error_code EC = sys::fs::make_absolute(this->FileName)) { in LockFileManager() local
147 Error = EC; in LockFileManager()
162 if (std::error_code EC = sys::fs::createUniqueFile( in LockFileManager() local
164 Error = EC; in LockFileManager()
171 if (auto EC = getHostID(HostID)) { in LockFileManager() local
172 Error = EC; in LockFileManager()
200 std::error_code EC = in LockFileManager() local
202 if (!EC) { in LockFileManager()
207 if (EC != errc::file_exists) { in LockFileManager()
208 Error = EC; in LockFileManager()
[all …]
/external/llvm/lib/ProfileData/
DSampleProfReader.cpp245 std::error_code EC; in readNumber() local
249 EC = sampleprof_error::malformed; in readNumber()
251 EC = sampleprof_error::truncated; in readNumber()
253 EC = sampleprof_error::success; in readNumber()
255 if (EC) { in readNumber()
256 reportError(0, EC.message()); in readNumber()
257 return EC; in readNumber()
265 std::error_code EC; in readString() local
268 EC = sampleprof_error::truncated; in readString()
269 reportError(0, EC.message()); in readString()
[all …]
DSampleProfWriter.cpp77 if (std::error_code EC = write(Loc.CalleeName, CalleeSamples)) in write() local
78 return EC; in write()
143 if (std::error_code EC = writeNameIdx(FName)) in writeBody() local
144 return EC; in writeBody()
160 if (std::error_code EC = writeNameIdx(Callee)) in writeBody() local
161 return EC; in writeBody()
173 if (std::error_code EC = writeBody(Loc.CalleeName, CalleeSamples)) in writeBody() local
174 return EC; in writeBody()
200 std::error_code EC; in create() local
203 OS.reset(new raw_fd_ostream(Filename, EC, sys::fs::F_None)); in create()
[all …]
/external/llvm/unittests/Support/
DMemoryTest.cpp60 std::error_code EC; in TEST_P() local
61 MemoryBlock M1 = Memory::allocateMappedMemory(sizeof(int), nullptr, Flags,EC); in TEST_P()
62 EXPECT_EQ(std::error_code(), EC); in TEST_P()
71 std::error_code EC; in TEST_P() local
72 MemoryBlock M1 = Memory::allocateMappedMemory(16, nullptr, Flags, EC); in TEST_P()
73 EXPECT_EQ(std::error_code(), EC); in TEST_P()
74 MemoryBlock M2 = Memory::allocateMappedMemory(64, nullptr, Flags, EC); in TEST_P()
75 EXPECT_EQ(std::error_code(), EC); in TEST_P()
76 MemoryBlock M3 = Memory::allocateMappedMemory(32, nullptr, Flags, EC); in TEST_P()
77 EXPECT_EQ(std::error_code(), EC); in TEST_P()
[all …]
DLockFileManagerTest.cpp22 std::error_code EC; in TEST() local
23 EC = sys::fs::createUniqueDirectory("LockFileManagerTestDir", TmpDir); in TEST()
24 ASSERT_FALSE(EC); in TEST()
43 EC = sys::fs::remove(StringRef(TmpDir)); in TEST()
44 ASSERT_FALSE(EC); in TEST()
49 std::error_code EC; in TEST() local
50 EC = sys::fs::createUniqueDirectory("LockFileManagerTestDir", TmpDir); in TEST()
51 ASSERT_FALSE(EC); in TEST()
63 EC = sys::fs::openFileForWrite(StringRef(TmpFileLock), FD, sys::fs::F_None); in TEST()
64 ASSERT_FALSE(EC); in TEST()
[all …]
/external/llvm/tools/obj2yaml/
Delf2yaml.cpp87 if (std::error_code EC = TableOrErr.getError()) in dump() local
88 return EC; in dump()
94 if (std::error_code EC = S.getError()) in dump() local
95 return EC; in dump()
101 if (std::error_code EC = S.getError()) in dump() local
102 return EC; in dump()
108 if (std::error_code EC = G.getError()) in dump() local
109 return EC; in dump()
115 if (std::error_code EC = G.getError()) in dump() local
116 return EC; in dump()
[all …]
/external/clang/lib/Frontend/
DSerializedDiagnosticReader.cpp46 std::error_code EC; in readDiagnostics() local
53 if ((EC = readMetaBlock(Stream))) in readDiagnostics()
54 return EC; in readDiagnostics()
57 if ((EC = readDiagnosticBlock(Stream))) in readDiagnostics()
58 return EC; in readDiagnostics()
153 std::error_code EC; in readDiagnosticBlock() local
154 if ((EC = visitStartOfDiagnostic())) in readDiagnosticBlock()
155 return EC; in readDiagnosticBlock()
168 if ((EC = readDiagnosticBlock(Stream))) in readDiagnosticBlock()
169 return EC; in readDiagnosticBlock()
[all …]
/external/boringssl/src/crypto/ec/
Dec_asn1.c171 OPENSSL_PUT_ERROR(EC, ERR_R_MALLOC_FAILURE); in ec_asn1_group2pkparameters()
199 OPENSSL_PUT_ERROR(EC, EC_R_MISSING_PARAMETERS); in ec_asn1_pkparameters2group()
225 OPENSSL_PUT_ERROR(EC, EC_R_NON_NAMED_CURVE); in ec_asn1_pkparameters2group()
231 OPENSSL_PUT_ERROR(EC, EC_R_EC_GROUP_NEW_BY_NAME_FAILURE); in ec_asn1_pkparameters2group()
246 OPENSSL_PUT_ERROR(EC, EC_R_D2I_ECPKPARAMETERS_FAILURE); in d2i_ECPKParameters()
253 OPENSSL_PUT_ERROR(EC, EC_R_PKPARAMETERS2GROUP_FAILURE); in d2i_ECPKParameters()
272 OPENSSL_PUT_ERROR(EC, EC_R_GROUP2PKPARAMETERS_FAILURE); in i2d_ECPKParameters()
277 OPENSSL_PUT_ERROR(EC, EC_R_I2D_ECPKPARAMETERS_FAILURE); in i2d_ECPKParameters()
293 OPENSSL_PUT_ERROR(EC, ERR_R_EC_LIB); in d2i_ECPrivateKey()
300 OPENSSL_PUT_ERROR(EC, ERR_R_MALLOC_FAILURE); in d2i_ECPrivateKey()
[all …]
Dec.c325 OPENSSL_PUT_ERROR(EC, EC_R_SLOT_FULL); in ec_group_new()
330 OPENSSL_PUT_ERROR(EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED); in ec_group_new()
336 OPENSSL_PUT_ERROR(EC, ERR_R_MALLOC_FAILURE); in ec_group_new()
364 OPENSSL_PUT_ERROR(EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED); in EC_GROUP_new_curve_GFp()
384 OPENSSL_PUT_ERROR(EC, EC_R_WRONG_CURVE_PARAMETERS); in EC_GROUP_set_generator()
428 OPENSSL_PUT_ERROR(EC, ERR_R_MALLOC_FAILURE); in ec_group_new_from_data()
439 OPENSSL_PUT_ERROR(EC, ERR_R_BN_LIB); in ec_group_new_from_data()
447 OPENSSL_PUT_ERROR(EC, ERR_R_EC_LIB); in ec_group_new_from_data()
452 OPENSSL_PUT_ERROR(EC, ERR_R_EC_LIB); in ec_group_new_from_data()
458 OPENSSL_PUT_ERROR(EC, ERR_R_EC_LIB); in ec_group_new_from_data()
[all …]
Doct.c88 OPENSSL_PUT_ERROR(EC, EC_R_INVALID_FORM); in ec_GFp_simple_point2oct()
93 OPENSSL_PUT_ERROR(EC, EC_R_POINT_AT_INFINITY); in ec_GFp_simple_point2oct()
105 OPENSSL_PUT_ERROR(EC, EC_R_BUFFER_TOO_SMALL); in ec_GFp_simple_point2oct()
137 OPENSSL_PUT_ERROR(EC, ERR_R_INTERNAL_ERROR); in ec_GFp_simple_point2oct()
144 OPENSSL_PUT_ERROR(EC, ERR_R_INTERNAL_ERROR); in ec_GFp_simple_point2oct()
151 OPENSSL_PUT_ERROR(EC, ERR_R_INTERNAL_ERROR); in ec_GFp_simple_point2oct()
182 OPENSSL_PUT_ERROR(EC, EC_R_BUFFER_TOO_SMALL); in ec_GFp_simple_oct2point()
191 OPENSSL_PUT_ERROR(EC, EC_R_INVALID_ENCODING); in ec_GFp_simple_oct2point()
200 OPENSSL_PUT_ERROR(EC, EC_R_INVALID_ENCODING); in ec_GFp_simple_oct2point()
222 OPENSSL_PUT_ERROR(EC, EC_R_INVALID_ENCODING); in ec_GFp_simple_oct2point()
[all …]
/external/valgrind/VEX/orig_x86/
Dfpu_mmx_sse.orig6 . 55 89 E5 57 56 53 83 EC 54 E8 9D FC 00 00
12 …D0 8B 93 00 00 00 00 8D 83 50 FF FF FF 29 D0 89 83 E4 F9 FF FF 01 D0 89 83 EC F9 FF FF 8D 83 94 F9…
102 . 55 31 D2 89 E5 57 31 FF 31 C9 56 31 F6 53 81 EC 04 02 00 00 8B 45 08 89 95 1C FE FF FF 31 D2 89 9…
264 . 55 89 E5 83 EC 10 89 5D F4 89 7D FC 8B 7D 08 E8 37 20 00 00
276 . 8B 5D F4 89 D0 8B 75 F8 8B 7D FC 89 EC 5D C3
288 . 55 89 E5 57 56 53 81 EC C8 01 00 00 E8 8A F5 00 00
303 . 80 78 01 44 75 EC
345 . 8B 85 FC FE FF FF 83 C0 0D 89 83 AC 00 00 00 E9 93 EC FF FF
381 . 55 89 E5 57 56 53 83 EC 2C 8B 7D 08 E8 4A 8F 00 00
384 . 81 C3 8B BC 00 00 89 55 EC 89 4D E8 89 45 F0 89 14 24 E8 D8 88 00 00
[all …]
/external/clang/test/CXX/expr/expr.post/expr.static.cast/
Dp9-0x.cpp4 enum class EC { ec1 }; enum
6 void test0(EC ec) { in test0()
8 (void)static_cast<bool>(EC::ec1); in test0()
10 (void)static_cast<char>(EC::ec1); in test0()
12 (void)static_cast<int>(EC::ec1); in test0()
14 (void)static_cast<unsigned long>(EC::ec1); in test0()
16 (void)static_cast<float>(EC::ec1); in test0()
18 (void)static_cast<double>(EC::ec1); in test0()
/external/llvm/lib/Object/
DCOFFObjectFile.cpp35 static bool checkSize(MemoryBufferRef M, std::error_code &EC, uint64_t Size) { in checkSize() argument
37 EC = object_error::unexpected_eof; in checkSize()
60 if (std::error_code EC = checkOffset(M, Addr, Size)) in getObject() local
61 return EC; in getObject()
151 std::error_code EC = getSymbolName(Symb, Result); in getSymbolName() local
152 if (EC) in getSymbolName()
153 return EC; in getSymbolName()
171 if (std::error_code EC = getSection(SectionNumber, Section)) in getSymbolAddress() local
172 return EC; in getSymbolAddress()
244 if (std::error_code EC = getSection(Symb.getSectionNumber(), Sec)) in getSymbolSection() local
[all …]
DArchive.cpp90 std::error_code *EC) in Child() argument
99 if ((*EC = MemberSize.getError())) in Child()
120 if (std::error_code EC = Size.getError()) in getSize() local
121 return EC; in getSize()
129 if (std::error_code EC = Size.getError()) in getRawSize() local
130 return EC; in getRawSize()
142 if (std::error_code EC = Size.getError()) in getBuffer() local
143 return EC; in getBuffer()
147 if (std::error_code EC = Name.getError()) in getBuffer() local
148 return EC; in getBuffer()
[all …]
DFunctionIndexObjectFile.cpp39 if (std::error_code EC = Sec.getName(SecName)) in findBitcodeInObject() local
40 return EC; in findBitcodeInObject()
43 if (std::error_code EC = Sec.getContents(SecContents)) in findBitcodeInObject() local
44 return EC; in findBitcodeInObject()
99 if (std::error_code EC = IOrErr.getError()) in create() local
100 return EC; in create()
131 std::error_code EC = FileOrErr.getError(); in getFunctionIndexForFile() local
132 if (EC) in getFunctionIndexForFile()
133 return EC; in getFunctionIndexForFile()
137 EC = ObjOrErr.getError(); in getFunctionIndexForFile()
[all …]
DELFObjectFile.cpp33 std::error_code EC; in createELFObjectFile() local
37 R.reset(new ELFObjectFile<ELFType<support::little, false>>(Obj, EC)); in createELFObjectFile()
39 R.reset(new ELFObjectFile<ELFType<support::big, false>>(Obj, EC)); in createELFObjectFile()
44 R.reset(new ELFObjectFile<ELFType<support::little, true>>(Obj, EC)); in createELFObjectFile()
46 R.reset(new ELFObjectFile<ELFType<support::big, true>>(Obj, EC)); in createELFObjectFile()
53 if (EC) in createELFObjectFile()
54 return EC; in createELFObjectFile()
/external/llvm/lib/TableGen/
DMain.cpp57 std::error_code EC; in createDependencyFile() local
58 tool_output_file DepOut(DependFilename, EC, sys::fs::F_Text); in createDependencyFile()
59 if (EC) { in createDependencyFile()
61 << EC.message() << "\n"; in createDependencyFile()
79 if (std::error_code EC = FileOrErr.getError()) { in TableGenMain() local
81 << "': " << EC.message() << "\n"; in TableGenMain()
97 std::error_code EC; in TableGenMain() local
98 tool_output_file Out(OutputFilename, EC, sys::fs::F_Text); in TableGenMain()
99 if (EC) { in TableGenMain()
101 << EC.message() << "\n"; in TableGenMain()
/external/clang/lib/Sema/
DSemaAccess.cpp407 const EffectiveContext &EC, in MatchesFriend() argument
409 if (EC.includesClass(Friend)) in MatchesFriend()
412 if (EC.isDependent()) { in MatchesFriend()
417 I = EC.Records.begin(), E = EC.Records.end(); I != E; ++I) { in MatchesFriend()
429 const EffectiveContext &EC, in MatchesFriend() argument
432 return MatchesFriend(S, EC, cast<CXXRecordDecl>(RT->getDecl())); in MatchesFriend()
444 const EffectiveContext &EC, in MatchesFriend() argument
451 I = EC.Records.begin(), E = EC.Records.end(); I != E; ++I) { in MatchesFriend()
473 if (!EC.isDependent()) in MatchesFriend()
497 const EffectiveContext &EC, in MatchesFriend() argument
[all …]
/external/clang/unittests/Basic/
DVirtualFileSystemTest.cpp107 std::error_code &EC) override { in dir_begin() argument
287 std::error_code EC; in ScopedDir() local
289 EC = llvm::sys::fs::createUniqueDirectory(Name, Path); in ScopedDir()
292 EC = llvm::sys::fs::create_directory(Twine(Path)); in ScopedDir()
294 if (EC) in ScopedDir()
296 EXPECT_FALSE(EC); in ScopedDir()
310 std::error_code EC; in TEST() local
311 vfs::directory_iterator I = FS->dir_begin(Twine(TestDirectory), EC); in TEST()
312 ASSERT_FALSE(EC); in TEST()
320 I = FS->dir_begin(Twine(TestDirectory), EC); in TEST()
[all …]
/external/llvm/tools/llvm-profdata/
Dllvm-profdata.cpp117 std::error_code EC; in mergeInstrProfile() local
118 raw_fd_ostream Output(OutputFilename.data(), EC, sys::fs::F_None); in mergeInstrProfile()
119 if (EC) in mergeInstrProfile()
120 exitWithErrorCode(EC, OutputFilename); in mergeInstrProfile()
131 if (std::error_code EC = Writer.addRecord(std::move(I), Input.Weight)) { in mergeInstrProfile() local
133 bool firstTime = WriterErrorCodes.insert(EC).second; in mergeInstrProfile()
134 handleMergeWriterError(EC, Input.Filename, I.Name, firstTime); in mergeInstrProfile()
156 if (std::error_code EC = WriterOrErr.getError()) in mergeSampleProfile() local
157 exitWithErrorCode(EC, OutputFilename); in mergeSampleProfile()
165 if (std::error_code EC = ReaderOrErr.getError()) in mergeSampleProfile() local
[all …]
/external/llvm/lib/DebugInfo/Symbolize/
DSymbolize.cpp53 if (auto EC = InfoOrErr.getError()) in symbolizeCode() local
54 return EC; in symbolizeCode()
73 if (auto EC = InfoOrErr.getError()) in symbolizeInlinedCode() local
74 return EC; in symbolizeInlinedCode()
96 if (auto EC = InfoOrErr.getError()) in symbolizeData() local
97 return EC; in symbolizeData()
266 if (auto EC = ObjOrErr.getError()) { in getOrCreateObjectPair() local
268 std::make_pair(std::make_pair(Path, ArchName), EC)); in getOrCreateObjectPair()
269 return EC; in getOrCreateObjectPair()
295 if (auto EC = BinOrErr.getError()) { in getOrCreateObject() local
[all …]
/external/clang/lib/Basic/
DVirtualFileSystem.cpp146 if (std::error_code EC = sys::fs::status(FD, RealStatus)) in status() local
147 return EC; in status()
184 directory_iterator dir_begin(const Twine &Dir, std::error_code &EC) override;
193 if (std::error_code EC = sys::fs::status(Path, RealStatus)) in status() local
194 return EC; in status()
201 if (std::error_code EC = sys::fs::openFileForRead(Name, FD)) in openFileForRead() local
202 return EC; in openFileForRead()
208 if (std::error_code EC = llvm::sys::fs::current_path(Dir)) in getCurrentWorkingDirectory() local
209 return EC; in getCurrentWorkingDirectory()
238 RealFSDirIter(const Twine &_Path, std::error_code &EC) in RealFSDirIter() argument
[all …]

12345678910>>...32