/external/llvm/lib/Support/ |
D | IntEqClasses.cpp | 27 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 …]
|
D | FileOutputBuffer.cpp | 40 std::error_code EC = sys::fs::status(FilePath, Stat); in create() local 52 if (EC) in create() 53 return EC; in create() 59 EC = sys::fs::remove(FilePath); in create() 60 if (EC) in create() 61 return EC; in create() 71 EC = sys::fs::createUniqueFile(Twine(FilePath) + ".tmp%%%%%%%", FD, in create() 73 if (EC) in create() 74 return EC; in create() 77 FD, true, mapped_file_region::readwrite, Size, 0, EC)); in create() [all …]
|
D | LockFileManager.cpp | 77 if (std::error_code EC = sys::fs::make_absolute(this->FileName)) { in LockFileManager() local 78 Error = EC; in LockFileManager() 93 if (std::error_code EC = sys::fs::createUniqueFile( in LockFileManager() local 95 Error = EC; in LockFileManager() 126 std::error_code EC = in LockFileManager() local 128 if (!EC) in LockFileManager() 131 if (EC != errc::file_exists) { in LockFileManager() 132 Error = EC; in LockFileManager() 152 if ((EC = sys::fs::remove(LockFileName.str()))) { in LockFileManager() 153 Error = EC; in LockFileManager()
|
D | MemoryBuffer.cpp | 188 uint64_t Offset, std::error_code EC) in MemoryBufferMMapFile() argument 190 getLegalMapSize(Len, Offset), getLegalMapOffset(Offset), EC) { in MemoryBufferMMapFile() 191 if (!EC) { in MemoryBufferMMapFile() 252 std::error_code EC = sys::fs::openFileForRead(Filename, FD); in getFileAux() local 253 if (EC) in getFileAux() 254 return EC; in getFileAux() 323 std::error_code EC = sys::fs::status(FD, Status); in getOpenFileImpl() local 324 if (EC) in getOpenFileImpl() 325 return EC; in getOpenFileImpl() 342 std::error_code EC; in getOpenFileImpl() local [all …]
|
D | Path.cpp | 181 if (std::error_code EC = TempDir(TDir)) in createUniqueEntity() local 182 return EC; in createUniqueEntity() 205 if (std::error_code EC = in createUniqueEntity() local 208 if (EC == errc::file_exists) in createUniqueEntity() 210 return EC; in createUniqueEntity() 218 std::error_code EC = sys::fs::exists(ResultPath.begin(), Exists); in createUniqueEntity() local 219 if (EC) in createUniqueEntity() 220 return EC; in createUniqueEntity() 227 if (std::error_code EC = in createUniqueEntity() local 229 if (EC == errc::file_exists) in createUniqueEntity() [all …]
|
/external/llvm/unittests/Support/ |
D | MemoryTest.cpp | 60 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 …]
|
D | LockFileManagerTest.cpp | 22 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/ |
D | elf2yaml.cpp | 77 if (std::error_code EC = S.getError()) in dump() local 78 return EC; in dump() 84 if (std::error_code EC = S.getError()) in dump() local 85 return EC; in dump() 92 if (std::error_code EC = S.getError()) in dump() local 93 return EC; in dump() 108 if (std::error_code EC = ELFDumper<ELFT>::dumpSymbol(SI, S)) in dump() local 109 return EC; in dump() 139 if (std::error_code EC = NameOrErr.getError()) in dumpSymbol() local 140 return EC; in dumpSymbol() [all …]
|
D | obj2yaml.cpp | 36 if (std::error_code EC = BinaryOrErr.getError()) in dumpInput() local 37 return EC; in dumpInput() 56 if (std::error_code EC = dumpInput(InputFilename)) { in main() local 57 errs() << "Error: '" << EC.message() << "'\n"; in main()
|
/external/clang/test/CXX/expr/expr.post/expr.static.cast/ |
D | p9-0x.cpp | 4 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/ |
D | ELFObjectFile.cpp | 27 std::error_code EC; in createELFObjectFile() local 33 std::move(Obj), EC)); in createELFObjectFile() 38 std::move(Obj), EC)); in createELFObjectFile() 45 EC)); in createELFObjectFile() 50 EC)); in createELFObjectFile() 57 EC)); in createELFObjectFile() 62 EC)); in createELFObjectFile() 69 std::move(Obj), EC)); in createELFObjectFile() 74 std::move(Obj), EC)); in createELFObjectFile() 81 if (EC) in createELFObjectFile() [all …]
|
D | COFFObjectFile.cpp | 34 static bool checkSize(const MemoryBuffer &M, std::error_code &EC, in checkSize() argument 37 EC = object_error::unexpected_eof; in checkSize() 143 if (std::error_code EC = getSection(Symb->SectionNumber, Section)) in getSymbolAddress() local 144 return EC; in getSymbolAddress() 168 if (std::error_code EC = getSection(Symb->SectionNumber, Section)) in getSymbolType() local 169 return EC; in getSymbolType() 213 if (std::error_code EC = getSection(Symb->SectionNumber, Section)) in getSymbolSize() local 214 return EC; in getSymbolSize() 233 if (std::error_code EC = getSection(Symb->SectionNumber, Sec)) in getSymbolSection() local 234 return EC; in getSymbolSection() [all …]
|
/external/valgrind/main/VEX/orig_x86/ |
D | fpu_mmx_sse.orig | 6 . 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/lib/Basic/ |
D | VirtualFileSystem.cpp | 74 if (std::error_code EC = openFileForRead(Name, F)) in getBufferForFile() local 75 return EC; in getBufferForFile() 77 std::error_code EC = in getBufferForFile() local 79 return EC; in getBufferForFile() 114 if (std::error_code EC = sys::fs::status(FD, RealStatus)) in status() local 115 return EC; in status() 132 if (std::error_code EC = BufferOrErr.getError()) in getBuffer() local 133 return EC; in getBuffer() 166 directory_iterator dir_begin(const Twine &Dir, std::error_code &EC) override; 172 if (std::error_code EC = sys::fs::status(Path, RealStatus)) in status() local [all …]
|
/external/clang/lib/Sema/ |
D | SemaAccess.cpp | 402 const EffectiveContext &EC, in MatchesFriend() argument 404 if (EC.includesClass(Friend)) in MatchesFriend() 407 if (EC.isDependent()) { in MatchesFriend() 412 I = EC.Records.begin(), E = EC.Records.end(); I != E; ++I) { in MatchesFriend() 424 const EffectiveContext &EC, in MatchesFriend() argument 427 return MatchesFriend(S, EC, cast<CXXRecordDecl>(RT->getDecl())); in MatchesFriend() 439 const EffectiveContext &EC, in MatchesFriend() argument 446 I = EC.Records.begin(), E = EC.Records.end(); I != E; ++I) { in MatchesFriend() 468 if (!EC.isDependent()) in MatchesFriend() 492 const EffectiveContext &EC, in MatchesFriend() argument [all …]
|
/external/clang/unittests/Basic/ |
D | VirtualFileSystemTest.cpp | 91 std::error_code &EC) override { in dir_begin() argument 271 std::error_code EC; in ScopedDir() local 273 EC = llvm::sys::fs::createUniqueDirectory(Name, Path); in ScopedDir() 276 EC = llvm::sys::fs::create_directory(Twine(Path)); in ScopedDir() 278 if (EC) in ScopedDir() 280 EXPECT_FALSE(EC); in ScopedDir() 294 std::error_code EC; in TEST() local 295 vfs::directory_iterator I = FS->dir_begin(Twine(TestDirectory), EC); in TEST() 296 ASSERT_FALSE(EC); in TEST() 304 I = FS->dir_begin(Twine(TestDirectory), EC); in TEST() [all …]
|
/external/llvm/lib/IRReader/ |
D | IRReader.cpp | 38 if (std::error_code EC = ModuleOrErr.getError()) { in getLazyIRModule() local 40 EC.message()); in getLazyIRModule() 56 if (std::error_code EC = FileOrErr.getError()) { in getLazyIRFileModule() local 58 "Could not open input file: " + EC.message()); in getLazyIRFileModule() 73 if (std::error_code EC = ModuleOrErr.getError()) in ParseIR() local 75 EC.message()); in ParseIR() 91 if (std::error_code EC = FileOrErr.getError()) { in ParseIRFile() local 93 "Could not open input file: " + EC.message()); in ParseIRFile()
|
/external/chromium_org/net/data/ssl/certificates/ |
D | android-test-key-ecdsa.pem | 1 -----BEGIN EC PARAMETERS----- 3 -----END EC PARAMETERS----- 4 -----BEGIN EC PRIVATE KEY----- 8 -----END EC PRIVATE KEY-----
|
/external/llvm/tools/llvm-readobj/ |
D | llvm-readobj.cpp | 149 bool error(std::error_code EC) { in error() argument 150 if (!EC) in error() 154 outs() << "\nError reading file: " << EC.message() << ".\n"; in error() 168 static void reportError(StringRef Input, std::error_code EC) { in reportError() argument 172 errs() << Input << ": " << EC.message() << "\n"; in reportError() 218 if (std::error_code EC = createDumper(Obj, Writer, Dumper)) { in dumpObject() local 219 reportError(Obj->getFileName(), EC); in dumpObject() 266 if (std::error_code EC = ChildOrErr.getError()) { in dumpArchive() local 268 if (EC != object_error::invalid_file_type) in dumpArchive() 269 reportError(Arc->getFileName(), EC.message()); in dumpArchive() [all …]
|
/external/llvm/tools/llvm-objdump/ |
D | COFFDump.cpp | 164 if (std::error_code EC = Sym.getAddress(ResolvedAddr)) in resolveSectionAndAddress() local 165 return EC; in resolveSectionAndAddress() 167 if (std::error_code EC = Sym.getSection(iter)) in resolveSectionAndAddress() local 168 return EC; in resolveSectionAndAddress() 181 if (std::error_code EC = I->getOffset(Ofs)) in resolveSymbol() local 182 return EC; in resolveSymbol() 200 if (std::error_code EC = resolveSymbol(Rels, Offset, Sym)) in getSectionContents() local 201 return EC; in getSectionContents() 203 if (std::error_code EC = resolveSectionAndAddress(Obj, Sym, Section, Addr)) in getSectionContents() local 204 return EC; in getSectionContents() [all …]
|
/external/conscrypt/src/main/java/org/conscrypt/ |
D | OpenSSLSignature.java | 33 RSA, DSA, EC, enumConstant 123 case EC: in checkEngineType() 160 case EC: in enableDSASignatureNonceHardeningIfApplicable() 272 super(EVP_MD, EngineType.EC); in SHA1ECDSA() 278 super(EVP_MD, EngineType.EC); in SHA224ECDSA() 284 super(EVP_MD, EngineType.EC); in SHA256ECDSA() 290 super(EVP_MD, EngineType.EC); in SHA384ECDSA() 296 super(EVP_MD, EngineType.EC); in SHA512ECDSA()
|
/external/llvm/lib/Support/Windows/ |
D | Memory.inc | 73 std::error_code &EC) { 74 EC = std::error_code(); 101 return allocateMappedMemory(NumBytes, NULL, Flags, EC); 103 EC = mapWindowsError(::GetLastError()); 160 std::error_code EC; 162 MF_READ|MF_WRITE|MF_EXEC, EC); 163 if (EC != std::error_code() && ErrMsg) { 164 MakeErrMsg(ErrMsg, EC.message()); 170 std::error_code EC = releaseMappedMemory(M); 171 if (EC == std::error_code()) [all …]
|
/external/llvm/include/llvm/ADT/ |
D | IntEqClasses.h | 34 SmallVector<unsigned, 8> EC; variable 52 EC.clear(); in clear() 78 return EC[a];
|
/external/llvm/include/llvm/CodeGen/ |
D | EdgeBundles.h | 32 IntEqClasses EC; variable 43 unsigned getBundle(unsigned N, bool Out) const { return EC[2 * N + Out]; } in getBundle() 46 unsigned getNumBundles() const { return EC.getNumClasses(); } in getNumBundles()
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitReader.cpp | 35 if (std::error_code EC = ModuleOrErr.getError()) { in LLVMParseBitcodeInContext() local 37 *OutMessage = strdup(EC.message().c_str()); in LLVMParseBitcodeInContext() 57 if (std::error_code EC = ModuleOrErr.getError()) { in LLVMGetBitcodeModuleInContext() local 60 *OutMessage = strdup(EC.message().c_str()); in LLVMGetBitcodeModuleInContext()
|