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

1 2 3 4 5 6 7

  /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/lib/AST/
VTableBuilder.cpp 131 OverriderInfo getOverrider(const CXXMethodDecl *MD,
133 assert(OverridersMap.count(std::make_pair(MD, BaseOffset)) &&
136 return OverridersMap.lookup(std::make_pair(MD, BaseOffset));
174 const CXXMethodDecl *MD = I->first;
180 assert(SubobjectOffsets.count(std::make_pair(MD->getParent(),
184 CharUnits BaseOffset = SubobjectOffsets[std::make_pair(MD->getParent(),
198 OverriderInfo& Overrider = OverridersMap[std::make_pair(MD, BaseOffset)];
413 const CXXMethodDecl *MD = *I;
415 if (!MD->isVirtual())
418 OverriderInfo Overrider = getOverrider(MD, Base.getBaseOffset())
    [all...]
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();
Mangle.cpp 133 void MangleContext::mangleObjCMethodName(const ObjCMethodDecl *MD,
139 dyn_cast<ObjCContainerDecl>(MD->getDeclContext());
141 OS << (MD->isInstanceMethod() ? '-' : '+') << '[' << CD->getName();
144 OS << ' ' << MD->getSelector().getAsString() << ']';
  /external/clang/tools/libclang/
IndexBody.cpp 75 if (ObjCMethodDecl *MD = E->getMethodDecl())
76 IndexCtx.handleReference(MD, E->getSelectorStartLoc(),
100 if (ObjCMethodDecl *MD = E->getBoxingMethod())
101 IndexCtx.handleReference(MD, E->getLocStart(),
107 if (ObjCMethodDecl *MD = E->getDictWithObjectsMethod())
108 IndexCtx.handleReference(MD, E->getLocStart(),
114 if (ObjCMethodDecl *MD = E->getArrayWithObjectsMethod())
115 IndexCtx.handleReference(MD, E->getLocStart(),
IndexDecl.cpp 205 if (ObjCMethodDecl *MD = D->getGetterMethodDecl())
206 if (MD->getLexicalDeclContext() == D->getLexicalDeclContext())
207 handleObjCMethod(MD);
208 if (ObjCMethodDecl *MD = D->getSetterMethodDecl())
209 if (MD->getLexicalDeclContext() == D->getLexicalDeclContext())
210 handleObjCMethod(MD);
230 if (ObjCMethodDecl *MD = PD->getGetterMethodDecl()) {
231 if (MD->isSynthesized())
232 IndexCtx.handleSynthesizedObjCMethod(MD, D->getLocation(),
235 if (ObjCMethodDecl *MD = PD->getSetterMethodDecl())
    [all...]
  /external/llvm/lib/VMCore/
IntrinsicInst.cpp 57 if (MDNode* MD = cast_or_null<MDNode>(getArgOperand(0)))
58 return MD->getOperand(0);
  /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));
326 const ThunkInfoVectorTy *getThunkInfo(const CXXMethodDecl *MD) {
327 ComputeVTableRelatedInformation(MD->getParent());
329 ThunksMapTy::const_iterator I = Thunks.find(MD);
  /external/clang/include/clang/Serialization/
ASTDeserializationListener.h 50 MacroDefinition *MD) { }
  /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());
DynamicTypePropagation.cpp 44 static void recordFixedType(const MemRegion *Region, const CXXMethodDecl *MD,
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()))
  /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;
  /external/clang/lib/CodeGen/
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...]
CGExprCXX.cpp 26 RValue CodeGenFunction::EmitCXXMemberCall(const CXXMethodDecl *MD,
33 assert(MD->isInstance() &&
40 getContext().getRecordType(MD->getParent()));
45 Args.add(RValue::get(This), MD->getThisType(getContext()));
53 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
60 Callee, ReturnValue, Args, MD);
92 const CXXMethodDecl *MD) {
115 if (MD->hasAttr<FinalAttr>())
120 if (MD->getParent()->hasAttr<FinalAttr>())
174 const CXXMethodDecl *MD = cast<CXXMethodDecl>(ME->getMemberDecl())
    [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);
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...]
CodeGenTypes.h 181 const CGFunctionInfo &arrangeObjCMethodDeclaration(const ObjCMethodDecl *MD);
182 const CGFunctionInfo &arrangeObjCMessageSendSignature(const ObjCMethodDecl *MD,
185 const CGFunctionInfo &arrangeCXXMethodDeclaration(const CXXMethodDecl *MD);
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 81 if (MDNode *MD = dyn_cast<MDNode>(*OI))
82 if (MD->isFunctionLocal() && MD->getFunction())
222 void ValueEnumerator::EnumerateNamedMDNode(const NamedMDNode *MD) {
223 for (unsigned i = 0, e = MD->getNumOperands(); i != e; ++i)
224 EnumerateMetadata(MD->getOperand(i));
241 void ValueEnumerator::EnumerateMetadata(const Value *MD) {
242 assert((isa<MDNode>(MD) || isa<MDString>(MD)) && "Invalid metadata kind");
245 EnumerateType(MD->getType())
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.cpp 83 if (MDNode *MD = dyn_cast<MDNode>(*OI))
84 if (MD->isFunctionLocal() && MD->getFunction())
224 void ValueEnumerator::EnumerateNamedMDNode(const NamedMDNode *MD) {
225 for (unsigned i = 0, e = MD->getNumOperands(); i != e; ++i)
226 EnumerateMetadata(MD->getOperand(i));
243 void ValueEnumerator::EnumerateMetadata(const Value *MD) {
244 assert((isa<MDNode>(MD) || isa<MDString>(MD)) && "Invalid metadata kind");
247 EnumerateType(MD->getType())
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.cpp 83 if (MDNode *MD = dyn_cast<MDNode>(*OI))
84 if (MD->isFunctionLocal() && MD->getFunction())
224 void ValueEnumerator::EnumerateNamedMDNode(const NamedMDNode *MD) {
225 for (unsigned i = 0, e = MD->getNumOperands(); i != e; ++i)
226 EnumerateMetadata(MD->getOperand(i));
243 void ValueEnumerator::EnumerateMetadata(const Value *MD) {
244 assert((isa<MDNode>(MD) || isa<MDString>(MD)) && "Invalid metadata kind");
247 EnumerateType(MD->getType())
    [all...]
  /external/qemu/memcheck/
memcheck_logging.h 28 #define MD(...) VERBOSE_PRINT(memcheck, __VA_ARGS__)
  /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 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...]

Completed in 620 milliseconds

1 2 3 4 5 6 7