/external/llvm/test/Object/ |
D | nm-universal-binary.test | 12 RUN: | FileCheck %s -check-prefix CHECK-AR 14 RUN: | FileCheck %s -check-prefix CHECK-64-AR 16 RUN: | FileCheck %s -check-prefix CHECK-AR-i386 18 RUN: | FileCheck %s -check-prefix CHECK-AR-o 40 CHECK-AR: macho-universal-archive.x86_64.i386(hello.o) (for architecture x86_64): 41 CHECK-AR: 0000000000000068 s EH_frame0 42 CHECK-AR: 000000000000003b s L_.str 43 CHECK-AR: 0000000000000000 T _main 44 CHECK-AR: 0000000000000080 S _main.eh 45 CHECK-AR: U _printf [all …]
|
/external/clang/unittests/AST/ |
D | CommentParser.cpp | 122 ::testing::AssertionResult AR = GetChildAt(C, Idx, TC); in HasTextAt() 123 if (!AR) in HasTextAt() 124 return AR; in HasTextAt() 143 ::testing::AssertionResult AR = GetChildAt(C, Idx, TC); in HasTextWithNewlineAt() 144 if (!AR) in HasTextWithNewlineAt() 145 return AR; in HasTextWithNewlineAt() 166 ::testing::AssertionResult AR = GetChildAt(C, Idx, BCC); in HasBlockCommandAt() 167 if (!AR) in HasBlockCommandAt() 168 return AR; in HasBlockCommandAt() 191 ::testing::AssertionResult AR = GetChildAt(C, Idx, PCC); in HasParamCommandAt() [all …]
|
/external/pcre/dist2/ |
D | ar-lib | 95 $AR -NOLOGO $operation:"$member" "$archive" || exit $? 121 AR=$1 135 AR="$AR $1" 204 $AR -NOLOGO -REMOVE:"$file" "$archive" || exit $? 222 $AR -NOLOGO -EXTRACT:"$file" "$archive" || exit $? 227 $AR -NOLOGO -LIST "$archive" | sed -e 's/\\/\\\\/g' | while read member 229 $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $? 260 $AR -NOLOGO -OUT:"$archive" "$orig_archive" "$@" || exit $? 262 $AR -NOLOGO -OUT:"$archive" "$@" || exit $? 269 $AR -NOLOGO -LIST "$archive" || exit $?
|
/external/ImageMagick/config/ |
D | ar-lib | 95 $AR -NOLOGO $operation:"$member" "$archive" || exit $? 121 AR=$1 135 AR="$AR $1" 204 $AR -NOLOGO -REMOVE:"$file" "$archive" || exit $? 222 $AR -NOLOGO -EXTRACT:"$file" "$archive" || exit $? 227 $AR -NOLOGO -LIST "$archive" | sed -e 's/\\/\\\\/g' | while read member 229 $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $? 260 $AR -NOLOGO -OUT:"$archive" "$orig_archive" "$@" || exit $? 262 $AR -NOLOGO -OUT:"$archive" "$@" || exit $? 269 $AR -NOLOGO -LIST "$archive" || exit $?
|
/external/libnetfilter_conntrack/build-aux/ |
D | ar-lib | 95 $AR -NOLOGO $operation:"$member" "$archive" || exit $? 121 AR=$1 135 AR="$AR $1" 204 $AR -NOLOGO -REMOVE:"$file" "$archive" || exit $? 222 $AR -NOLOGO -EXTRACT:"$file" "$archive" || exit $? 227 $AR -NOLOGO -LIST "$archive" | sed -e 's/\\/\\\\/g' | while read member 229 $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $? 260 $AR -NOLOGO -OUT:"$archive" "$orig_archive" "$@" || exit $? 262 $AR -NOLOGO -OUT:"$archive" "$@" || exit $? 269 $AR -NOLOGO -LIST "$archive" || exit $?
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | IVUsers.cpp | 51 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { in isInteresting() local 54 if (AR->getLoop() == L) in isInteresting() 55 return AR->isAffine() || in isInteresting() 57 SE->getSCEVAtScope(AR, LI->getLoopFor(I->getParent())) != AR); in isInteresting() 61 return isInteresting(AR->getStart(), I, L, SE, LI) && in isInteresting() 62 !isInteresting(AR->getStepRecurrence(*SE), I, L, SE, LI); in isInteresting() 242 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { in findAddRecForLoop() local 243 if (AR->getLoop() == L) in findAddRecForLoop() 244 return AR; in findAddRecForLoop() 245 return findAddRecForLoop(AR->getStart(), L); in findAddRecForLoop() [all …]
|
D | ScalarEvolutionNormalization.cpp | 107 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { in TransformImpl() local 110 const Loop *L = AR->getLoop(); in TransformImpl() 114 for (SCEVNAryExpr::op_iterator I = AR->op_begin(), E = AR->op_end(); in TransformImpl() 125 TransformSubExpr(AR->getStepRecurrence(SE), in TransformImpl() 142 TransformSubExpr(AR->getStepRecurrence(SE), in TransformImpl()
|
D | ScalarEvolution.cpp | 155 const SCEVAddRecExpr *AR = cast<SCEVAddRecExpr>(this); in print() local 156 OS << "{" << *AR->getOperand(0); in print() 157 for (unsigned i = 1, e = AR->getNumOperands(); i != e; ++i) in print() 158 OS << ",+," << *AR->getOperand(i); in print() 160 if (AR->getNoWrapFlags(FlagNUW)) in print() 162 if (AR->getNoWrapFlags(FlagNSW)) in print() 164 if (AR->getNoWrapFlags(FlagNW) && in print() 165 !AR->getNoWrapFlags((NoWrapFlags)(FlagNUW | FlagNSW))) in print() 167 WriteAsOperand(OS, AR->getLoop()->getHeader(), /*PrintType=*/false); in print() 923 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Op)) in getZeroExtendExpr() local [all …]
|
/external/llvm/lib/Analysis/ |
D | IVUsers.cpp | 56 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { in isInteresting() local 59 if (AR->getLoop() == L) in isInteresting() 60 return AR->isAffine() || in isInteresting() 62 SE->getSCEVAtScope(AR, LI->getLoopFor(I->getParent())) != AR); in isInteresting() 66 return isInteresting(AR->getStart(), I, L, SE, LI) && in isInteresting() 67 !isInteresting(AR->getStepRecurrence(*SE), I, L, SE, LI); in isInteresting() 338 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { in findAddRecForLoop() local 339 if (AR->getLoop() == L) in findAddRecForLoop() 340 return AR; in findAddRecForLoop() 341 return findAddRecForLoop(AR->getStart(), L); in findAddRecForLoop() [all …]
|
D | ScalarEvolutionNormalization.cpp | 107 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { in TransformImpl() local 110 const Loop *L = AR->getLoop(); in TransformImpl() 114 for (SCEVNAryExpr::op_iterator I = AR->op_begin(), E = AR->op_end(); in TransformImpl() 132 if (AR->isAffine() && in TransformImpl() 135 TransformSubExpr(AR->getStepRecurrence(SE), in TransformImpl() 166 TransformSubExpr(AR->getStepRecurrence(SE), in TransformImpl() 181 TransformSubExpr(AR->getStepRecurrence(SE), in TransformImpl()
|
D | ScalarEvolution.cpp | 164 const SCEVAddRecExpr *AR = cast<SCEVAddRecExpr>(this); in print() local 165 OS << "{" << *AR->getOperand(0); in print() 166 for (unsigned i = 1, e = AR->getNumOperands(); i != e; ++i) in print() 167 OS << ",+," << *AR->getOperand(i); in print() 169 if (AR->hasNoUnsignedWrap()) in print() 171 if (AR->hasNoSignedWrap()) in print() 173 if (AR->hasNoSelfWrap() && in print() 174 !AR->getNoWrapFlags((NoWrapFlags)(FlagNUW | FlagNSW))) in print() 176 AR->getLoop()->getHeader()->printAsOperand(OS, /*PrintType=*/false); in print() 1241 static const SCEV *getPreStartForExtend(const SCEVAddRecExpr *AR, Type *Ty, in getPreStartForExtend() argument [all …]
|
D | LoopAccessAnalysis.cpp | 165 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Sc); in insert() local 166 assert(AR && "Invalid addrec expression"); in insert() 169 ScStart = AR->getStart(); in insert() 170 ScEnd = AR->evaluateAtIteration(Ex, *SE); in insert() 171 const SCEV *Step = AR->getStepRecurrence(*SE); in insert() 183 ScEnd = SE->getUMaxExpr(AR->getStart(), ScEnd); in insert() 564 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(PtrScev); in hasComputableBounds() local 565 if (!AR) in hasComputableBounds() 568 return AR->isAffine(); in hasComputableBounds() 822 static bool isNoWrapAddRec(Value *Ptr, const SCEVAddRecExpr *AR, in isNoWrapAddRec() argument [all …]
|
D | LoopUnrollAnalyzer.cpp | 39 auto *AR = dyn_cast<SCEVAddRecExpr>(S); in simplifyInstWithSCEV() local 40 if (!AR || AR->getLoop() != L) in simplifyInstWithSCEV() 43 const SCEV *ValueAtIteration = AR->evaluateAtIteration(IterationNumber, SE); in simplifyInstWithSCEV()
|
/external/elfutils/src/ |
D | make-debug-archive.in | 16 AR=${AR:-@AR@} 129 (cd "$outdir" && $LS | $XARGS $AR cq "$new_archive") &&
|
/external/vixl/tools/ |
D | cross_build_gcc.sh | 35 export AR=$1ar 45 if [ ! -x "`which $AR`" ]; then 46 echo "Error: $AR does not exist or is not executable."
|
/external/llvm/unittests/ADT/ |
D | ArrayRefTest.cpp | 114 ArrayRef<char> AR((const char *)0x10000, SIZE_MAX - 0x10000); in TEST() local 115 EXPECT_EQ(1U, AR.slice(AR.size() - 1).size()); in TEST() 116 EXPECT_EQ(AR.size() - 1, AR.slice(1, AR.size() - 1).size()); in TEST()
|
/external/v8/tools/ |
D | cross_build_gcc.sh | 36 export AR=$1ar 47 if [ ! -x "$AR" ]; then 48 echo "Error: $AR does not exist or is not executable."
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
D | IndVarSimplify.cpp | 614 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) in isSafe() local 615 return AR->isAffine(); in isSafe() 657 const SCEV *AR = IU->getReplacementExpr(*UI); in RewriteIVExpressions() local 661 const SCEV *ExitVal = SE->getSCEVAtScope(AR, L->getParentLoop()); in RewriteIVExpressions() 663 AR = ExitVal; in RewriteIVExpressions() 672 if (!isSafe(AR, L, SE)) in RewriteIVExpressions() 683 Value *NewVal = Rewriter.expandCodeFor(AR, UseTy, InsertPt); in RewriteIVExpressions() 685 DEBUG(dbgs() << "INDVARS: Rewrote IV '" << *AR << "' " << *Op << '\n' in RewriteIVExpressions() 1461 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(SE->getSCEV(Phi)); in FindLoopCounter() local 1462 if (!AR || AR->getLoop() != L || !AR->isAffine()) in FindLoopCounter() [all …]
|
D | LoopStrengthReduce.cpp | 271 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) in DoInitialMatch() local 272 if (!AR->getStart()->isZero()) { in DoInitialMatch() 273 DoInitialMatch(AR->getStart(), L, Good, Bad, SE); in DoInitialMatch() 274 DoInitialMatch(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0), in DoInitialMatch() 275 AR->getStepRecurrence(SE), in DoInitialMatch() 277 AR->getLoop(), SCEV::FlagAnyWrap), in DoInitialMatch() 414 static bool isAddRecSExtable(const SCEVAddRecExpr *AR, ScalarEvolution &SE) { in isAddRecSExtable() argument 416 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(AR->getType()) + 1); in isAddRecSExtable() 417 return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideTy)); in isAddRecSExtable() 475 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) { in getExactSDiv() local [all …]
|
/external/zlib/src/ |
D | configure | 38 AR=${AR-"${CROSS_PREFIX}ar"} 39 test -n "${CROSS_PREFIX}" && echo Using ${AR} | tee -a configure.log 41 AR=${AR-"ar"} 42 test -n "${CROSS_PREFIX}" && echo Using ${AR} | tee -a configure.log 221 AR="libtool" 223 AR="/usr/bin/libtool" 263 AR="cc" 746 echo AR = $AR >> configure.log 787 /^AR *=/s#=.*#=$AR# 815 /^AR *=/s#=.*#=$AR#
|
/external/llvm/unittests/Analysis/ |
D | LoopPassManagerTest.cpp | 73 if (auto *AR = AM.getCachedResult<TestLoopAnalysis>(L)) in run() local 74 AnalyzedBlockCount += AR->BlockCount; in run() 77 auto &AR = AM.getResult<TestLoopAnalysis>(L); in run() local 78 AnalyzedBlockCount += AR.BlockCount; in run()
|
/external/ltp/testscripts/build/ |
D | build_test_function.sh | 187 export AR="$AR" 198 for i in AR ARFLAGS CC CFLAGS CXX CXXFLAGS LD LDFLAGS NM; do
|
/external/iptables/extensions/ |
D | GNUmakefile.in | 14 AR = @AR@ macro 35 AM_VERBOSE_AR = @echo " AR " $@; 130 ${AM_VERBOSE_AR} ${AR} crs $@ $^; 133 ${AM_VERBOSE_AR} ${AR} crs $@ $^; 136 ${AM_VERBOSE_AR} ${AR} crs $@ $^; 139 ${AM_VERBOSE_AR} ${AR} crs $@ $^; 142 ${AM_VERBOSE_AR} ${AR} crs $@ $^;
|
/external/zlib/src/win32/ |
D | Makefile.bor | 18 AR = tlib 86 $(AR) $(ZLIB_LIB) $(OBJP1) 87 $(AR) $(ZLIB_LIB) $(OBJP2) 88 $(AR) $(ZLIB_LIB) $(OBJPA)
|
/external/llvm/lib/Transforms/Utils/ |
D | LoopUtils.cpp | 744 const auto *AR = dyn_cast<SCEVAddRecExpr>(PhiScev); in isInductionPHI() local 747 if (Assume && !AR) in isInductionPHI() 748 AR = PSE.getAsAddRec(Phi); in isInductionPHI() 750 if (!AR) { in isInductionPHI() 755 return isInductionPHI(Phi, PSE.getSE(), D, AR); in isInductionPHI() 769 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(PhiScev); in isInductionPHI() local 771 if (!AR) { in isInductionPHI() 776 assert(AR->getLoop()->getHeader() == Phi->getParent() && in isInductionPHI() 779 Phi->getIncomingValueForBlock(AR->getLoop()->getLoopPreheader()); in isInductionPHI() 780 const SCEV *Step = AR->getStepRecurrence(*SE); in isInductionPHI() [all …]
|