/external/clang/lib/StaticAnalyzer/Checkers/ |
D | UnreachableCodeChecker.cpp | 40 static inline const Stmt *getUnreachableStmt(const CFGBlock *CB); 41 static void FindUnreachableEntryPoints(const CFGBlock *CB, 44 static bool isInvalidPath(const CFGBlock *CB, const ParentMap &PM); 45 static inline bool isEmptyCFGBlock(const CFGBlock *CB); 79 const CFGBlock *CB = BE->getBlock(); in checkEndAnalysis() local 80 reachable.insert(CB->getBlockID()); in checkEndAnalysis() 97 const CFGBlock *CB = *I; in checkEndAnalysis() local 99 if (reachable.count(CB->getBlockID())) in checkEndAnalysis() 103 if (isEmptyCFGBlock(CB)) in checkEndAnalysis() 107 if (!visited.count(CB->getBlockID())) in checkEndAnalysis() [all …]
|
D | AnalyzerStatsChecker.cpp | 64 const CFGBlock *CB = BE->getBlock(); in checkEndAnalysis() local 65 reachable.insert(CB); in checkEndAnalysis() 76 const CFGBlock *CB = *I; in checkEndAnalysis() local 79 if (!reachable.count(CB)) { in checkEndAnalysis()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/ |
D | AliasAnalysisTest.cpp | 80 std::function<void()> CB; member 82 explicit TestCustomAAResult(std::function<void()> CB) in TestCustomAAResult() 83 : AAResultBase(), CB(std::move(CB)) {} in TestCustomAAResult() 85 : AAResultBase(std::move(Arg)), CB(std::move(Arg.CB)) {} in TestCustomAAResult() 90 CB(); in alias() 100 std::function<void()> CB; member in __anon5d1719120311::TestCustomAAWrapperPass 107 std::function<void()> CB = std::function<void()>()) in TestCustomAAWrapperPass() argument 108 : ImmutablePass(ID), CB(std::move(CB)) { in TestCustomAAWrapperPass() 118 Result.reset(new TestCustomAAResult(std::move(CB))); in doInitialization()
|
/external/llvm/unittests/Analysis/ |
D | AliasAnalysisTest.cpp | 80 std::function<void()> CB; member 82 explicit TestCustomAAResult(std::function<void()> CB) in TestCustomAAResult() 83 : AAResultBase(), CB(std::move(CB)) {} in TestCustomAAResult() 85 : AAResultBase(std::move(Arg)), CB(std::move(Arg.CB)) {} in TestCustomAAResult() 90 CB(); in alias() 100 std::function<void()> CB; member in __anon7acd9d7a0311::TestCustomAAWrapperPass 107 std::function<void()> CB = std::function<void()>()) in TestCustomAAWrapperPass() argument 108 : ImmutablePass(ID), CB(std::move(CB)) { in TestCustomAAWrapperPass() 118 Result.reset(new TestCustomAAResult(std::move(CB))); in doInitialization()
|
/external/libxml2/win32/VC10/ |
D | libxml2.sln | 6 …1D0-8D11-00A0C91BC942}") = "runsuite", "runsuite.vcxproj", "{D841B4F7-C277-49CB-B379-8B1801C8EE35}" 29 {D841B4F7-C277-49CB-B379-8B1801C8EE35}.Debug DLL|Win32.ActiveCfg = Debug|Win32 30 {D841B4F7-C277-49CB-B379-8B1801C8EE35}.Debug DLL|Win32.Build.0 = Debug|Win32 31 {D841B4F7-C277-49CB-B379-8B1801C8EE35}.Debug|Win32.ActiveCfg = Debug|Win32 32 {D841B4F7-C277-49CB-B379-8B1801C8EE35}.Debug|Win32.Build.0 = Debug|Win32 33 {D841B4F7-C277-49CB-B379-8B1801C8EE35}.Release DLL|Win32.ActiveCfg = Release|Win32 34 {D841B4F7-C277-49CB-B379-8B1801C8EE35}.Release DLL|Win32.Build.0 = Release|Win32 35 {D841B4F7-C277-49CB-B379-8B1801C8EE35}.Release|Win32.ActiveCfg = Release|Win32 36 {D841B4F7-C277-49CB-B379-8B1801C8EE35}.Release|Win32.Build.0 = Release|Win32
|
/external/clang/tools/libclang/ |
D | CIndexInclusionStack.cpp | 25 CXTranslationUnit TU, CXInclusionVisitor CB, in getInclusions() argument 66 CB(static_cast<CXFile>( in getInclusions() 74 void clang_getInclusions(CXTranslationUnit TU, CXInclusionVisitor CB, in clang_getInclusions() argument 91 SM.loaded_sloc_entry_size(), TU, CB, clientData); in clang_getInclusions() 98 getInclusions(&SourceManager::getLocalSLocEntry, n, TU, CB, clientData); in clang_getInclusions()
|
D | Indexing.cpp | 433 IndexerCallbacks CB; in clang_indexSourceFile_Impl() local 434 memset(&CB, 0, sizeof(CB)); in clang_indexSourceFile_Impl() 435 unsigned ClientCBSize = index_callbacks_size < sizeof(CB) in clang_indexSourceFile_Impl() 436 ? index_callbacks_size : sizeof(CB); in clang_indexSourceFile_Impl() 437 memcpy(&CB, client_index_callbacks, ClientCBSize); in clang_indexSourceFile_Impl() 541 std::make_shared<CXIndexDataConsumer>(client_data, CB, index_options, in clang_indexSourceFile_Impl() 651 IndexerCallbacks CB; in clang_indexTranslationUnit_Impl() local 652 memset(&CB, 0, sizeof(CB)); in clang_indexTranslationUnit_Impl() 653 unsigned ClientCBSize = index_callbacks_size < sizeof(CB) in clang_indexTranslationUnit_Impl() 654 ? index_callbacks_size : sizeof(CB); in clang_indexTranslationUnit_Impl() [all …]
|
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/ |
D | vq4.c | 29 int16_t *CB, /* codebook in Q13 */ in WebRtcIlbcfix_Vq4() argument 43 tmp = X[0] - CB[pos]; in WebRtcIlbcfix_Vq4() 46 tmp = X[i] - CB[pos + i]; in WebRtcIlbcfix_Vq4() 59 Xq[i] = CB[minindex*4 + i]; in WebRtcIlbcfix_Vq4()
|
D | vq3.c | 29 int16_t *CB, /* codebook in Q13 */ in WebRtcIlbcfix_Vq3() argument 43 tmp = X[0] - CB[pos]; in WebRtcIlbcfix_Vq3() 46 tmp = X[i] - CB[pos + i]; in WebRtcIlbcfix_Vq3() 59 Xq[i] = CB[minindex*3 + i]; in WebRtcIlbcfix_Vq3()
|
D | cb_mem_energy.c | 31 int16_t *CB, /* (i) The CB memory (1:st section) */ in WebRtcIlbcfix_CbMemEnergy() argument 48 ppi = CB+lMem-lTarget-1; in WebRtcIlbcfix_CbMemEnergy() 49 ppo = CB+lMem-1; in WebRtcIlbcfix_CbMemEnergy() 51 pp=CB+lMem-lTarget; in WebRtcIlbcfix_CbMemEnergy()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Coroutines/ |
D | CoroElide.cpp | 135 for (auto *CB : CoroBegins) { in elideHeapAllocations() local 136 CB->replaceAllUsesWith(FrameVoidPtr); in elideHeapAllocations() 137 CB->eraseFromParent(); in elideHeapAllocations() 179 if (auto *CB = dyn_cast<CoroBeginInst>(DA->getFrame())) in shouldElide() local 180 ReferencedCoroBegins.insert(CB); in shouldElide() 201 if (auto *CB = dyn_cast<CoroBeginInst>(U)) in processCoroId() local 202 CoroBegins.push_back(CB); in processCoroId() 213 for (CoroBeginInst *CB : CoroBegins) { in processCoroId() 214 for (User *U : CB->users()) in processCoroId()
|
/external/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/ |
D | MPIBugReporter.h | 28 MPIBugReporter(const CheckerBase &CB) { in MPIBugReporter() argument 29 UnmatchedWaitBugType.reset(new BugType(&CB, "Unmatched wait", MPIError)); in MPIBugReporter() 31 new BugType(&CB, "Double nonblocking", MPIError)); in MPIBugReporter() 32 MissingWaitBugType.reset(new BugType(&CB, "Missing wait", MPIError)); in MPIBugReporter()
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | ProgramState.h | 335 template <typename CB> CB scanReachableSymbols(SVal val) const; 336 template <typename CB> CB scanReachableSymbols(const SVal *beg, 339 template <typename CB> CB 808 template <typename CB> 809 CB ProgramState::scanReachableSymbols(SVal val) const { in scanReachableSymbols() 810 CB cb(this); in scanReachableSymbols() 815 template <typename CB> 816 CB ProgramState::scanReachableSymbols(const SVal *beg, const SVal *end) const { in scanReachableSymbols() 817 CB cb(this); in scanReachableSymbols() 822 template <typename CB> [all …]
|
/external/toybox/tests/files/bc/ |
D | print_results.txt | 2661 .CB 2662 1.CB 2663 78.CB 2877 .1CB 2878 1.1CB 2879 BA.1CB 2932 CB 2935 CB.222 3495 .1CB 3496 1.1CB [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/break_rules/ |
D | line_normal_cj.txt | 37 CB = [:LineBreak = Contingent_Break:]; 83 # LB1 - Resolve AI, CB, CJ, SA, SG, and XX into other line breaking classes 167 # LB 20 Break before and after CB. 169 # ZWJ acts like a CM to the left, combining with CB. 171 LB20.1: . CM* ZWJ CB; 172 LB20.2: . CM* ÷ CB; 174 LB20.3: CB CM* ZWJ [^CM]; 175 LB20.4: CB CM* ÷; 183 # should "HL BAX" not break when followed by a CB? Thats what the current 184 # rules do, which is why "[^CM CB]?" includes the ?. [all …]
|
D | line.txt | 26 CB = [:LineBreak = Contingent_Break:]; 71 # LB1 - Resolve AI, CB, CJ, SA, SG, and XX into other line breaking classes 153 # LB 20 Break before and after CB. 155 # ZWJ acts like a CM to the left, combining with CB. 157 LB20.1: . CM* ZWJ CB; 158 LB20.2: . CM* ÷ CB; 160 LB20.3: CB CM* ZWJ [^CM]; 161 LB20.4: CB CM* ÷; 168 LB21a: HL CM* (HY | BA) CM* [^CM CB]; 171 LB21.2: BB CM* [^CM CB];
|
/external/icu/icu4c/source/test/testdata/break_rules/ |
D | line_normal_cj.txt | 37 CB = [:LineBreak = Contingent_Break:]; 83 # LB1 - Resolve AI, CB, CJ, SA, SG, and XX into other line breaking classes 167 # LB 20 Break before and after CB. 169 # ZWJ acts like a CM to the left, combining with CB. 171 LB20.1: . CM* ZWJ CB; 172 LB20.2: . CM* ÷ CB; 174 LB20.3: CB CM* ZWJ [^CM]; 175 LB20.4: CB CM* ÷; 183 # should "HL BAX" not break when followed by a CB? Thats what the current 184 # rules do, which is why "[^CM CB]?" includes the ?. [all …]
|
D | line.txt | 33 CB = [:LineBreak = Contingent_Break:]; 78 # LB1 - Resolve AI, CB, CJ, SA, SG, and XX into other line breaking classes 160 # LB 20 Break before and after CB. 162 # ZWJ acts like a CM to the left, combining with CB. 164 LB20.1: . CM* ZWJ CB; 165 LB20.2: . CM* ÷ CB; 167 LB20.3: CB CM* ZWJ [^CM]; 168 LB20.4: CB CM* ÷; 175 LB21a: HL CM* (HY | BA) CM* [^CM CB]; 178 LB21.2: BB CM* [^CM CB];
|
D | line_loose.txt | 33 CB = [:LineBreak = Contingent_Break:]; 79 # LB1 - Resolve AI, CB, CJ, SA, SG, and XX into other line breaking classes 161 # LB 20 Break before and after CB. 163 # ZWJ acts like a CM to the left, combining with CB. 165 LB20.1: . CM* ZWJ CB; 166 LB20.2: . CM* ÷ CB; 168 LB20.3: CB CM* ZWJ [^CM]; 169 LB20.4: CB CM* ÷; 176 LB21a: HL CM* (HY | BA) CM* [^CM CB]; 179 LB21.2: BB CM* [^CM CB];
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/break_rules/ |
D | line_normal_cj.txt | 37 CB = [:LineBreak = Contingent_Break:]; 83 # LB1 - Resolve AI, CB, CJ, SA, SG, and XX into other line breaking classes 167 # LB 20 Break before and after CB. 169 # ZWJ acts like a CM to the left, combining with CB. 171 LB20.1: . CM* ZWJ CB; 172 LB20.2: . CM* ÷ CB; 174 LB20.3: CB CM* ZWJ [^CM]; 175 LB20.4: CB CM* ÷; 183 # should "HL BAX" not break when followed by a CB? Thats what the current 184 # rules do, which is why "[^CM CB]?" includes the ?. [all …]
|
D | line.txt | 26 CB = [:LineBreak = Contingent_Break:]; 71 # LB1 - Resolve AI, CB, CJ, SA, SG, and XX into other line breaking classes 153 # LB 20 Break before and after CB. 155 # ZWJ acts like a CM to the left, combining with CB. 157 LB20.1: . CM* ZWJ CB; 158 LB20.2: . CM* ÷ CB; 160 LB20.3: CB CM* ZWJ [^CM]; 161 LB20.4: CB CM* ÷; 168 LB21a: HL CM* (HY | BA) CM* [^CM CB]; 171 LB21.2: BB CM* [^CM CB];
|
D | line_loose.txt | 33 CB = [:LineBreak = Contingent_Break:]; 79 # LB1 - Resolve AI, CB, CJ, SA, SG, and XX into other line breaking classes 161 # LB 20 Break before and after CB. 163 # ZWJ acts like a CM to the left, combining with CB. 165 LB20.1: . CM* ZWJ CB; 166 LB20.2: . CM* ÷ CB; 168 LB20.3: CB CM* ZWJ [^CM]; 169 LB20.4: CB CM* ÷; 176 LB21a: HL CM* (HY | BA) CM* [^CM CB]; 179 LB21.2: BB CM* [^CM CB];
|
D | line_normal.txt | 35 CB = [:LineBreak = Contingent_Break:]; 80 # LB1 - Resolve AI, CB, CJ, SA, SG, and XX into other line breaking classes 162 # LB 20 Break before and after CB. 164 # ZWJ acts like a CM to the left, combining with CB. 166 LB20.1: . CM* ZWJ CB; 167 LB20.2: . CM* ÷ CB; 169 LB20.3: CB CM* ZWJ [^CM]; 170 LB20.4: CB CM* ÷; 177 LB21a: HL CM* (HY | BA) CM* [^CM CB]; 180 LB21.2: BB CM* [^CM CB];
|
/external/llvm/lib/Transforms/Utils/ |
D | FlattenCFG.cpp | 268 BasicBlock *CB; in FlattenParallelAndOr() local 275 CB = PBI->getSuccessor(1 - Idx); in FlattenParallelAndOr() 279 .splice(FirstCondBlock->end(), CB->getInstList()); in FlattenParallelAndOr() 294 if (CB == LastCondBlock) in FlattenParallelAndOr() 297 CB->dropAllReferences(); in FlattenParallelAndOr() 299 new UnreachableInst(CB->getContext(), CB); in FlattenParallelAndOr()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
D | FlattenCFG.cpp | 281 BasicBlock *CB; in FlattenParallelAndOr() local 288 CB = PBI->getSuccessor(1 - Idx); in FlattenParallelAndOr() 292 .splice(FirstCondBlock->end(), CB->getInstList()); in FlattenParallelAndOr() 307 if (CB == LastCondBlock) in FlattenParallelAndOr() 310 CB->dropAllReferences(); in FlattenParallelAndOr() 312 new UnreachableInst(CB->getContext(), CB); in FlattenParallelAndOr()
|