Searched defs:MD (Results 1 - 25 of 75) sorted by relevance

123

/external/openssl/crypto/rand/
H A Drand_lcl.h139 #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_md5(), NULL) macro
144 #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_sha1(), NULL) macro
149 #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_mdc2(), NULL) macro
154 #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_md2(), NULL) macro
/external/qemu/memcheck/
H A Dmemcheck_logging.h28 #define MD(...) VERBOSE_PRINT(memcheck, __VA_ARGS__) macro
/external/clang/include/clang/Serialization/
H A DASTDeserializationListener.h50 MacroDefinition *MD) { }
49 MacroDefinitionRead(serialization::PreprocessedEntityID, MacroDefinition *MD) argument
/external/clang/lib/AST/
H A DMangle.cpp133 void MangleContext::mangleObjCMethodName(const ObjCMethodDecl *MD, argument
139 dyn_cast<ObjCContainerDecl>(MD->getDeclContext());
141 OS << (MD->isInstanceMethod() ? '-' : '+') << '[' << CD->getName();
144 OS << ' ' << MD->getSelector().getAsString() << ']';
H A DComment.cpp184 const CXXMethodDecl *MD = cast<CXXMethodDecl>(ThisDecl); local
185 IsInstanceMethod = MD->isInstance();
191 const ObjCMethodDecl *MD = cast<ObjCMethodDecl>(ThisDecl); local
193 ParamVars = ArrayRef<const ParmVarDecl *>(MD->param_begin(),
194 MD->param_size());
195 ResultType = MD->getResultType();
197 IsInstanceMethod = MD->isInstanceMethod();
/external/clang/lib/ARCMigrate/
H A DTransEmptyStatementsAndDealloc.cpp216 ObjCMethodDecl *MD = *MI; local
217 if (!MD->hasBody())
220 if (MD->getMethodFamily() == OMF_dealloc) {
221 DeallocM = MD;
222 } else if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) {
223 FinalizeM = MD;
H A DTransforms.cpp528 ObjCMethodDecl *MD = *MI; local
529 if (!MD->hasBody())
532 if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) {
533 ObjCMethodDecl *FinalizeM = MD;
/external/clang/lib/CodeGen/
H A DCGVTT.cpp124 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl()); local
127 if (!MD->getParent()->getNumVBases())
131 if (isa<CXXConstructorDecl>(MD) && GD.getCtorType() == Ctor_Base)
135 if (isa<CXXDestructorDecl>(MD) && GD.getDtorType() == Dtor_Base)
H A DCGCXX.cpp304 CodeGenFunction::BuildVirtualCall(const CXXMethodDecl *MD, llvm::Value *This, argument
306 MD = MD->getCanonicalDecl();
307 uint64_t VTableIndex = CGM.getVTableContext().getMethodVTableIndex(MD);
316 CodeGenFunction::BuildAppleKextVirtualCall(const CXXMethodDecl *MD, argument
329 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD))
336 MD = MD->getCanonicalDecl();
337 uint64_t VTableIndex = CGM.getVTableContext().getMethodVTableIndex(MD);
355 const CXXMethodDecl *MD local
[all...]
H A DCGCXXABI.cpp101 llvm::Constant *CGCXXABI::EmitMemberPointer(const CXXMethodDecl *MD) { argument
103 CGM.getContext().getMemberPointerType(MD->getType(),
104 MD->getParent()->getTypeForDecl()));
122 const CXXMethodDecl *MD = cast<CXXMethodDecl>(CGF.CurGD.getDecl()); local
127 = ImplicitParamDecl::Create(CGM.getContext(), 0, MD->getLocation(),
129 MD->getThisType(CGM.getContext()));
H A DCGVTables.cpp63 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl()); local
68 if (const CXXDestructorDecl* DD = dyn_cast<CXXDestructorDecl>(MD))
72 getCXXABI().getMangleContext().mangleThunk(MD, Thunk, Out);
120 static void setThunkVisibility(CodeGenModule &CGM, const CXXMethodDecl *MD, argument
122 CGM.setGlobalVisibility(Fn, MD);
140 if (MD->getExplicitVisibility())
143 switch (MD->getTemplateSpecializationKind()) {
162 if (MD->hasBody(Def) && Def->isOutOfLine())
240 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl()); local
241 const FunctionProtoType *FPT = MD
306 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl()); local
482 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl()); local
492 const CXXMethodDecl *MD = local
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCheckObjCDealloc.cpp157 ObjCMethodDecl *MD = 0; local
164 MD = *I;
172 if (!MD) { // No dealloc found.
188 if (MD->getBody() && !scan_dealloc(MD->getBody(), S)) {
200 BR.EmitBasicReport(MD, name, categories::CoreFoundationObjectiveC,
239 if (scan_ivar_release(MD->getBody(), ID, PD, RS, SelfII, Ctx)
266 BR.EmitBasicReport(MD, name, categories::CoreFoundationObjectiveC,
H A DDynamicTypePropagation.cpp44 static void recordFixedType(const MemRegion *Region, const CXXMethodDecl *MD, argument
47 assert(MD);
50 QualType Ty = Ctx.getPointerType(Ctx.getRecordType(MD->getParent()));
217 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(SFCtx->getDecl()))
219 dyn_cast<ObjCObjectType>(MD->getClassInterface()->getTypeForDecl()))
H A DVirtualCallChecker.cpp155 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CE->getDirectCallee()); local
156 if (MD && MD->isVirtual() && !callIsNonVirtual)
157 ReportVirtualCall(CE, MD->isPure());
H A DObjCSelfInitChecker.cpp52 static bool isInitializationMethod(const ObjCMethodDecl *MD);
403 const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(ND); local
404 if (!MD)
406 if (!isInitializationMethod(MD))
411 ASTContext &Ctx = MD->getASTContext();
413 ObjCInterfaceDecl *ID = MD->getClassInterface()->getSuperClass();
441 static bool isInitializationMethod(const ObjCMethodDecl *MD) { argument
442 return MD->getMethodFamily() == OMF_init;
/external/clang/include/clang/Analysis/
H A DCallGraph.h119 bool VisitObjCMethodDecl(ObjCMethodDecl *MD) { argument
120 if (includeInGraph(MD))
121 addNodeForDecl(MD, true);
/external/clang/lib/Frontend/
H A DFrontendAction.cpp64 MacroDefinition *MD) {
66 Previous->MacroDefinitionRead(PPID, MD);
63 MacroDefinitionRead(serialization::PreprocessedEntityID PPID, MacroDefinition *MD) argument
H A DMultiplexConsumer.cpp41 MacroDefinition *MD);
82 serialization::PreprocessedEntityID ID, MacroDefinition *MD) {
84 Listeners[i]->MacroDefinitionRead(ID, MD);
81 MacroDefinitionRead( serialization::PreprocessedEntityID ID, MacroDefinition *MD) argument
/external/llvm/include/llvm/CodeGen/
H A DGCMetadata.h77 GCRoot(int N, const Constant *MD) : Num(N), StackOffset(-1), Metadata(MD) {} argument
H A DMachineOperand.h156 const MDNode *MD; // For MO_Metadata. member in union:llvm::MachineOperand::__anon9039
478 return Contents.MD;
659 Op.Contents.MD = Meta;
/external/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp81 if (MDNode *MD = dyn_cast<MDNode>(*OI))
82 if (MD->isFunctionLocal() && MD->getFunction())
222 void ValueEnumerator::EnumerateNamedMDNode(const NamedMDNode *MD) { argument
223 for (unsigned i = 0, e = MD->getNumOperands(); i != e; ++i)
224 EnumerateMetadata(MD->getOperand(i));
241 void ValueEnumerator::EnumerateMetadata(const Value *MD) { argument
242 assert((isa<MDNode>(MD) || isa<MDString>(MD)) && "Invalid metadata kind");
245 EnumerateType(MD
[all...]
/external/clang/include/clang/AST/
H A DVTableBuilder.h68 static VTableComponent MakeFunction(const CXXMethodDecl *MD) { argument
69 assert(!isa<CXXDestructorDecl>(MD) &&
73 reinterpret_cast<uintptr_t>(MD));
86 static VTableComponent MakeUnusedFunction(const CXXMethodDecl *MD) { argument
87 assert(!isa<CXXDestructorDecl>(MD) &&
90 reinterpret_cast<uintptr_t>(MD));
326 const ThunkInfoVectorTy *getThunkInfo(const CXXMethodDecl *MD) { argument
327 ComputeVTableRelatedInformation(MD->getParent());
329 ThunksMapTy::const_iterator I = Thunks.find(MD);
/external/clang/lib/Parse/
H A DParseTemplate.cpp1281 if (ClassTemplatePartialSpecializationDecl* MD =
1285 Actions.ActOnReenterTemplateScope(getCurScope(), MD); local
1286 } else if (CXXRecordDecl* MD = dyn_cast_or_null<CXXRecordDecl>(*II)) {
1289 MD->getDescribedClassTemplate() != 0 ));
1291 MD->getDescribedClassTemplate());
/external/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp414 const CXXMethodDecl *MD = cast<CXXMethodDecl>(D); local
415 if (!MD->isVirtual())
437 const CXXMethodDecl *Result = MD->getCorrespondingMethodInClass(RD, true);
443 assert(!MD->getParent()->isDerivedFrom(RD) && "Bad DynamicTypeInfo");
444 assert(!RD->isDerivedFrom(MD->getParent()) && "Couldn't find known method");
472 const CXXMethodDecl *MD = cast<CXXMethodDecl>(CalleeCtx->getDecl()); local
473 Loc ThisLoc = SVB.getCXXThis(MD, CalleeCtx);
477 if (MD->getCanonicalDecl() != getDecl()->getCanonicalDecl()) {
479 const CXXRecordDecl *Class = MD->getParent();
560 const CXXMethodDecl *MD local
800 const ObjCMethodDecl *MD = IDecl->lookupPrivateMethod(Sel); local
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp46 MemoryDependenceAnalysis *MD; member in struct:__anon9676::DSE
50 DSE() : FunctionPass(ID), AA(0), MD(0), DT(0) {
56 MD = &getAnalysis<MemoryDependenceAnalysis>();
66 AA = 0; MD = 0; DT = 0;
108 MemoryDependenceAnalysis &MD,
124 MD.removeInstruction(DeadInst);
467 MemDepResult InstDep = MD->getDependency(Inst);
487 DeleteDeadInstruction(SI, *MD, AA->getTargetLibraryInfo());
534 DeleteDeadInstruction(DepWrite, *MD, AA->getTargetLibraryInfo());
586 InstDep = MD
107 DeleteDeadInstruction(Instruction *I, MemoryDependenceAnalysis &MD, const TargetLibraryInfo *TLI, SmallSetVector<Value*, 16> *ValueSet = 0) argument
[all...]

Completed in 312 milliseconds

123