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

1 2 3 4 5 6

  /external/ppp/pppd/
md4.h 23 unsigned int buffer[4]; /* Holds 4-word result of MD computation */
25 unsigned int done; /* Nonzero means MD computation finished */
32 extern void MD4Init __P((MD4_CTX *MD));
34 /* MD4Update(MD,X,count)
37 ** Updates MD using the first "count" bits of X.
42 ** The routine terminates the MD computation when count < 512, so
43 ** every MD computation should end with one call to MD4Update with a
46 extern void MD4Update __P((MD4_CTX *MD, unsigned char *X, unsigned int count));
48 /* MD4Print(MD)
49 ** Prints message digest buffer MD as 32 hexadecimal digits
    [all...]
  /external/clang/include/clang/Analysis/DomainSpecific/
CocoaConventions.h 30 NamingConvention deriveNamingConvention(Selector S, const ObjCMethodDecl *MD);
33 const ObjCMethodDecl *MD) {
34 return deriveNamingConvention(S, MD) == CreateRule;
  /external/clang/tools/libclang/
IndexBody.cpp 68 if (ObjCMethodDecl *MD = E->getMethodDecl())
69 IndexCtx.handleReference(MD, E->getSelectorStartLoc(), 0, ParentDC, E);
75 if (ObjCMethodDecl *MD = E->getImplicitPropertyGetter())
76 IndexCtx.handleReference(MD, E->getLocation(), 0, ParentDC, E,
78 if (ObjCMethodDecl *MD = E->getImplicitPropertySetter())
79 IndexCtx.handleReference(MD, E->getLocation(), 0, ParentDC, E,
  /external/clang/lib/AST/
VTableBuilder.cpp 130 OverriderInfo getOverrider(const CXXMethodDecl *MD,
132 assert(OverridersMap.count(std::make_pair(MD, BaseOffset)) &&
135 return OverridersMap.lookup(std::make_pair(MD, BaseOffset));
173 const CXXMethodDecl *MD = I->first;
179 assert(SubobjectOffsets.count(std::make_pair(MD->getParent(),
183 CharUnits BaseOffset = SubobjectOffsets[std::make_pair(MD->getParent(),
197 OverriderInfo& Overrider = OverridersMap[std::make_pair(MD, BaseOffset)];
412 const CXXMethodDecl *MD = *I;
414 if (!MD->isVirtual())
417 OverriderInfo Overrider = getOverrider(MD, Base.getBaseOffset())
    [all...]
Mangle.cpp 115 void MangleContext::mangleObjCMethodName(const ObjCMethodDecl *MD,
121 dyn_cast<ObjCContainerDecl>(MD->getDeclContext());
123 OS << (MD->isInstanceMethod() ? '-' : '+') << '[' << CD->getName();
126 OS << ' ' << MD->getSelector().getAsString() << ']';
  /external/llvm/lib/VMCore/
IntrinsicInst.cpp 57 if (MDNode* MD = cast_or_null<MDNode>(getArgOperand(0)))
58 return MD->getOperand(0);
  /external/clang/include/clang/Serialization/
ASTDeserializationListener.h 49 MacroDefinition *MD) { }
  /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/include/clang/AST/
VTableBuilder.h 68 static VTableComponent MakeFunction(const CXXMethodDecl *MD) {
69 assert(!isa<CXXDestructorDecl>(MD) &&
73 reinterpret_cast<uintptr_t>(MD));
86 static VTableComponent MakeUnusedFunction(const CXXMethodDecl *MD) {
87 assert(!isa<CXXDestructorDecl>(MD) &&
90 reinterpret_cast<uintptr_t>(MD));
325 const ThunkInfoVectorTy *getThunkInfo(const CXXMethodDecl *MD) {
326 ComputeVTableRelatedInformation(MD->getParent());
328 ThunksMapTy::const_iterator I = Thunks.find(MD);
  /external/clang/lib/Analysis/
CocoaConventions.cpp 37 const ObjCMethodDecl *MD) {
38 switch (MD && MD->hasAttr<ObjCMethodFamilyAttr>()? MD->getMethodFamily()
  /external/clang/lib/CodeGen/
CGCXX.cpp 305 CodeGenFunction::BuildVirtualCall(const CXXMethodDecl *MD, llvm::Value *This,
307 MD = MD->getCanonicalDecl();
308 uint64_t VTableIndex = CGM.getVTableContext().getMethodVTableIndex(MD);
317 CodeGenFunction::BuildAppleKextVirtualCall(const CXXMethodDecl *MD,
330 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD))
337 MD = MD->getCanonicalDecl();
338 uint64_t VTableIndex = CGM.getVTableContext().getMethodVTableIndex(MD);
356 const CXXMethodDecl *MD = cast<CXXMethodDecl>(DD)
    [all...]
CGExprCXX.cpp 26 RValue CodeGenFunction::EmitCXXMemberCall(const CXXMethodDecl *MD,
33 assert(MD->isInstance() &&
36 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
41 Args.add(RValue::get(This), MD->getThisType(getContext()));
55 Callee, ReturnValue, Args, MD);
111 const CXXMethodDecl *MD) {
134 if (MD->hasAttr<FinalAttr>())
139 if (MD->getParent()->hasAttr<FinalAttr>())
178 const CXXMethodDecl *MD = cast<CXXMethodDecl>(ME->getMemberDecl());
186 MD->getParent()->getLocation())
    [all...]
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);
122 static void setThunkVisibility(CodeGenModule &CGM, const CXXMethodDecl *MD,
124 CGM.setGlobalVisibility(Fn, MD);
142 if (MD->getExplicitVisibility())
145 switch (MD->getTemplateSpecializationKind()) {
164 if (MD->hasBody(Def) && Def->isOutOfLine())
242 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
243 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>()
    [all...]
CGCXXABI.cpp 102 llvm::Constant *CGCXXABI::EmitMemberPointer(const CXXMethodDecl *MD) {
104 CGM.getContext().getMemberPointerType(MD->getType(),
105 MD->getParent()->getTypeForDecl()));
119 const CXXMethodDecl *MD = cast<CXXMethodDecl>(CGF.CurGD.getDecl());
124 = ImplicitParamDecl::Create(CGM.getContext(), 0, MD->getLocation(),
126 MD->getThisType(CGM.getContext()));
  /external/clang/lib/Index/
Analyzer.cpp 103 RefSelectorAnalyzer(ObjCMethodDecl *MD,
106 assert(MD);
109 assert(!isa<ObjCProtocolDecl>(MD->getDeclContext()) &&
112 ObjCInterfaceDecl *IFD = MD->getClassInterface();
115 GlobSel = GlobalSelector::get(MD->getSelector(), Prog);
116 IsInstanceMethod = MD->isInstanceMethod();
331 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(*Meth))
332 if ((MD->isInstanceMethod() && CanBeInstanceMethod) ||
333 (MD->isClassMethod() && CanBeClassMethod)) {
447 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
    [all...]
Entity.cpp 126 ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D);
127 bool isObjCInstanceMethod = MD && MD->isInstanceMethod();
193 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
194 if (MD->isInstanceMethod() == IsObjCInstanceMethod)
195 return MD;
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 79 if (MDNode *MD = dyn_cast<MDNode>(*OI))
80 if (MD->isFunctionLocal() && MD->getFunction())
184 void ValueEnumerator::EnumerateNamedMDNode(const NamedMDNode *MD) {
185 for (unsigned i = 0, e = MD->getNumOperands(); i != e; ++i)
186 EnumerateMetadata(MD->getOperand(i));
203 void ValueEnumerator::EnumerateMetadata(const Value *MD) {
204 assert((isa<MDNode>(MD) || isa<MDString>(MD)) && "Invalid metadata kind");
207 EnumerateType(MD->getType())
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.cpp 79 if (MDNode *MD = dyn_cast<MDNode>(*OI))
80 if (MD->isFunctionLocal() && MD->getFunction())
184 void ValueEnumerator::EnumerateNamedMDNode(const NamedMDNode *MD) {
185 for (unsigned i = 0, e = MD->getNumOperands(); i != e; ++i)
186 EnumerateMetadata(MD->getOperand(i));
203 void ValueEnumerator::EnumerateMetadata(const Value *MD) {
204 assert((isa<MDNode>(MD) || isa<MDString>(MD)) && "Invalid metadata kind");
207 EnumerateType(MD->getType())
    [all...]
  /external/qemu/memcheck/
memcheck_logging.h 28 #define MD(...) VERBOSE_PRINT(memcheck, __VA_ARGS__)
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCSelfInitChecker.cpp 62 static bool isInitializationMethod(const ObjCMethodDecl *MD);
313 const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(ND);
314 if (!MD)
316 if (!isInitializationMethod(MD))
321 ASTContext &Ctx = MD->getASTContext();
323 ObjCInterfaceDecl *ID = MD->getClassInterface()->getSuperClass();
351 static bool isInitializationMethod(const ObjCMethodDecl *MD) {
352 return MD->getMethodFamily() == OMF_init;
CheckObjCDealloc.cpp 157 ObjCMethodDecl *MD = 0;
164 MD = *I;
172 if (!MD) { // No dealloc found.
187 if (MD->getBody() && !scan_dealloc(MD->getBody(), S)) {
237 if (scan_ivar_release(MD->getBody(), ID, PD, RS, SelfII, Ctx)
  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 53 if (const MDNode *MD = dyn_cast<MDNode>(V)) {
56 if (!MD->isFunctionLocal() && (Flags & RF_NoModuleLevelChanges))
64 for (unsigned i = 0, e = MD->getNumOperands(); i != e; ++i) {
65 Value *OP = MD->getOperand(i);
70 Elts.reserve(MD->getNumOperands());
72 Value *Op = MD->getOperand(i);
  /external/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp 44 MemoryDependenceAnalysis *MD;
47 DSE() : FunctionPass(ID), AA(0), MD(0) {
53 MD = &getAnalysis<MemoryDependenceAnalysis>();
63 AA = 0; MD = 0;
105 MemoryDependenceAnalysis &MD,
120 MD.removeInstruction(DeadInst);
440 MemDepResult InstDep = MD->getDependency(Inst);
460 DeleteDeadInstruction(SI, *MD);
503 DeleteDeadInstruction(DepWrite, *MD);
529 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);
688 MD->removeInstruction(C);
691 MD->removeInstruction(cpy);
738 MD->getPointerDependencyFrom(AA.getLocationForSource(MDep),
768 MD->removeInstruction(M)
    [all...]
  /external/clang/lib/ARCMigrate/
TransEmptyStatementsAndDealloc.cpp 211 ObjCMethodDecl *MD = *MI;
212 if (MD->getMethodFamily() == OMF_dealloc) {
213 if (MD->hasBody() &&
214 isBodyEmpty(MD->getCompoundBody(), Ctx, pass.ARCMTMacroLocs)) {
216 TA.remove(MD->getSourceRange());

Completed in 1068 milliseconds

1 2 3 4 5 6