/external/pdfium/core/src/fxge/agg/agg23/ |
D | agg_pixfmt_gray.h | 42 template<class Blender, unsigned Step = 1, unsigned Offset = 0> 95 value_type* p = (value_type*)m_rbuf->row(y) + x * Step + Offset; in pixel() 103 x * Step * sizeof(value_type) + in row() 110 x * Step * sizeof(value_type) + in span() 115 *((value_type*)m_rbuf->row(y) + x * Step + Offset) = c.v; in copy_pixel() 119 copy_or_blend_pix((value_type*)m_rbuf->row(y) + x * Step + Offset, c, cover); in blend_pixel() 125 value_type* p = (value_type*)m_rbuf->row(y) + x * Step + Offset; in copy_hline() 128 p += Step; in copy_hline() 137 value_type* p = (value_type*)m_rbuf->row(y) + x * Step + Offset; in blend_hline() 142 p += Step; in blend_hline() [all …]
|
/external/v8/tools/push-to-trunk/ |
D | push_to_trunk.py | 40 class Preparation(Step): 55 class FreshBranch(Step): 62 class PreparePushRevision(Step): 74 class DetectLastPush(Step): 115 class GetCurrentBleedingEdgeVersion(Step): 127 class IncrementVersion(Step): 171 class PrepareChangeLog(Step): 224 class EditChangeLog(Step): 247 class StragglerCommits(Step): 256 class SquashCommits(Step): [all …]
|
D | bump_up_version.py | 31 class Preparation(Step): 49 class GetCurrentBleedingEdgeVersion(Step): 66 class LastChangeBailout(Step): 76 class FetchLKGR(Step): 87 class GetLKGRVersion(Step): 113 class LKGRVersionUpToDateBailout(Step): 130 class GetTrunkVersion(Step): 142 class CalculateVersion(Step): 173 class CheckTreeStatus(Step): 185 class ChangeVersion(Step):
|
D | merge_to_branch.py | 35 class Preparation(Step): 58 class CreateBranch(Step): 66 class SearchArchitecturePorts(Step): 101 class FindGitRevisions(Step): 137 class ApplyPatches(Step): 151 class PrepareVersion(Step): 161 class IncrementVersion(Step): 186 class CommitLocal(Step): 205 class CommitRepository(Step): 215 class PrepareSVN(Step): [all …]
|
D | chromium_roll.py | 13 class Preparation(Step): 21 class DetectLastPush(Step): 32 class SwitchChromium(Step): 48 class UpdateChromiumCheckout(Step): 63 class UploadCL(Step): 97 class SwitchV8(Step): 104 class CleanUp(Step):
|
D | auto_push.py | 41 class Preparation(Step): 49 class CheckAutoPushSettings(Step): 61 class CheckTreeStatus(Step): 73 class FetchLKGR(Step): 82 class CheckLastPush(Step): 105 class PushToTrunk(Step):
|
D | auto_tag.py | 12 class Preparation(Step): 22 class GetTags(Step): 36 class GetOldestUntaggedVersion(Step): 92 class GetLKGRs(Step): 102 class CalculateTagRevision(Step): 150 class MakeTag(Step): 159 class CleanUp(Step):
|
D | auto_roll.py | 16 class CheckActiveRoll(Step): 41 class DetectLastPush(Step): 50 class DetectLastRoll(Step): 68 class CheckClusterFuzz(Step): 86 class RollChromium(Step):
|
D | releases.py | 115 class Preparation(Step): 123 class RetrieveV8Releases(Step): 265 class SwitchChromium(Step): 278 class UpdateChromiumCheckout(Step): 296 class RetrieveChromiumV8Releases(Step): 349 class RietrieveChromiumBranches(Step): 404 class CleanUp(Step): 413 class WriteOutput(Step):
|
/external/clang/ |
D | INSTALL.txt | 8 // Step 1: Organization 21 // Step 2: Configure and Build LLVM 32 // Step 3: (Optional) Verify Your Build 40 // Step 4: Install Clang
|
/external/lldb/utils/vim-lldb/doc/ |
D | lldb.txt | 70 :Lstep Step into the current function call. 73 :Lstepin Step into the current function call. 76 :Lstepinst Step one instruction. 79 :Lstepinstover Step one instruction, but skip over jump or call 83 :Lnext Step to the next line. 86 :Lfinish Step out of the current function.
|
/external/clang/lib/Sema/ |
D | SemaInit.cpp | 2781 void InitializationSequence::Step::Destroy() { in Destroy() 2878 Step S; in AddAddressOverloadResolutionStep() 2889 Step S; in AddDerivedToBaseCastStep() 2901 Step S; in AddReferenceBindingStep() 2908 Step S; in AddExtraneousCopyToTemporary() 2919 Step S; in AddUserConversionStep() 2930 Step S; in AddQualificationConversionStep() 2948 Step S; in AddAtomicConversionStep() 2957 Step S; in AddLValueToRValueStep() 2966 Step S; in AddConversionSequenceStep() [all …]
|
/external/libphonenumber/demo/war/ |
D | phonenumberparser.jsp | 10 <h2>Step 1</h2> 18 <h2>Step 2</h2> 24 <h2>Step 3</h2>
|
/external/llvm/lib/Analysis/ |
D | ScalarEvolutionExpander.cpp | 266 const SCEV *Step = A->getStepRecurrence(SE); in FactorOutConstant() local 267 const SCEV *StepRem = SE.getConstant(Step->getType(), 0); in FactorOutConstant() 268 if (!FactorOutConstant(Step, StepRem, Factor, SE, DL)) in FactorOutConstant() 275 S = SE.getAddRecExpr(Start, Step, A->getLoop(), in FactorOutConstant() 1036 const SCEV *Step = AR->getStepRecurrence(SE); in IsIncrementNSW() local 1037 const SCEV *OpAfterExtend = SE.getAddExpr(SE.getSignExtendExpr(Step, WideTy), in IsIncrementNSW() 1040 SE.getSignExtendExpr(SE.getAddExpr(AR, Step), WideTy); in IsIncrementNSW() 1050 const SCEV *Step = AR->getStepRecurrence(SE); in IsIncrementNUW() local 1051 const SCEV *OpAfterExtend = SE.getAddExpr(SE.getZeroExtendExpr(Step, WideTy), in IsIncrementNUW() 1054 SE.getZeroExtendExpr(SE.getAddExpr(AR, Step), WideTy); in IsIncrementNUW() [all …]
|
D | ScalarEvolution.cpp | 1156 static const SCEV *getSignedOverflowLimitForStep(const SCEV *Step, in getSignedOverflowLimitForStep() argument 1159 unsigned BitWidth = SE->getTypeSizeInBits(Step->getType()); in getSignedOverflowLimitForStep() 1160 if (SE->isKnownPositive(Step)) { in getSignedOverflowLimitForStep() 1163 SE->getSignedRange(Step).getSignedMax()); in getSignedOverflowLimitForStep() 1165 if (SE->isKnownNegative(Step)) { in getSignedOverflowLimitForStep() 1168 SE->getSignedRange(Step).getSignedMin()); in getSignedOverflowLimitForStep() 1176 static const SCEV *getUnsignedOverflowLimitForStep(const SCEV *Step, in getUnsignedOverflowLimitForStep() argument 1179 unsigned BitWidth = SE->getTypeSizeInBits(Step->getType()); in getUnsignedOverflowLimitForStep() 1183 SE->getUnsignedRange(Step).getUnsignedMax()); in getUnsignedOverflowLimitForStep() 1211 static const SCEV *getOverflowLimitForStep(const SCEV *Step, in getOverflowLimitForStep() [all …]
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 175 ExprAST *Start, *End, *Step, *Body; member in __anon08d88ba30111::ForExprAST 180 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} in ForExprAST() 363 ExprAST *Step = 0; in ParseForExpr() local 366 Step = ParseExpression(); in ParseForExpr() 367 if (Step == 0) in ParseForExpr() 379 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr() 677 if (Step) { in Codegen() 678 StepVal = Step->Codegen(); in Codegen()
|
/external/llvm/lib/TableGen/ |
D | SetTheory.cpp | 170 int Step = 1; in apply() local 176 Step = II->getValue(); in apply() 206 Step *= From <= To ? 1 : -1; in apply() 208 if (Step > 0 && From > To) in apply() 210 else if (Step < 0 && From < To) in apply() 225 From += Step; in apply()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 194 ExprAST *Start, *End, *Step, *Body; member in __anon7d54fca40111::ForExprAST 199 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} in ForExprAST() 394 ExprAST *Step = 0; in ParseForExpr() local 397 Step = ParseExpression(); in ParseForExpr() 398 if (Step == 0) in ParseForExpr() 410 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr() 785 if (Step) { in Codegen() 786 StepVal = Step->Codegen(); in Codegen()
|
/external/vboot_reference/ |
D | README | 95 * Step 0: Build the tools, install them somewhere. 97 * Step 1: Generate RSA root and signing keys. 111 * Step 2: Generate pre-processed public versions of the above keys using 131 * Step 3: Use utility/firmware_utility to generate a signed firmare blob. 152 * Step 4: Verify that this image verifies.
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
D | toy-jit.cpp | 192 ExprAST *Start, *End, *Step, *Body; member in ForExprAST 196 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} in ForExprAST() 388 ExprAST *Step = 0; in ParseForExpr() local 391 Step = ParseExpression(); in ParseForExpr() 392 if (Step == 0) return 0; in ParseForExpr() 402 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr() 845 if (Step) { in Codegen() 846 StepVal = Step->Codegen(); in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 200 ExprAST *Start, *End, *Step, *Body; member in __anonf1d16da50111::ForExprAST 205 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} in ForExprAST() 414 ExprAST *Step = 0; in ParseForExpr() local 417 Step = ParseExpression(); in ParseForExpr() 418 if (Step == 0) in ParseForExpr() 430 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr() 895 if (Step) { in Codegen() 896 StepVal = Step->Codegen(); in Codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | toy-jit.cpp | 177 ExprAST *Start, *End, *Step, *Body; member in ForExprAST 181 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} in ForExprAST() 373 ExprAST *Step = 0; in ParseForExpr() local 376 Step = ParseExpression(); in ParseForExpr() 377 if (Step == 0) return 0; in ParseForExpr() 387 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr() 827 if (Step) { in Codegen() 828 StepVal = Step->Codegen(); in Codegen()
|
/external/eigen/doc/ |
D | A10_Eigen2SupportModes.dox | 25 \li Step 0: start with a project using Eigen 2. 26 \li Step 1: build your project against Eigen 3 with \ref Stage10 "Eigen 2 support stage 10". This m… 27 \li Step 2: build your project against Eigen 3 with \ref Stage20 "Eigen 2 support stage 20". This m… 28 \li Step 3: build your project against Eigen 3 with \ref Stage30 "Eigen 2 support stage 30". This m… 29 \li Step 4: build your project against Eigen 3 with \ref Stage40 "Eigen 2 support stage 40". This m… 30 \li Step 5: build your project against Eigen 3 without any Eigen 2 support mode.
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/ |
D | toy.cpp | 188 std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step, in ForExprAST() 191 Step(std::move(Step)), Body(std::move(Body)) {} in ForExprAST() 196 std::unique_ptr<ExprAST> Start, End, Step, Body; member 402 std::unique_ptr<ExprAST> Step; in ParseForExpr() local 405 Step = ParseExpression(); in ParseForExpr() 406 if (!Step) in ParseForExpr() 419 std::move(Step), std::move(Body)); in ParseForExpr() 952 if (Step) { in IRGen() 953 StepVal = Step->IRGen(C); in IRGen()
|
/external/llvm/examples/Kaleidoscope/Orc/initial/ |
D | toy.cpp | 188 std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step, in ForExprAST() 191 Step(std::move(Step)), Body(std::move(Body)) {} in ForExprAST() 196 std::unique_ptr<ExprAST> Start, End, Step, Body; member 402 std::unique_ptr<ExprAST> Step; in ParseForExpr() local 405 Step = ParseExpression(); in ParseForExpr() 406 if (!Step) in ParseForExpr() 419 std::move(Step), std::move(Body)); in ParseForExpr() 952 if (Step) { in IRGen() 953 StepVal = Step->IRGen(C); in IRGen()
|