HomeSort by relevance Sort by last modified time
    Searched defs:MD (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/openssl/crypto/rand/
rand_lcl.h 139 #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_md5(), NULL)
144 #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_sha1(), NULL)
149 #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_mdc2(), NULL)
154 #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_md2(), NULL)
  /external/qemu/memcheck/
memcheck_logging.h 28 #define MD(...) VERBOSE_PRINT(memcheck, __VA_ARGS__)
  /external/clang/lib/CodeGen/
CGVTT.cpp 124 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
127 if (!MD->getParent()->getNumVBases())
131 if (isa<CXXConstructorDecl>(MD) && GD.getCtorType() == Ctor_Base)
135 if (isa<CXXDestructorDecl>(MD) && GD.getDtorType() == Dtor_Base)
CGCXX.cpp 304 CodeGenFunction::BuildVirtualCall(const CXXMethodDecl *MD, llvm::Value *This,
306 MD = MD->getCanonicalDecl();
307 uint64_t VTableIndex = CGM.getVTableContext().getMethodVTableIndex(MD);
316 CodeGenFunction::BuildAppleKextVirtualCall(const CXXMethodDecl *MD,
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 = cast<CXXMethodDecl>(DD)
    [all...]
CGCXXABI.cpp 101 llvm::Constant *CGCXXABI::EmitMemberPointer(const CXXMethodDecl *MD) {
103 CGM.getContext().getMemberPointerType(MD->getType(),
104 MD->getParent()->getTypeForDecl()));
122 const CXXMethodDecl *MD = cast<CXXMethodDecl>(CGF.CurGD.getDecl());
127 = ImplicitParamDecl::Create(CGM.getContext(), 0, MD->getLocation(),
129 MD->getThisType(CGM.getContext()));
CGVTables.cpp 63 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
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,
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());
241 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>()
    [all...]
CodeGenFunction.cpp 427 const CXXMethodDecl *MD = cast<CXXMethodDecl>(D);
428 if (MD->getParent()->isLambda() &&
429 MD->getOverloadedOperator() == OO_Call) {
431 MD->getParent()->getCaptureFields(LambdaCaptureFields,
    [all...]
ItaniumCXXABI.cpp 78 llvm::Constant *EmitMemberPointer(const CXXMethodDecl *MD);
82 llvm::Constant *BuildMemberPointer(const CXXMethodDecl *MD,
166 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
167 return ((isa<CXXDestructorDecl>(MD) && GD.getDtorType() != Dtor_Deleting) ||
168 (isa<CXXConstructorDecl>(MD)));
467 llvm::Constant *ItaniumCXXABI::EmitMemberPointer(const CXXMethodDecl *MD) {
468 return BuildMemberPointer(MD, CharUnits::Zero());
471 llvm::Constant *ItaniumCXXABI::BuildMemberPointer(const CXXMethodDecl *MD,
473 assert(MD->isInstance() && "Member function must not be static!");
474 MD = MD->getCanonicalDecl()
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckObjCDealloc.cpp 157 ObjCMethodDecl *MD = 0;
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,
VirtualCallChecker.cpp 155 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CE->getDirectCallee());
156 if (MD && MD->isVirtual() && !callIsNonVirtual)
157 ReportVirtualCall(CE, MD->isPure());
ObjCSelfInitChecker.cpp 52 static bool isInitializationMethod(const ObjCMethodDecl *MD);
403 const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(ND);
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) {
442 return MD->getMethodFamily() == OMF_init;
  /external/clang/lib/ARCMigrate/
TransEmptyStatementsAndDealloc.cpp 216 ObjCMethodDecl *MD = *MI;
217 if (!MD->hasBody())
220 if (MD->getMethodFamily() == OMF_dealloc) {
221 DeallocM = MD;
222 } else if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) {
223 FinalizeM = MD;
Transforms.cpp 528 ObjCMethodDecl *MD = *MI;
529 if (!MD->hasBody())
532 if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) {
533 ObjCMethodDecl *FinalizeM = MD;
  /external/clang/lib/AST/
Comment.cpp 184 const CXXMethodDecl *MD = cast<CXXMethodDecl>(ThisDecl);
185 IsInstanceMethod = MD->isInstance();
191 const ObjCMethodDecl *MD = cast<ObjCMethodDecl>(ThisDecl);
193 ParamVars = ArrayRef<const ParmVarDecl *>(MD->param_begin(),
194 MD->param_size());
195 ResultType = MD->getResultType();
197 IsInstanceMethod = MD->isInstanceMethod();
DeclObjC.cpp 76 ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(*Meth);
77 if (MD && MD->isInstanceMethod() == isInstance)
78 return MD;
527 if (ObjCMethodDecl *MD = IFD->getMethod(getSelector(),
529 return MD;
534 if (ObjCMethodDecl *MD = CatD->getMethod(getSelector(),
536 return MD;
855 if (ObjCMethodDecl *MD = Impl->getInstanceMethod(Sel))
856 return MD;
    [all...]
MicrosoftMangle.cpp 76 void mangleObjCMethodName(const ObjCMethodDecl *MD);
114 virtual void mangleThunk(const CXXMethodDecl *MD,
232 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD);
233 if (MD) {
234 if (MD->isInstance())
236 if (isa<CXXConstructorDecl>(MD) || isa<CXXDestructorDecl>(MD))
709 void MicrosoftCXXNameMangler::mangleObjCMethodName(const ObjCMethodDecl *MD) {
710 Context.mangleObjCMethodName(MD, Out);
    [all...]
DeclCXX.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp 46 MemoryDependenceAnalysis *MD;
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->getPointerDependencyFrom(Loc, false, DepWrite, &BB)
    [all...]
MemCpyOptimizer.cpp 303 MemoryDependenceAnalysis *MD;
310 MD = 0;
471 MD->removeInstruction(*SI);
492 MemDepResult ldep = MD->getDependency(LI);
517 MD->removeInstruction(SI);
519 MD->removeInstruction(LI);
692 MD->removeInstruction(C);
695 MD->removeInstruction(cpy);
742 MD->getPointerDependencyFrom(AA.getLocationForSource(MDep),
772 MD->removeInstruction(M)
    [all...]
  /external/clang/lib/Parse/
ParseTemplate.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 414 const CXXMethodDecl *MD = cast<CXXMethodDecl>(D);
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());
473 Loc ThisLoc = SVB.getCXXThis(MD, CalleeCtx);
477 if (MD->getCanonicalDecl() != getDecl()->getCanonicalDecl()) {
479 const CXXRecordDecl *Class = MD->getParent();
560 const CXXMethodDecl *MD = cast<CXXMethodDecl>(CalleeCtx->getDecl())
    [all...]
  /external/clang/tools/libclang/
IndexingContext.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 156 const MDNode *MD; // For MO_Metadata.
478 return Contents.MD;
659 Op.Contents.MD = Meta;
  /external/clang/lib/Sema/
SemaExprMember.cpp 158 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC))
159 contextClass = MD->getParent()->getCanonicalDecl();
    [all...]
SemaObjCProperty.cpp     [all...]

Completed in 852 milliseconds

1 2 3