/external/llvm-project/mlir/lib/Dialect/Affine/Transforms/ |
D | SimplifyAffineStructures.cpp | 40 auto &simplified = simplifiedAttributes[attr]; in simplifyAndUpdateAttribute() local 41 if (simplified == attr) in simplifyAndUpdateAttribute() 45 if (!simplified) { in simplifyAndUpdateAttribute() 50 simplified = attr; in simplifyAndUpdateAttribute() 53 simplified = AttributeT::get(simplifiedValue); in simplifyAndUpdateAttribute() 57 op->setAttr(name, simplified); in simplifyAndUpdateAttribute()
|
/external/llvm-project/llvm/test/Feature/ |
D | fp-intrinsics.ll | 16 ; Verify that 'a - 0' isn't simplified to 'a' when the rounding mode is unknown. 20 ; // downward, this shouldn't be simplified. 35 ; Verify that '-((-a)*b)' isn't simplified to 'a*b' when the rounding mode is 40 ; // rounding, this shouldn't be simplified. 70 ; // Because a + 1 may overflow, this should not be simplified. 97 ; Verify that sqrt(42.0) isn't simplified when the rounding mode is unknown. 108 ; Verify that pow(42.1, 3.0) isn't simplified when the rounding mode is unknown. 120 ; Verify that powi(42.1, 3) isn't simplified when the rounding mode is unknown. 132 ; Verify that sin(42.0) isn't simplified when the rounding mode is unknown. 143 ; Verify that cos(42.0) isn't simplified when the rounding mode is unknown. [all …]
|
/external/skia/modules/pathkit/tests/ |
D | pathops.spec.js | 187 let simplified = path.simplify(); 190 … expect(simplified).toBeNull(`Test ${testName} should have not created output, but did`); 192 expect(simplified).not.toBeNull(); 195 let diff = diffPaths(expected, simplified); 198 … expect(simplified.getFillType().value).toEqual(getFillType(test.fillTypeOut).value); 202 addSVG('[Simplify] ' + testName, expected, simplified, diff);
|
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/testing/ |
D | simplify_test.cc | 18 const char* simplified; member 260 if (strcmp(tests[i].regexp, tests[i].simplified) == 0) { in TEST() 265 EXPECT_EQ(tests[i].simplified, sre->ToString()) in TEST()
|
/external/skqp/modules/pathkit/tests/ |
D | pathops.spec.js | 196 let simplified = path.simplify(); 199 … expect(simplified).toBeNull(`Test ${testName} should have not created output, but did`); 201 expect(simplified).not.toBeNull(); 204 let diff = diffPaths(expected, simplified); 207 … expect(simplified.getFillType().value).toEqual(getFillType(test.fillTypeOut).value); 211 addSVG('[Simplify] ' + testName, expected, simplified, diff);
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestExampleGenerator.java | 242 String simplified = ExampleGenerator.simplify(example, false); in TestAllPaths() local 244 if (simplified.contains("null")) { in TestAllPaths() 251 + simplified + "\t" + javaEscapedStarred); in TestAllPaths() 256 } else if (!simplified.startsWith("〖")) { in TestAllPaths() 258 errln("Funny HTML:\t<" + value + ">\t" + simplified in TestAllPaths() 261 } else if (!simplified.contains("❬") in TestAllPaths() 268 … "Make sure that background appears: " + simplified + "; " + plainStarred)) { in TestAllPaths() 272 errln("No background:\t<" + value + ">\t" + simplified in TestAllPaths() 366 String simplified = ExampleGenerator.simplify(example, false); in TestTranslationPaths() local 367 warnln(locale + "/" + pathType.toString() + " ==>" + simplified); in TestTranslationPaths() [all …]
|
/external/python/cpython2/Doc/c-api/ |
D | veryhigh.rst | 46 This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, leaving 52 This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, leaving 58 This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, leaving 73 This is a simplified interface to :c:func:`PyRun_SimpleStringFlags` below, 92 This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below, 98 This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below, 104 This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below, 118 This is a simplified interface to :c:func:`PyRun_InteractiveOneFlags` below, 135 This is a simplified interface to :c:func:`PyRun_InteractiveLoopFlags` below, 148 This is a simplified interface to [all …]
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/test/opt/ |
D | scalar_analysis.cpp | 143 SENode* simplified = analysis.SimplifyExpression(const_cast<SENode*>(node)); in TEST_F() local 145 EXPECT_EQ(simplified->GetType(), SENode::RecurrentAddExpr); in TEST_F() 147 EXPECT_EQ(simplified->GetChild(0)->GetType(), SENode::Constant); in TEST_F() 148 EXPECT_EQ(simplified->GetChild(0)->AsSEConstantNode()->FoldToSingleValue(), in TEST_F() 151 EXPECT_EQ(simplified->GetChild(1)->GetType(), SENode::Constant); in TEST_F() 152 EXPECT_EQ(simplified->GetChild(1)->AsSEConstantNode()->FoldToSingleValue(), in TEST_F() 155 EXPECT_EQ(simplified->GetChild(0), simplified->GetChild(1)); in TEST_F() 269 SENode* simplified = analysis.SimplifyExpression(const_cast<SENode*>(node)); in TEST_F() local 270 EXPECT_EQ(simplified->GetType(), SENode::RecurrentAddExpr); in TEST_F() 272 const SERecurrentNode* rec = simplified->AsSERecurrentNode(); in TEST_F() [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/test/opt/ |
D | scalar_analysis.cpp | 143 SENode* simplified = analysis.SimplifyExpression(const_cast<SENode*>(node)); in TEST_F() local 145 EXPECT_EQ(simplified->GetType(), SENode::RecurrentAddExpr); in TEST_F() 147 EXPECT_EQ(simplified->GetChild(0)->GetType(), SENode::Constant); in TEST_F() 148 EXPECT_EQ(simplified->GetChild(0)->AsSEConstantNode()->FoldToSingleValue(), in TEST_F() 151 EXPECT_EQ(simplified->GetChild(1)->GetType(), SENode::Constant); in TEST_F() 152 EXPECT_EQ(simplified->GetChild(1)->AsSEConstantNode()->FoldToSingleValue(), in TEST_F() 155 EXPECT_EQ(simplified->GetChild(0), simplified->GetChild(1)); in TEST_F() 269 SENode* simplified = analysis.SimplifyExpression(const_cast<SENode*>(node)); in TEST_F() local 270 EXPECT_EQ(simplified->GetType(), SENode::RecurrentAddExpr); in TEST_F() 272 const SERecurrentNode* rec = simplified->AsSERecurrentNode(); in TEST_F() [all …]
|
/external/deqp-deps/SPIRV-Tools/test/opt/ |
D | scalar_analysis.cpp | 143 SENode* simplified = analysis.SimplifyExpression(const_cast<SENode*>(node)); in TEST_F() local 145 EXPECT_EQ(simplified->GetType(), SENode::RecurrentAddExpr); in TEST_F() 147 EXPECT_EQ(simplified->GetChild(0)->GetType(), SENode::Constant); in TEST_F() 148 EXPECT_EQ(simplified->GetChild(0)->AsSEConstantNode()->FoldToSingleValue(), in TEST_F() 151 EXPECT_EQ(simplified->GetChild(1)->GetType(), SENode::Constant); in TEST_F() 152 EXPECT_EQ(simplified->GetChild(1)->AsSEConstantNode()->FoldToSingleValue(), in TEST_F() 155 EXPECT_EQ(simplified->GetChild(0), simplified->GetChild(1)); in TEST_F() 269 SENode* simplified = analysis.SimplifyExpression(const_cast<SENode*>(node)); in TEST_F() local 270 EXPECT_EQ(simplified->GetType(), SENode::RecurrentAddExpr); in TEST_F() 272 const SERecurrentNode* rec = simplified->AsSERecurrentNode(); in TEST_F() [all …]
|
/external/python/cpython3/Doc/c-api/ |
D | veryhigh.rst | 54 This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, leaving 60 This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, leaving 66 This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, leaving 82 This is a simplified interface to :c:func:`PyRun_SimpleStringFlags` below, 101 This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below, 107 This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below, 126 This is a simplified interface to :c:func:`PyRun_InteractiveOneFlags` below, 146 This is a simplified interface to :c:func:`PyRun_InteractiveLoopFlags` below, 192 This is a simplified interface to 201 This is a simplified interface to [all …]
|
/external/llvm-project/llvm/test/Transforms/Inline/AArch64/ |
D | logical-and-or.ll | 7 ; FIXME: Once the 'or' or 'and' is simplified the second compare is dead, but 20 %tobool1 = icmp eq i32 %b, 0 ; Should be dead once 'or' is simplified 35 %tobool1 = icmp eq i32 %b, 0 ; Should be dead once 'and' is simplified 78 %tobool1 = icmp eq i32 %b, 0 ; Should be dead once 'or' is simplified
|
D | gep-cost.ll | 23 ; Thus, both the gep and ret can be simplified. 33 ; AArch64. Thus, only the ret can be simplified and not the gep. 44 ; gep and ret can be simplified.
|
/external/llvm/test/Transforms/LoopRotate/ |
D | preserve-loop-simplify.ll | 45 ; L2 -> L1 exit edge needs a simplified exit block. 54 ; L1 -> L0 exit edge need sa simplified exit block. 58 ; L2 -> L0 exit edge needs a simplified exit block.
|
/external/llvm-project/llvm/test/Transforms/LoopRotate/ |
D | preserve-loop-simplify.ll | 45 ; L2 -> L1 exit edge needs a simplified exit block. 54 ; L1 -> L0 exit edge need sa simplified exit block. 58 ; L2 -> L0 exit edge needs a simplified exit block.
|
/external/llvm-project/llvm/test/BugPoint/ |
D | func-attrs.ll | 2 ; RUN: llvm-dis %t-reduced-simplified.bc -o - | FileCheck -check-prefixes=ALL,ENABLED %s 4 ; RUN: llvm-dis %t-reduced-simplified.bc -o - | FileCheck -check-prefixes=ALL,DISABLED %s
|
D | metadata.ll | 3 ; RUN: llvm-dis %t-reduced-simplified.bc -o - | FileCheck %s 6 ; RUN: llvm-dis %t-nodebug-reduced-simplified.bc -o - | FileCheck %s --check-prefix=NODEBUG 9 ; RUN: llvm-dis %t-notype-reduced-simplified.bc -o - | FileCheck %s --check-prefix=NOTYPE
|
D | named-md.ll | 2 ; RUN: llvm-dis %t-reduced-simplified.bc -o - | FileCheck %s 4 ; RUN-DISABLE: llvm-dis %t-reduced-simplified.bc -o - | FileCheck %s
|
/external/auto/value/src/main/java/com/google/auto/value/processor/ |
D | TypeEncoder.java | 470 String simplified = typeSimplifier.simplifiedClassName(type); in decode() local 478 dot = simplified.lastIndexOf('.'); in decode() 479 output.append(simplified.substring(0, dot + 1)); // correct even if dot == -1 in decode() 482 dot = simplified.lastIndexOf('.'); in decode() 483 output.append(simplified.substring(dot + 1)); // correct even if dot == -1 in decode() 486 output.append(simplified); in decode()
|
/external/llvm/test/Transforms/LoopUnroll/ |
D | full-unroll-heuristics-geps.ll | 4 ; When examining gep-instructions we shouldn't consider them simplified if the 5 ; corresponding memory access isn't simplified. Doing the opposite might bias
|
/external/icu/icu4c/source/data/translit/ |
D | Hans_Hant.txt | 12 # Convert between simplified and traditional Chinese 13 # UTRANS_FORWARD is from simplified to traditional
|
/external/llvm-project/mlir/docs/Rationale/ |
D | RationaleSimplifiedPolyhedralForm.md | 1 # MLIR: The case for a simplified polyhedral form 10 that explored the tradeoffs of using this simplified form vs the traditional 180 the simplified form, we also have an "if" instruction that takes an affine 228 out after code generation. With the simplified form, transformations have to do 273 its loops. The simplified form pays for this by eliminating schedules and 276 simplified form supports instruction duplication. 286 required as part of lowering to the target machine. The simplified form has a 302 In practice, the simplified form requires moving the complexity of code 316 The simplified form is much easier for analyses and transformations to build 336 The simplified form defines this away: the concepts in the IR remain simple, and [all …]
|
/external/llvm-project/llvm/test/Transforms/InstCombine/ |
D | wcslen-3.ll | 115 ; Check the case that should be simplified to a sub instruction. 144 ; Check cases that shouldn't be simplified. 156 ; wcslen(@null_hello + x) should not be simplified to a sub instruction. 170 ; wcslen(@null_hello_mid + (x & 15)) should not be simplified to a sub instruction. 188 ; This could in principle be simplified, but the current implementation bails on
|
/external/llvm-project/llvm/test/Transforms/LoopUnroll/ |
D | full-unroll-heuristics-geps.ll | 5 ; When examining gep-instructions we shouldn't consider them simplified if the 6 ; corresponding memory access isn't simplified. Doing the opposite might bias
|
/external/libpng/contrib/conftest/ |
D | simple.dfa | 11 # Build libpng with just the simplified APIs (read and write). 20 # simplified API doesn't need fixed or floating point numbers. It is necessary
|