Home
last modified time | relevance | path

Searched refs:CB (Results 1 – 25 of 323) sorted by relevance

12345678910>>...13

/external/clang/lib/StaticAnalyzer/Checkers/
DUnreachableCodeChecker.cpp40 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 …]
DAnalyzerStatsChecker.cpp64 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/llvm/unittests/Analysis/
DAliasAnalysisTest.cpp80 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 __anonb3e856af0311::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/
Dlibxml2.sln6 …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/zlib/src/contrib/dotzlib/
DDotZLib.sln2 …F4B-00C04F79EFBC}") = "DotZLib", "DotZLib\DotZLib.csproj", "{BB1EE0B1-1808-46CB-B786-949D91117FC5}"
12 {BB1EE0B1-1808-46CB-B786-949D91117FC5}.Debug.ActiveCfg = Debug|.NET
13 {BB1EE0B1-1808-46CB-B786-949D91117FC5}.Debug.Build.0 = Debug|.NET
14 {BB1EE0B1-1808-46CB-B786-949D91117FC5}.Release.ActiveCfg = Release|.NET
15 {BB1EE0B1-1808-46CB-B786-949D91117FC5}.Release.Build.0 = Release|.NET
/external/clang/tools/libclang/
DCIndexInclusionStack.cpp25 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()
DIndexing.cpp433 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 …]
DCXIndexDataConsumer.cpp440 if (!CB.abortQuery) in shouldAbort()
442 return CB.abortQuery(ClientData, nullptr); in shouldAbort()
446 if (File && CB.enteredMainFile) { in enteredMainFile()
448 CB.enteredMainFile(ClientData, in enteredMainFile()
460 if (!CB.ppIncludedFile) in ppIncludedFile()
469 CXIdxClientFile idxFile = CB.ppIncludedFile(ClientData, &Info); in ppIncludedFile()
474 if (!CB.importedASTFile) in importedModule()
488 CXIdxClientASTFile astFile = CB.importedASTFile(ClientData, &Info); in importedModule()
493 if (!CB.importedASTFile) in importedPCH()
503 CXIdxClientASTFile astFile = CB.importedASTFile(ClientData, &Info); in importedPCH()
[all …]
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
Dvq4.c29 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()
Dvq3.c29 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()
Dcb_mem_energy.c31 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()
Dsplit_vq.c33 int16_t *CB, /* (i) the quantizer codebook in Q13 */ in WebRtcIlbcfix_SplitVq() argument
44 CBPtr=CB; in WebRtcIlbcfix_SplitVq()
/external/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
DMPIBugReporter.h28 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/valgrind/VEX/orig_x86/
Dmanyfp.orig536 . 90 E8 CB 01 00 00
659 . 55 89 E5 53 83 EC 44 80 3D C2 CB 32 40 00 74 1B
677 . 80 3D C2 CB 32 40 00 74 13
1467 . EB CB
1491 . 55 89 E5 53 83 EC 34 80 3D C2 CB 32 40 00 74 1B
1534 … DD 1C D8 D9 C0 D8 C3 D9 C9 8B 75 E4 D8 C2 D9 C9 8B 45 E0 DD 1C DE DD 1C D8 43 83 C4 08 39 CB 72 C7
1539 … DD 1C D8 D9 C0 D8 C3 D9 C9 8B 75 E4 D8 C2 D9 C9 8B 45 E0 DD 1C DE DD 1C D8 43 83 C4 08 39 CB 72 C7
1622 …44 30 08 8B 45 E0 03 45 E4 31 D2 DD 45 C8 D9 C3 D9 C9 F7 75 10 D8 CB D9 C9 D8 CA D9 CB DE CC D9 C9…
1770 … F7 89 D0 31 D2 52 50 DF 2C 24 DC 0D E0 06 06 08 83 EC 08 DC 75 E0 DD 14 24 DD 5D C8 E8 EE CB FF FF
1778 . DD 45 B8 DD 45 14 DD 45 1C D9 C9 D8 CA D9 C9 D8 CB D9 CA DC 4D 1C D9 CB DC 4D 14 D9 C9 8B 45 DC 8…
[all …]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DProgramState.h335 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/llvm/lib/Transforms/Utils/
DFlattenCFG.cpp268 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/icu/icu4c/source/test/testdata/break_rules/
Dline_normal_cj.txt39 CB = [:LineBreak = Contingent_Break:];
82 # LB1 - Resolve AI, CB, CJ, SA, SG, and XX into other line breaking classes
155 # LB 20 Break before and after CB.
157 # ZWJ acts like a CM to the left, combining with CB.
159 LB20: . CM* ÷ CB;
160 LB20.1a: CB CM* ZWJ (ID | Extended_Pict | EmojiNRK);
161 LB20.1b: CB CM* ÷;
166 # should "HL BAX" not break when followed by a CB? Thats what the current
167 # rules do, which is why "[^CM CB]?" includes the ?.
168 LB21a: HL CM* (HY | BA | BAX) CM* [^CM CB]?;
[all …]
Dline_loose.txt31 CB = [:LineBreak = Contingent_Break:];
74 # LB1 - Resolve AI, CB, CJ, SA, SG, and XX into other line breaking classes
144 # LB 20 Break before and after CB.
146 # ZWJ acts like a CM to the left, combining with CB.
148 LB20: . CM* ÷ CB;
149 LB20.1a: CB CM* ZWJ (ID | Extended_Pict | EmojiNRK);
150 LB20.1b: CB CM* ÷;
154 LB21a: HL CM* (HY | BA) CM* [^CM CB];
157 LB21.2: BB CM* [^CM CB];
Dline_normal.txt38 CB = [:LineBreak = Contingent_Break:];
80 # LB1 - Resolve AI, CB, CJ, SA, SG, and XX into other line breaking classes
150 # LB 20 Break before and after CB.
152 # ZWJ acts like a CM to the left, combining with CB.
154 LB20: . CM* ÷ CB;
155 LB20.1a: CB CM* ZWJ (ID | Extended_Pict | EmojiNRK);
156 LB20.1b: CB CM* ÷;
160 LB21a: HL CM* (HY | BA) CM* [^CM CB];
163 LB21.2: BB CM* [^CM CB];
Dline.txt24 CB = [:LineBreak = Contingent_Break:];
66 # LB1 - Resolve AI, CB, CJ, SA, SG, and XX into other line breaking classes
136 # LB 20 Break before and after CB.
138 # ZWJ acts like a CM to the left, combining with CB.
140 LB20: . CM* ÷ CB;
141 LB20.1a: CB CM* ZWJ (ID | Extended_Pict | EmojiNRK);
142 LB20.1b: CB CM* ÷;
146 LB21a: HL CM* (HY | BA) CM* [^CM CB];
149 LB21.2: BB CM* [^CM CB];
Dline_loose_cj.txt45 CB = [:LineBreak = Contingent_Break:];
91 # 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: . CM* ÷ CB;
166 LB20.1a: CB CM* ZWJ (ID | Extended_Pict | EmojiNRK);
167 LB20.1b: CB CM* ÷;
174 LB21a: HL CM* (HY | BA | BAX) CM* [^CM CB]?;
177 LB21.2: BB CM* [^CM CB];
/external/clang/lib/Analysis/
DReachableCode.cpp363 clang::reachable_code::Callback &CB);
371 clang::reachable_code::Callback &CB);
443 clang::reachable_code::Callback &CB) { in scanBackwards() argument
476 reportDeadCode(Block, S, CB); in scanBackwards()
496 reportDeadCode(Block, I->second, CB); in scanBackwards()
571 clang::reachable_code::Callback &CB) { in reportDeadCode() argument
601 CB.HandleUnreachable(reachable_code::UK_Loop_Increment, in reportDeadCode()
621 CB.HandleUnreachable(UK, Loc, SilenceableCondVal, R1, R2); in reportDeadCode()
638 Callback &CB) { in FindUnreachableCode() argument
672 numReachable += DS.scanBackwards(block, CB); in FindUnreachableCode()
/external/valgrind/VEX/orig_ppc32/
Dmorefp.orig131 . 7C 00 04 AC 4C 00 01 2C 7F 23 CB 78 81 01 00 08 83 21 00 34 82 E1 00 0C 7D 00 81 20 7F 28 03 A6 8…
149 . 81 8B 00 08 80 CB 00 00 39 6B 00 0C 7C EC EA 14 7F 8B F8 40 7C E6 E9 2E 41 9C FF E8
242 . 81 7E 04 90 54 00 10 3A 7C CB 00 2E 7D 26 5A 14 7D 29 03 A6 4E 80 04 20
470 . 38 CB 00 04 39 49 00 03 90 C3 00 00 4B FF FF D0
833 …91 7C 00 00 3B 9C 00 04 7D 9A 42 14 91 0B 00 0C 90 8B 00 04 39 0C 00 01 90 CB 00 08 93 4B 00 10 40…
848 …91 7C 00 00 3B 9C 00 04 7D 9A 42 14 91 0B 00 0C 90 8B 00 04 39 0C 00 01 90 CB 00 08 93 4B 00 10 40…
872 . 7F 23 CB 78 7F 3D CB 78 48 00 DC BD
1355 . 80 81 00 00 7F 23 CB 78 82 E4 00 04 82 A4 FF D4 7E E8 03 A6 82 C4 FF D8 82 E4 FF DC 83 04 FF E0 8…
1418 . 7F 25 CB 78 7F 68 DB 78 7E 03 83 78 7E 84 A3 78 7E E6 BB 78 7E C7 B3 78 48 00 39 B1
1496 . 80 7D 00 18 3D 80 73 51 61 8E 62 40 54 6F 16 FA 7D C8 7E 30 55 06 07 3E 90 CB 00 14 4B FF FC 78
[all …]
Dloadsafp.orig131 . 7C 00 04 AC 4C 00 01 2C 7F 23 CB 78 81 01 00 08 83 21 00 34 82 E1 00 0C 7D 00 81 20 7F 28 03 A6 8…
149 . 81 8B 00 08 80 CB 00 00 39 6B 00 0C 7C EC EA 14 7F 8B F8 40 7C E6 E9 2E 41 9C FF E8
242 . 81 7E 04 90 54 00 10 3A 7C CB 00 2E 7D 26 5A 14 7D 29 03 A6 4E 80 04 20
470 . 38 CB 00 04 39 49 00 03 90 C3 00 00 4B FF FF D0
833 …91 7C 00 00 3B 9C 00 04 7D 9A 42 14 91 0B 00 0C 90 8B 00 04 39 0C 00 01 90 CB 00 08 93 4B 00 10 40…
848 …91 7C 00 00 3B 9C 00 04 7D 9A 42 14 91 0B 00 0C 90 8B 00 04 39 0C 00 01 90 CB 00 08 93 4B 00 10 40…
872 . 7F 23 CB 78 7F 3D CB 78 48 00 DC BD
1355 . 80 81 00 00 7F 23 CB 78 82 E4 00 04 82 A4 FF D4 7E E8 03 A6 82 C4 FF D8 82 E4 FF DC 83 04 FF E0 8…
1418 . 7F 25 CB 78 7F 68 DB 78 7E 03 83 78 7E 84 A3 78 7E E6 BB 78 7E C7 B3 78 48 00 39 B1
1496 . 80 7D 00 18 3D 80 73 51 61 8E 62 40 54 6F 16 FA 7D C8 7E 30 55 06 07 3E 90 CB 00 14 4B FF FC 78
[all …]
/external/clang/test/Modules/
Dredecl-add-after-load.cpp24 typedef C::A CB; typedef
46 CB struct_struct_test;

12345678910>>...13