/external/XNNPACK/src/math/ |
D | expm1.sollya | 8 print("log2(e) =", round(log2(exp(1)), single, RN)); 9 minus_ln2_hi = round(-log(2), single, RN); 10 minus_ln2_lo = round(-log(2) - minus_ln2_hi, single, RN); 14 print("log2(e) * 8 =", round(log2(exp(1)) * 8, single, RN)); 15 minus_ln2_o8_hi = round(-log(2)/8, single, RN); 16 minus_ln2_o8_lo = round(-log(2)/8 - minus_ln2_o8_hi, single, RN); 20 lb = round(-log(2)/2, single, RN); 21 ub = round(log(2)/2, single, RN); 28 lb = round(-log(2)/2, single, RN); 29 ub = round(log(2)/2, single, RN); [all …]
|
D | exp.sollya | 7 print("log2(e) =", round(log2(exp(1)), single, RN)); 8 minus_ln2_hi = round(-log(2), single, RN); 9 minus_ln2_lo = round(-log(2) - minus_ln2_hi, single, RN); 13 print("log2(e) * 8 =", round(log2(exp(1)) * 8, single, RN)); 14 minus_ln2_o8_hi = round(-log(2)/8, single, RN); 15 minus_ln2_o8_lo = round(-log(2)/8 - minus_ln2_o8_hi, single, RN); 19 lb = round(-log(2)/2, single, RN); 20 ub = round(log(2)/2, single, RN); 27 lb = round(-log(2)/2, single, RN); 28 ub = round(log(2)/2, single, RN); [all …]
|
/external/pcre/dist2/src/sljit/ |
D | sljitNativeARM_64.c | 57 #define RN(rn) (reg_map[rn] << 5) macro 520 return push_inst(compiler, (ORRI ^ W_OP) | RD(dst) | RN(TMP_ZERO) | bitmask); in load_immediate() 528 return push_inst(compiler, ORRI | RD(dst) | RN(TMP_ZERO) | bitmask); in load_immediate() 649 return push_inst(compiler, ((op == SLJIT_ADD ? ADDI : SUBI) ^ inv_bits) | RD(dst) | RN(reg)); in emit_op_imm() 653 return push_inst(compiler, (ADDI ^ inv_bits) | RD(dst) | RN(reg) | (imm << 10)); in emit_op_imm() 658 return push_inst(compiler, (SUBI ^ inv_bits) | RD(dst) | RN(reg) | (nimm << 10)); in emit_op_imm() 662 …return push_inst(compiler, (ADDI ^ inv_bits) | RD(dst) | RN(reg) | ((imm >> 12) << 10) | (1 << 22)… in emit_op_imm() 666 …return push_inst(compiler, (SUBI ^ inv_bits) | RD(dst) | RN(reg) | ((nimm >> 12) << 10) | (1 << 22… in emit_op_imm() 669 …FAIL_IF(push_inst(compiler, (ADDI ^ inv_bits) | RD(dst) | RN(reg) | ((imm >> 12) << 10) | (1 << 22… in emit_op_imm() 670 return push_inst(compiler, (ADDI ^ inv_bits) | RD(dst) | RN(dst) | ((imm & 0xfff) << 10)); in emit_op_imm() [all …]
|
D | sljitNativeARM_32.c | 73 #define RN(rn) (reg_map[rn] << 16) macro 1002 (data_transfer_insts[(type) & 0xf] | ((add) << 23) | RD(target_reg) | RN(base_reg) | (arg)) 1156 return push_inst(compiler, AND | RD(dst) | RN(src2) | SRC2_IMM | 0xff); in emit_single_op() 1201 return push_inst(compiler, CMN | SET_FLAGS | RN(src1) | ((src2 & SRC2_IMM) ? src2 : RM(src2))); in emit_single_op() 1202 …return push_inst(compiler, ADD | (flags & SET_FLAGS) | RD(dst) | RN(src1) | ((src2 & SRC2_IMM) ? s… in emit_single_op() 1206 …return push_inst(compiler, ADC | (flags & SET_FLAGS) | RD(dst) | RN(src1) | ((src2 & SRC2_IMM) ? s… in emit_single_op() 1211 return push_inst(compiler, CMP | SET_FLAGS | RN(src1) | ((src2 & SRC2_IMM) ? src2 : RM(src2))); in emit_single_op() 1213 | RD(dst) | RN(src1) | ((src2 & SRC2_IMM) ? src2 : RM(src2))); in emit_single_op() 1218 | RD(dst) | RN(src1) | ((src2 & SRC2_IMM) ? src2 : RM(src2))); in emit_single_op() 1230 return push_inst(compiler, CMP | SET_FLAGS | RN(TMP_REG1) | RM(dst) | 0xfc0); in emit_single_op() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | StructurizeCFG.cpp | 214 Loop *getAdjustedLoop(RegionNode *RN); 215 unsigned getAdjustedLoopDepth(RegionNode *RN); 315 Loop *StructurizeCFG::getAdjustedLoop(RegionNode *RN) { in getAdjustedLoop() argument 316 if (RN->isSubRegion()) { in getAdjustedLoop() 317 Region *SubRegion = RN->getNodeAs<Region>(); in getAdjustedLoop() 321 return LI->getLoopFor(RN->getEntry()); in getAdjustedLoop() 325 unsigned StructurizeCFG::getAdjustedLoopDepth(RegionNode *RN) { in getAdjustedLoopDepth() argument 326 if (RN->isSubRegion()) { in getAdjustedLoopDepth() 327 Region *SubR = RN->getNodeAs<Region>(); in getAdjustedLoopDepth() 331 return LI->getLoopDepth(RN->getEntry()); in getAdjustedLoopDepth() [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/llvm-project/llvm/include/llvm/CodeGen/ |
D | MachineRegionInfo.h | 56 bool operator==(const MachineRegion &RN) const { 57 return this == reinterpret_cast<const MachineRegionNode *>(&RN); 68 bool operator==(const MachineRegionNode &RN) const { 69 return &RN == reinterpret_cast<const MachineRegionNode *>(this);
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | MachineRegionInfo.h | 56 bool operator==(const MachineRegion &RN) const { 57 return this == reinterpret_cast<const MachineRegionNode *>(&RN); 68 bool operator==(const MachineRegionNode &RN) const { 69 return &RN == reinterpret_cast<const MachineRegionNode *>(this);
|
/external/llvm-project/polly/lib/Analysis/ |
D | ScopBuilder.cpp | 167 static inline BasicBlock *getRegionNodeBasicBlock(RegionNode *RN) { in getRegionNodeBasicBlock() argument 168 return RN->isSubRegion() ? RN->getNodeAs<Region>()->getEntry() in getRegionNodeBasicBlock() 169 : RN->getNodeAs<BasicBlock>(); in getRegionNodeBasicBlock() 174 getRegionNodeSuccessor(RegionNode *RN, Instruction *TI, unsigned idx) { in getRegionNodeSuccessor() argument 175 if (RN->isSubRegion()) { in getRegionNodeSuccessor() 177 return RN->getNodeAs<Region>()->getExit(); in getRegionNodeSuccessor() 182 static bool containsErrorBlock(RegionNode *RN, const Region &R, LoopInfo &LI, in containsErrorBlock() argument 184 if (!RN->isSubRegion()) in containsErrorBlock() 185 return isErrorBlock(*RN->getNodeAs<BasicBlock>(), R, LI, DT); in containsErrorBlock() 186 for (BasicBlock *BB : RN->getNodeAs<Region>()->blocks()) in containsErrorBlock() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | SmallSet.h | 259 template <typename T, unsigned LN, unsigned RN, typename C> 260 bool operator==(const SmallSet<T, LN, C> &LHS, const SmallSet<T, RN, C> &RHS) { 271 template <typename T, unsigned LN, unsigned RN, typename C> 272 bool operator!=(const SmallSet<T, LN, C> &LHS, const SmallSet<T, RN, C> &RHS) {
|
/external/llvm-project/llvm/include/llvm/ADT/ |
D | SmallSet.h | 266 template <typename T, unsigned LN, unsigned RN, typename C> 267 bool operator==(const SmallSet<T, LN, C> &LHS, const SmallSet<T, RN, C> &RHS) { 278 template <typename T, unsigned LN, unsigned RN, typename C> 279 bool operator!=(const SmallSet<T, LN, C> &LHS, const SmallSet<T, RN, C> &RHS) {
|
/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<…
|
/external/llvm/lib/Transforms/Scalar/ |
D | StructurizeCFG.cpp | 311 for (RegionNode *RN : TempOrder) { in orderNodes() 312 BasicBlock *BB = RN->getEntry(); in orderNodes() 504 for (RegionNode *RN : reverse(Order)) { in collectInfos() 507 << (RN->isSubRegion() ? "SubRegion with entry: " : "") in collectInfos() 508 << RN->getEntry()->getName() << " Loop Depth: " in collectInfos() 509 << LI->getLoopDepth(RN->getEntry()) << "\n"); in collectInfos() 512 gatherPredicates(RN); in collectInfos() 515 Visited.insert(RN->getEntry()); in collectInfos() 518 analyzeLoops(RN); in collectInfos()
|
/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/cldr/tools/java/org/unicode/cldr/util/data/external/ |
D | 2013-1_UNLOCODE_CodeListPart1.csv | 3893 ,"BE","AAB","Aalst","Aalst","VOV","1-3-----","RN","0307",,"5056N 00402E", 3894 ,"BE","AAL","Aalter","Aalter","VOV","1-3-----","RN","0307",,"5105N 00327E", 3895 ,"BE","AAS","Aarschot","Aarschot","VBR","--3-----","RN","0307",,"5059N 00450E", 3896 ,"BE","ARS","Aarsele","Aarsele","VWV","--3-----","RN","0307",,"5100N 00325E", 3897 ,"BE","ART","Aartrijke","Aartrijke","VWV","--3-----","RN","0307",,"5107N 00305E", 3898 ,"BE","AAR","Aartselaar","Aartselaar","VAN","--3-----","RN","0307",,"5108N 00423E", 3900 ,"BE","ACE","Achet","Achet","WNA","--3-----","RN","0307",,"5020N 00511E", 3901 ,"BE","ACH","Achouffe","Achouffe","WLX","--3-----","RN","0307",,"5009N 00545E", 3902 ,"BE","AGE","Adegem","Adegem","VOV","--3-----","RN","0307",,"5112N 00329E", 3903 ,"BE","ADK","Adinkerke","Adinkerke","VWV","1-3-----","RN","0307",,"5104N 00236E", [all …]
|
D | 2013-1_UNLOCODE_CodeListPart3.csv | 3018 ,"PT","AVM","Abade de Vermoim","Abade de Vermoim","03","--3-----","RN","0401",,"4123N 00829W", 3020 ,"PT","ABT","Abrantes","Abrantes","14","-23-----","RN","0401",,"3928N 00812W", 3025 ,"PT","ASD","Ad�es","Adaes","03","-23-----","RN","0401",,"4131N 00834W", 3026 ,"PT","AGE","Agrela","Agrela","03","--3-----","RN","0401",,"4132N 00812W", 3032 ,"PT","AGM","�guas de Moura","Aguas de Moura","15","-23-----","RN","0401",,"3835N 00842W", 3036 ,"PT","AGB","Aguiar da Beira","Aguiar da Beira","09","--3-----","RN","0401",,"4049N 00733W", 3037 ,"PT","AIO","Ai�o","Aiao","13","-23-----","RN","0401",,"4118N 00812W", 3039 ,"PT","AOD","Alandroal","Alandroal","07","--3-----","RN","0401",,"3842N 00724W", 3046 ,"PT","ACB","Alcabideche","Alcabideche","11","--3-----","RN","0401",,"3844N 00925W", 3048 ,"PT","ALS","Alcains","Alcains","05","-23-----","RN","0401",,"3955N 00727W", [all …]
|
/external/llvm-project/polly/lib/Support/ |
D | ScopHelper.cpp | 508 unsigned polly::getNumBlocksInRegionNode(RegionNode *RN) { in getNumBlocksInRegionNode() argument 509 if (!RN->isSubRegion()) in getNumBlocksInRegionNode() 512 Region *R = RN->getNodeAs<Region>(); in getNumBlocksInRegionNode() 516 Loop *polly::getRegionNodeLoop(RegionNode *RN, LoopInfo &LI) { in getRegionNodeLoop() argument 517 if (!RN->isSubRegion()) { in getRegionNodeLoop() 518 BasicBlock *BB = RN->getNodeAs<BasicBlock>(); in getRegionNodeLoop() 544 Region *NonAffineSubRegion = RN->getNodeAs<Region>(); in getRegionNodeLoop()
|
/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/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/lua/src/ |
D | liolib.c | 426 } RN; typedef 432 static int nextc (RN *rn) { in nextc() 448 static int test2 (RN *rn, const char *set) { in test2() 458 static int readdigits (RN *rn, int hex) { in readdigits() 472 RN rn; in read_number()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | DDG.h | 348 auto *RN = new RootDDGNode(); in createRootNode() local 349 assert(RN && "Failed to allocate memory for DDG root node."); in createRootNode() 350 Graph.addNode(*RN); in createRootNode() 351 return *RN; in createRootNode()
|
/external/llvm-project/llvm/include/llvm/Analysis/ |
D | DDG.h | 356 auto *RN = new RootDDGNode(); in createRootNode() local 357 assert(RN && "Failed to allocate memory for DDG root node."); in createRootNode() 358 Graph.addNode(*RN); in createRootNode() 359 return *RN; in createRootNode()
|
/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/Analysis/ |
D | RegionInfo.h | 850 bool operator==(const Region &RN) const { 851 return this == reinterpret_cast<const RegionNode *>(&RN); 861 bool operator==(const RegionNode &RN) const { 862 return &RN == reinterpret_cast<const RegionNode *>(this);
|