Searched defs:CB (Results 1 - 14 of 14) sorted by relevance

/external/eigen/blas/fortran/
H A Dlsame.f1 LOGICAL FUNCTION LSAME(CA,CB)
8 CHARACTER CA,CB local in function:LSAME
14 * LSAME returns .TRUE. if CA is the same letter as CB regardless of
22 * CB (input) CHARACTER*1
23 * CA and CB specify the single characters to be compared.
36 LSAME = CA .EQ. CB
49 INTB = ICHAR(CB)
/external/clang/test/Modules/Inputs/
H A Dredecl-add-after-load-decls.h15 typedef C::A CB; typedef
/external/clang/tools/libclang/
H A DCIndexInclusionStack.cpp25 void clang_getInclusions(CXTranslationUnit TU, CXInclusionVisitor CB, argument
71 CB(static_cast<CXFile>(
H A DIndexingContext.h279 IndexerCallbacks &CB; member in class:clang::cxindex::IndexingContext
339 : Ctx(nullptr), ClientData(clientData), CB(indexCallbacks),
364 bool hasDiagnosticCallback() const { return CB.diagnostic; }
H A DIndexing.cpp509 IndexerCallbacks CB; local
510 memset(&CB, 0, sizeof(CB));
511 unsigned ClientCBSize = index_callbacks_size < sizeof(CB)
512 ? index_callbacks_size : sizeof(CB);
513 memcpy(&CB, client_index_callbacks, ClientCBSize);
616 IndexAction.reset(new IndexingFrontendAction(client_data, CB,
763 IndexerCallbacks CB; local
764 memset(&CB, 0, sizeof(CB));
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DAnalyzerStatsChecker.cpp64 const CFGBlock *CB = BE->getBlock(); local
65 reachable.insert(CB);
76 const CFGBlock *CB = *I; local
79 if (!reachable.count(CB)) {
H A DUnreachableCodeChecker.cpp44 static inline const Stmt *getUnreachableStmt(const CFGBlock *CB);
45 static void FindUnreachableEntryPoints(const CFGBlock *CB,
48 static bool isInvalidPath(const CFGBlock *CB, const ParentMap &PM);
49 static inline bool isEmptyCFGBlock(const CFGBlock *CB);
83 const CFGBlock *CB = BE->getBlock(); local
84 reachable.insert(CB->getBlockID());
101 const CFGBlock *CB = *I; local
103 if (reachable.count(CB->getBlockID()))
107 if (isEmptyCFGBlock(CB))
111 if (!visited.count(CB
174 FindUnreachableEntryPoints(const CFGBlock *CB, CFGBlocksSet &reachable, CFGBlocksSet &visited) argument
196 getUnreachableStmt(const CFGBlock *CB) argument
212 isInvalidPath(const CFGBlock *CB, const ParentMap &PM) argument
247 isEmptyCFGBlock(const CFGBlock *CB) argument
[all...]
/external/clang/test/Modules/
H A Dredecl-add-after-load.cpp24 typedef C::A CB; typedef
46 CB struct_struct_test;
/external/compiler-rt/lib/asan/tests/
H A Dasan_noinst_test.cc225 typedef void (*CB)(uptr p); typedef
226 CB cb[2][5] = {
248 CB call = cb[is_write][size_log];
/external/clang/lib/Analysis/
H A DReachableCode.cpp363 clang::reachable_code::Callback &CB);
371 clang::reachable_code::Callback &CB);
443 clang::reachable_code::Callback &CB) {
476 reportDeadCode(Block, S, CB);
496 reportDeadCode(Block, I->second, CB);
571 clang::reachable_code::Callback &CB) {
601 CB.HandleUnreachable(reachable_code::UK_Loop_Increment,
621 CB.HandleUnreachable(UK, Loc, SilenceableCondVal, R1, R2);
638 Callback &CB) {
672 numReachable += DS.scanBackwards(block, CB);
442 scanBackwards(const clang::CFGBlock *Start, clang::reachable_code::Callback &CB) argument
569 reportDeadCode(const CFGBlock *B, const Stmt *S, clang::reachable_code::Callback &CB) argument
637 FindUnreachableCode(AnalysisDeclContext &AC, Preprocessor &PP, Callback &CB) argument
[all...]
/external/llvm/include/llvm/ADT/
H A DImmutableMap.h183 CBWrapperRef<Callback> CB(C);
184 Root->foreach(CB);
191 CBWrapper<Callback> CB; local
192 Root->foreach(CB);
/external/compiler-rt/test/tsan/
H A Ddeadlock_detector_stress_test.cc553 struct CB { struct in class:LockTest
558 // Thread function with CB.
560 CB *cb = (CB*)param;
569 CB cb[kNumThreads] = {{f1, this}, {f2, this}, {f3, this}, {f4, this}};
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp124 ConstantInt *CB = dyn_cast<ConstantInt>(B); local
127 if (!CB || !CC) {
131 const APInt &BVal = CB->getValue();
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1710 ConstantInt *CB = dyn_cast<ConstantInt>(PN->getIncomingValue(i)); local
1711 if (!CB || !CB->getType()->isIntegerTy(1)) continue;
1716 BasicBlock *RealDest = BI->getSuccessor(!CB->getZExtValue());

Completed in 508 milliseconds