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

1 2 3 4

  /external/chromium_org/third_party/openssl/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/clang/test/Layout/
ms-x86-member-pointers.cpp 9 struct MD { char a; int M::*mp; };
25 // CHECK-NEXT: 0 | struct MD
74 sizeof(MD) +
  /external/llvm/lib/CodeGen/AsmPrinter/
ErlangGCPrinter.cpp 62 GCFunctionInfo &MD = **FI;
81 AP.EmitInt16(MD.size());
84 for (GCFunctionInfo::iterator PI = MD.begin(), PE = MD.end(); PI != PE;
94 GCFunctionInfo::iterator PI = MD.begin();
98 AP.EmitInt16(MD.getFrameSize() / IntPtrSize);
102 unsigned StackArity = MD.getFunction().arg_size() > RegisteredArgs ?
103 MD.getFunction().arg_size() - RegisteredArgs : 0;
109 AP.EmitInt16(MD.live_size(PI));
112 for (GCFunctionInfo::live_iterator LI = MD.live_begin(PI)
    [all...]
  /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/clang/lib/Lex/
MacroInfo.cpp 130 MacroDirective *MD = this;
133 for (; MD; MD = MD->getPrevious()) {
134 if (DefMacroDirective *DefMD = dyn_cast<DefMacroDirective>(MD))
138 if (UndefMacroDirective *UndefMD = dyn_cast<UndefMacroDirective>(MD)) {
143 VisibilityMacroDirective *VisMD = cast<VisibilityMacroDirective>(MD);
PPExpressions.cpp 147 MacroDirective *MD = Macro;
149 if (!MD && Result.Val != 0)
150 MD = PP.getMacroDirective(II);
151 Callbacks->Defined(macroToken, MD,
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckObjCDealloc.cpp 156 const ObjCMethodDecl *MD = nullptr;
161 MD = I;
169 if (!MD) { // No dealloc found.
185 if (MD->getBody() && !scan_dealloc(MD->getBody(), S)) {
197 BR.EmitBasicReport(MD, Checker, name, categories::CoreFoundationObjectiveC,
234 if (scan_ivar_release(MD->getBody(), ID, PD, RS, SelfII, Ctx)
261 BR.EmitBasicReport(MD, Checker, name,
DirectIvarAssignment.cpp 63 const ObjCMethodDecl *MD;
73 : IvarToPropMap(InMap), MD(InMD), InterfD(InID), BR(InBR),
194 if (SetterMethod && SetterMethod->getCanonicalDecl() == MD)
197 if (GetterMethod && GetterMethod->getCanonicalDecl() == MD)
201 MD, Checker, "Property access", categories::CoreFoundationObjectiveC,
VirtualCallChecker.cpp 156 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CE->getDirectCallee());
157 if (MD && MD->isVirtual() && !callIsNonVirtual)
158 ReportVirtualCall(CE, MD->isPure());
ObjCSelfInitChecker.cpp 53 static bool isInitializationMethod(const ObjCMethodDecl *MD);
391 const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(ND);
392 if (!MD)
394 if (!isInitializationMethod(MD))
399 ASTContext &Ctx = MD->getASTContext();
401 ObjCInterfaceDecl *ID = MD->getClassInterface()->getSuperClass();
429 static bool isInitializationMethod(const ObjCMethodDecl *MD) {
430 return MD->getMethodFamily() == OMF_init;
IvarInvalidationChecker.cpp 76 void addInvalidationMethod(const ObjCMethodDecl *MD) {
77 InvalidationMethods.insert(MD);
84 bool hasMethod(const ObjCMethodDecl *MD) {
89 if (*I == MD) {
610 const ObjCMethodDecl *MD = ME->getMethodDecl();
611 if (MD) {
612 MD = cast<ObjCMethodDecl>(MD->getCanonicalDecl());
613 MethToIvarMapTy::const_iterator IvI = PropertyGetterToIvarMap.find(MD);
634 const ObjCMethodDecl *MD = PA->getImplicitPropertySetter()
    [all...]
  /external/llvm/unittests/Analysis/
MixedTBAATest.cpp 25 MixedTBAATest() : M("MixedTBAATest", C), MD(C) {}
29 MDBuilder MD;
50 auto RootMD = MD.createTBAARoot("Simple C/C++ TBAA");
51 auto MD1 = MD.createTBAAScalarTypeNode("omnipotent char", RootMD);
52 auto MD2 = MD.createTBAAScalarTypeNode("int", MD1);
53 auto MD3 = MD.createTBAAStructTagNode(MD2, MD2, 0);
59 auto RootMD = MD.createTBAARoot("Simple C/C++ TBAA");
60 auto MD1 = MD.createTBAANode("omnipotent char", RootMD);
61 auto MD2 = MD.createTBAANode("int", MD1);
  /external/clang/lib/AST/
Comment.cpp 172 const CXXMethodDecl *MD = cast<CXXMethodDecl>(CommentDecl);
173 IsInstanceMethod = MD->isInstance();
179 const ObjCMethodDecl *MD = cast<ObjCMethodDecl>(CommentDecl);
181 ParamVars = ArrayRef<const ParmVarDecl *>(MD->param_begin(),
182 MD->param_size());
183 ReturnType = MD->getReturnType();
185 IsInstanceMethod = MD->isInstanceMethod();
  /external/clang/lib/CodeGen/
CGCXX.cpp 332 CodeGenFunction::BuildAppleKextVirtualCall(const CXXMethodDecl *MD,
344 if (const auto *DD = dyn_cast<CXXDestructorDecl>(MD))
347 return ::BuildAppleKextVirtualCall(*this, MD, Ty, RD);
357 const auto *MD = cast<CXXMethodDecl>(DD);
361 if (MD->isVirtual() && Type != Dtor_Base) {
CGCXXABI.cpp 133 llvm::Constant *CGCXXABI::EmitMemberPointer(const CXXMethodDecl *MD) {
135 CGM.getContext().getMemberPointerType(MD->getType(),
136 MD->getParent()->getTypeForDecl()));
154 const CXXMethodDecl *MD = cast<CXXMethodDecl>(CGF.CurGD.getDecl());
159 = ImplicitParamDecl::Create(CGM.getContext(), nullptr, MD->getLocation(),
161 MD->getThisType(CGM.getContext()));
CGVTables.cpp 37 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
42 if (const CXXDestructorDecl* DD = dyn_cast<CXXDestructorDecl>(MD))
46 getCXXABI().getMangleContext().mangleThunk(MD, Thunk, Out);
54 static void setThunkVisibility(CodeGenModule &CGM, const CXXMethodDecl *MD,
56 CGM.setGlobalVisibility(Fn, MD);
130 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
131 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
199 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
200 QualType ThisType = MD->getThisType(getContext());
201 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>()
    [all...]
  /external/clang/tools/libclang/
IndexDecl.cpp 29 const ObjCMethodDecl *MD = Container->getMethod(D->getSelector(),
31 return MD && !MD->isImplicit() && MD->isThisDeclarationADefinition();
210 if (ObjCMethodDecl *MD = D->getGetterMethodDecl())
211 if (MD->getLexicalDeclContext() == D->getLexicalDeclContext())
212 handleObjCMethod(MD);
213 if (ObjCMethodDecl *MD = D->getSetterMethodDecl())
214 if (MD->getLexicalDeclContext() == D->getLexicalDeclContext())
215 handleObjCMethod(MD);
    [all...]
  /external/llvm/lib/Target/R600/
SITypeRewriter.cpp 90 SmallVector <std::pair<unsigned, MDNode*>, 8> MD;
91 I.getAllMetadataOtherThanDebugLoc(MD);
92 for (unsigned i = 0, e = MD.size(); i != e; ++i) {
93 Load->setMetadata(MD[i].first, MD[i].second);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600KernelParameters.cpp 98 NamedMDNode * MD = Mod->getOrInsertNamedMetadata("opencl.kernels");
100 if (!MD || !MD->getNumOperands()) {
104 for (int i = 0; i < int(MD->getNumOperands()); i++) {
105 if (!MD->getOperand(i) || !MD->getOperand(i)->getOperand(0)) {
109 assert(MD->getOperand(i)->getNumOperands() == 1);
111 if (MD->getOperand(i)->getOperand(0)->getName() == Fun->getName()) {
  /external/llvm/lib/Analysis/
LoopInfo.cpp 244 MDNode *MD = nullptr;
249 MD = TI->getMetadata(LoopMDName);
253 if (!MD)
257 LoopID = MD;
258 else if (MD != LoopID)
  /external/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp 235 const MDNode *MD = dyn_cast<MDNode>(LoopID->getOperand(i));
236 if (!MD) continue;
238 const MDString *S = dyn_cast<MDString>(MD->getOperand(0));
242 assert(MD->getNumOperands() == 2 &&
244 return cast<ConstantInt>(MD->getOperand(1));
DeadStoreElimination.cpp 48 MemoryDependenceAnalysis *MD;
53 DSE() : FunctionPass(ID), AA(nullptr), MD(nullptr), DT(nullptr) {
62 MD = &getAnalysis<MemoryDependenceAnalysis>();
73 AA = nullptr; MD = nullptr; DT = nullptr;
115 MemoryDependenceAnalysis &MD,
131 MD.removeInstruction(DeadInst);
510 MemDepResult InstDep = MD->getDependency(Inst);
530 DeleteDeadInstruction(SI, *MD, TLI);
577 DeleteDeadInstruction(DepWrite, *MD, TLI);
629 InstDep = MD->getPointerDependencyFrom(Loc, false, DepWrite, &BB)
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
R600KernelParameters.cpp 98 NamedMDNode * MD = Mod->getOrInsertNamedMetadata("opencl.kernels");
100 if (!MD || !MD->getNumOperands()) {
104 for (int i = 0; i < int(MD->getNumOperands()); i++) {
105 if (!MD->getOperand(i) || !MD->getOperand(i)->getOperand(0)) {
109 assert(MD->getOperand(i)->getNumOperands() == 1);
111 if (MD->getOperand(i)->getOperand(0)->getName() == Fun->getName()) {
  /external/llvm/lib/IR/
AutoUpgrade.cpp 497 MDNode *MD = I->getMetadata(LLVMContext::MD_tbaa);
498 assert(MD && "UpgradeInstWithTBAATag should have a TBAA tag");
500 if (isa<MDNode>(MD->getOperand(0)) && MD->getNumOperands() >= 3)
503 if (MD->getNumOperands() == 3) {
505 MD->getOperand(0),
506 MD->getOperand(1)
513 MD->getOperand(2)
517 // Create a MDNode <MD, MD, offset 0
    [all...]
  /external/smack/src/org/xbill/DNS/
Type.java 22 public static final int MD = 3;
229 types.add(MD, "MD", new MDRecord());

Completed in 632 milliseconds

1 2 3 4