Searched refs:CRD (Results 1 - 9 of 9) sorted by relevance

/external/pcre/dist2/src/sljit/
H A DsljitNativePPC_32.c138 FAIL_IF(push_inst(compiler, CMPI | CRD(0) | A(src1) | compiler->imm));
140 return push_inst(compiler, CMPLI | CRD(4) | A(src1) | compiler->imm);
145 FAIL_IF(push_inst(compiler, CMPL | CRD(4) | A(src1) | B(src2)));
147 FAIL_IF(push_inst(compiler, CMP | CRD(0) | A(src1) | B(src2)));
153 FAIL_IF(push_inst(compiler, CMPL | CRD(4) | A(src1) | B(src2)));
H A DsljitNativePPC_64.c260 FAIL_IF(push_inst(compiler, CMPI | CRD(0 | ((flags & ALT_SIGN_EXT) ? 0 : 1)) | A(src1) | compiler->imm));
262 return push_inst(compiler, CMPLI | CRD(4 | ((flags & ALT_SIGN_EXT) ? 0 : 1)) | A(src1) | compiler->imm);
267 FAIL_IF(push_inst(compiler, CMPL | CRD(4 | ((flags & ALT_SIGN_EXT) ? 0 : 1)) | A(src1) | B(src2)));
269 return push_inst(compiler, CMP | CRD(0 | ((flags & ALT_SIGN_EXT) ? 0 : 1)) | A(src1) | B(src2));
276 FAIL_IF(push_inst(compiler, CMPL | CRD(4 | ((flags & ALT_SIGN_EXT) ? 0 : 1)) | A(src1) | B(src2)));
H A DsljitNativePPC_common.c126 #define CRD(d) ((d) << 21) macro
1876 return push_inst(compiler, FCMPU | CRD(4) | FA(src1) | FB(src2));
/external/clang/lib/CodeGen/
H A DCodeGenTypes.cpp133 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
134 for (const auto &I : CRD->bases())
690 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
691 for (const auto &I : CRD->bases()) {
/external/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp1925 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD))
1926 return CRD->getNumBases() == 0;
/external/clang/lib/AST/
H A DASTContext.cpp95 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(D)) {
96 if (CRD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
294 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(D)) {
296 if (const ClassTemplateDecl *CTD = CRD->getDescribedClassTemplate())
302 dyn_cast<ClassTemplateSpecializationDecl>(CRD)) {
316 CRD->getMemberSpecializationInfo())
/external/clang/lib/Sema/
H A DSemaDeclAttr.cpp457 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
459 if (CRD->lookupInBases([](const CXXBaseSpecifier *BS, CXXBasePath &) {
H A DSemaExpr.cpp11791 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
11792 bool IsSafe = LangOpts.CPlusPlus11? CRD->isStandardLayout() : CRD->isPOD();
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp3077 Value *CRD = B.CreateSExtOrTrunc(CountRoundDown, local
3080 EndValue = II.transform(B, CRD, PSE.getSE(), DL);
3160 // that is Start + (Step * (CRD - 1)).

Completed in 344 milliseconds