/external/pcre/dist/sljit/ |
D | sljitNativeARM_64.c | 53 #define RN(rn) (reg_map[rn] << 5) macro 432 return push_inst(compiler, (ORRI ^ W_OP) | RD(dst) | RN(TMP_ZERO) | bitmask); in load_immediate() 437 return push_inst(compiler, ORRI | RD(dst) | RN(TMP_ZERO) | bitmask); in load_immediate() 565 return push_inst(compiler, ((op == SLJIT_ADD ? ADDI : SUBI) ^ inv_bits) | RD(dst) | RN(reg)); in emit_op_imm() 569 return push_inst(compiler, (ADDI ^ inv_bits) | RD(dst) | RN(reg) | (imm << 10)); in emit_op_imm() 574 return push_inst(compiler, (SUBI ^ inv_bits) | RD(dst) | RN(reg) | (nimm << 10)); in emit_op_imm() 578 …return push_inst(compiler, (ADDI ^ inv_bits) | RD(dst) | RN(reg) | ((imm >> 12) << 10) | (1 << 22)… in emit_op_imm() 582 …return push_inst(compiler, (SUBI ^ inv_bits) | RD(dst) | RN(reg) | ((nimm >> 12) << 10) | (1 << 22… in emit_op_imm() 585 …FAIL_IF(push_inst(compiler, (ADDI ^ inv_bits) | RD(dst) | RN(reg) | ((imm >> 12) << 10) | (1 << 22… in emit_op_imm() 586 return push_inst(compiler, (ADDI ^ inv_bits) | RD(dst) | RN(dst) | ((imm & 0xfff) << 10)); in emit_op_imm() [all …]
|
/external/v8/test/cctest/ |
D | test-assembler-ppc.cc | 534 TestRoundingMode(s32_f64, RN, 0, 0); 535 TestRoundingMode(s32_f64, RN, 0.5, 0); 536 TestRoundingMode(s32_f64, RN, -0.5, 0); 537 TestRoundingMode(s32_f64, RN, 1.5, 2); 538 TestRoundingMode(s32_f64, RN, -1.5, -2); 539 TestRoundingMode(s32_f64, RN, 123.7, 124); 540 TestRoundingMode(s32_f64, RN, -123.7, -124); 541 TestRoundingMode(s32_f64, RN, 123456.2, 123456); 542 TestRoundingMode(s32_f64, RN, -123456.2, -123456); 543 TestRoundingMode(s32_f64, RN, static_cast<double>(kMaxInt), kMaxInt); [all …]
|
D | test-assembler-arm.cc | 518 TestRoundingMode(s32_f64, RN, 0, 0); 519 TestRoundingMode(s32_f64, RN, 0.5, 0); 520 TestRoundingMode(s32_f64, RN, -0.5, 0); 521 TestRoundingMode(s32_f64, RN, 1.5, 2); 522 TestRoundingMode(s32_f64, RN, -1.5, -2); 523 TestRoundingMode(s32_f64, RN, 123.7, 124); 524 TestRoundingMode(s32_f64, RN, -123.7, -124); 525 TestRoundingMode(s32_f64, RN, 123456.2, 123456); 526 TestRoundingMode(s32_f64, RN, -123456.2, -123456); 527 TestRoundingMode(s32_f64, RN, static_cast<double>(kMaxInt), kMaxInt); [all …]
|
/external/valgrind/none/tests/arm/ |
D | vfp.c | 77 #define TESTINSN_vmov_core_single(instruction, RN, SD, SDval) \ argument 83 "mov " #RN ", #0\n\t" \ 86 "str " #RN ", [%0]\n\t" \ 89 : #SD, #RN, "memory" \ 91 printf("%s :: "#RN" 0x%08x\n", \ 95 #define TESTINSN_vmov_single_core(instruction, SD, RN, RNval) \ argument 99 printf(#RN" 0x%08x\t", RNval); \ 101 "mov " #RN ", %1\n\t" \ 107 : #SD, #RN, "memory" \ 134 #define TESTINSN_vmov_2single_2core(instruction, SD1, SD2, RN, RM, RNval, RMval) \ argument [all …]
|
/external/llvm/include/llvm/CodeGen/ |
D | MachineRegionInfo.h | 60 bool operator==(const MachineRegion &RN) const { 61 return this == reinterpret_cast<const MachineRegionNode*>(&RN); 72 bool operator==(const MachineRegionNode &RN) const { 73 return &RN == reinterpret_cast<const MachineRegionNode*>(this);
|
/external/ImageMagick/PerlMagick/t/reference/write/filter/ |
D | OilPaint.miff | 43 …RN�RN�A<�A<�A<�:5�E<�:5�:5�,:�65�/4�/4�/4�/4�/-�Fh�<d�<d�<d�<dt�Xt�Xt�Xt�Xy�[{�Z{�Z��h��h~�e\K6YL<…
|
D | Sample.miff | 43 …RN�A<�40�,:�63�2/�.2�5)����bw�AdL_>u�^o�Wx�^y�[��ae|V[M=_RB`R@\OBww�cj�zz����諸���lg�6:�63�OA�1'�><…
|
/external/llvm/lib/Analysis/ |
D | ScalarEvolutionNormalization.cpp | 217 const SCEV *RN = TransformSubExpr(RO, User, OperandValToReplace); in TransformImpl() local 218 if (LO != LN || RO != RN) in TransformImpl() 219 return SE.getUDivExpr(LN, RN); in TransformImpl()
|
/external/eigen/Eigen/src/SparseLU/ |
D | SparseLU_gemm_kernel.h | 35 RN = 2, // register blocking in sparselu_gemm() enumerator 41 Index n_end = (n/RN)*RN; // number of columns of B-C suitable for processing RN columns at once in sparselu_gemm() 65 for(Index j=0; j<n_end; j+=RN) in sparselu_gemm()
|
/external/llvm/utils/TableGen/ |
D | CodeGenDAGPatterns.h | 665 Record *getResult(unsigned RN) const { in getResult() argument 666 assert(RN < Results.size()); in getResult() 667 return Results[RN]; in getResult() 675 Record *getImpResult(unsigned RN) const { in getImpResult() argument 676 assert(RN < ImpResults.size()); in getImpResult() 677 return ImpResults[RN]; in getImpResult()
|
/external/valgrind/none/tests/arm64/ |
D | memory.c | 45 #define TESTINST2_hide2(instruction, RNval, RD, RN, carryin) \ argument 52 "mov " #RN ",%2;" \ 58 : #RD, #RN, "cc", "memory", "x28" \ 72 #define TESTINST3_hide2and3(instruction, RMval, RNval, RD, RM, RN, carryin) \ argument 80 "mov " #RN ",%3;" \ 86 : #RD, #RM, #RN, "cc", "memory" \
|
/external/llvm/include/llvm/Analysis/ |
D | RegionInfo.h | 821 bool operator==(const Region &RN) const { 822 return this == reinterpret_cast<const RegionNode *>(&RN); 832 bool operator==(const RegionNode &RN) const { 833 return &RN == reinterpret_cast<const RegionNode *>(this);
|
/external/llvm/lib/Transforms/Utils/ |
D | CodeExtractor.cpp | 112 buildExtractionBlockSet(const RegionNode &RN) { in buildExtractionBlockSet() argument 113 if (!RN.isSubRegion()) in buildExtractionBlockSet() 115 return buildExtractionBlockSet(RN.getNodeAs<BasicBlock>()); in buildExtractionBlockSet() 117 const Region &R = *RN.getNodeAs<Region>(); in buildExtractionBlockSet() 135 CodeExtractor::CodeExtractor(DominatorTree &DT, const RegionNode &RN, in CodeExtractor() argument 138 Blocks(buildExtractionBlockSet(RN)), NumExitBlocks(~0U) {} in CodeExtractor()
|
/external/llvm/lib/Target/PowerPC/InstPrinter/ |
D | PPCInstPrinter.cpp | 45 std::string RN(RegName); in printRegName() local 47 RN[0] = 'f'; in printRegName() 48 OS << RN; in printRegName()
|
/external/llvm/include/llvm/Transforms/Utils/ |
D | CodeExtractor.h | 82 CodeExtractor(DominatorTree &DT, const RegionNode &RN,
|
/external/ImageMagick/PerlMagick/t/reference/filter/ |
D | Sample.miff | 15 …RN�A<�40�,:�63�2/�.2�5)����bw�AdL_>u�^o�Wx�^y�[��ae|V[M=_RB`R@\OBww�cj�zz����諸���lg�6:�63�OA�1'�><…
|
D | Crop.miff | 15 …RN�53�A<�E<�40�,:�5?�63�4*�2/�.2�/-�5)�<3����bw�>c�Ad\;/L_>u�^{�co�Wr�Xx�^y�[w�V��a��he|V\OBcYaww�…
|
/external/v8/src/ppc/ |
D | constants-ppc.h | 435 RN = 0, // Round to Nearest. enumerator 441 kRoundToNearest = RN,
|
/external/clang/lib/AST/ |
D | DeclarationName.cpp | 99 unsigned LN = LHSSelector.getNumArgs(), RN = RHSSelector.getNumArgs(); in compare() local 100 for (unsigned I = 0, N = std::min(LN, RN); I != N; ++I) { in compare() 109 return compareInt(LN, RN); in compare()
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTX.h | 129 RN, enumerator
|
/external/v8/src/arm/ |
D | constants-arm.h | 405 RN = 0 << 22, // Round to Nearest. enumerator 411 kRoundToNearest = RN,
|
/external/libvpx/libvpx/vp8/common/arm/armv6/ |
D | simpleloopfilter_v6.asm | 49 src RN r0 50 pstep RN r1
|
/external/v8/src/mips/ |
D | constants-mips.h | 786 RN = 0 << 0, // Round to Nearest. enumerator 792 kRoundToNearest = RN, 797 mode_round = RN,
|
/external/llvm/include/llvm/Support/ |
D | GenericDomTree.h | 400 const DomTreeNodeBase<NodeT> *RN = getNode(R); in getDescendants() local 401 if (!RN) in getDescendants() 404 WL.push_back(RN); in getDescendants()
|
/external/v8/src/mips64/ |
D | constants-mips64.h | 819 RN = 0 << 0, // Round to Nearest. enumerator 825 kRoundToNearest = RN, 830 mode_round = RN,
|