/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | LoopAccessAnalysis.cpp | 192 const ValueToValueMap &Strides, in insert() argument 195 const SCEV *Sc = replaceSymbolicStrideSCEV(PSE, Strides, Ptr); in insert() 534 const ValueToValueMap &Strides, 546 Loop *TheLoop, const ValueToValueMap &Strides, 621 const ValueToValueMap &Strides, Value *Ptr, in hasComputableBounds() argument 623 const SCEV *PtrScev = replaceSymbolicStrideSCEV(PSE, Strides, Ptr); in hasComputableBounds() 642 const ValueToValueMap &Strides, Value *Ptr, Loop *L) { in isNoWrap() argument 647 int64_t Stride = getPtrStride(PSE, Ptr, L, Strides); in isNoWrap() 1445 const ValueToValueMap &Strides) { in isDependent() argument 1462 int64_t StrideAPtr = getPtrStride(PSE, APtr, InnermostLoop, Strides, true); in isDependent() [all …]
|
D | VectorUtils.cpp | 806 const ValueToValueMap &Strides) { in collectConstStrideAccesses() argument 832 int64_t Stride = getPtrStride(PSE, Ptr, TheLoop, Strides, in collectConstStrideAccesses() 835 const SCEV *Scev = replaceSymbolicStrideSCEV(PSE, Strides, Ptr); in collectConstStrideAccesses() 887 const ValueToValueMap &Strides = LAI->getSymbolicStrides(); in analyzeInterleaving() local 891 collectConstStrideAccesses(AccessStrideInfo, Strides); in analyzeInterleaving() 1086 if (!getPtrStride(PSE, FirstMemberPtr, TheLoop, Strides, /*Assume=*/false, in analyzeInterleaving() 1097 if (!getPtrStride(PSE, LastMemberPtr, TheLoop, Strides, /*Assume=*/false, in analyzeInterleaving()
|
D | ScalarEvolution.cpp | 10968 SmallVectorImpl<const SCEV *> &Strides; member 10971 : SE(SE), Strides(S) {} in SCEVCollectStrides() 10975 Strides.push_back(AR->getStepRecurrence(SE)); in follow() 11090 SmallVector<const SCEV *, 4> Strides; in collectParametricTerms() local 11091 SCEVCollectStrides StrideCollector(*this, Strides); in collectParametricTerms() 11096 for (const SCEV *S : Strides) in collectParametricTerms() 11100 for (const SCEV *S : Strides) { in collectParametricTerms()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | LoopAccessAnalysis.h | 204 const ValueToValueMap &Strides); 317 const ValueToValueMap &Strides); 378 unsigned ASId, const ValueToValueMap &Strides,
|
D | VectorUtils.h | 693 const ValueToValueMap &Strides);
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/core/ |
D | tensor_shape.h | 174 std::vector<dsize_t> Strides() const;
|
D | tensor.cc | 626 std::vector<dsize_t> Tensor::Strides() const { in Strides() function in mindspore::dataset::Tensor 627 std::vector<dsize_t> strides = shape_.Strides(); in Strides() 648 t->Strides()); in GetBufferInfo() 851 auto strides = shape_.Strides(); in GetDataAsNumpyStrings() 1141 dsize_t current_stride = shape_.Strides()[indices[0].size() - 1]; in SliceNumeric()
|
D | tensor_shape.cc | 225 std::vector<dsize_t> TensorShape::Strides() const { return std::vector<dsize_t>{strides_.begin() + … in Strides() function in mindspore::dataset::TensorShape
|
D | tensor.h | 397 std::vector<dsize_t> Strides() const;
|
/third_party/mindspore/tests/ut/cpp/dataset/ |
D | tensor_test.cc | 237 TEST_F(MindDataTestTensorDE, Strides) { in TEST_F() argument 240 std::vector<dsize_t> x1 = t->Strides(); in TEST_F() 244 x1 = t->Strides(); in TEST_F()
|
/third_party/vk-gl-cts/doc/testspecs/GLES2/ |
D | functional.vertex_arrays.multiple_attributes.txt | 56 data is used as vec2 in shader. Strides test uses npot stride, pot stride and types
|
/third_party/vk-gl-cts/doc/testspecs/GLES3/ |
D | functional.vertex_arrays.multiple_attributes.txt | 56 data is used as vec2 in shader. Strides test uses npot stride, pot stride and types
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorizationLegality.cpp | 409 const ValueToValueMap &Strides = in isConsecutivePtr() local 413 int Stride = getPtrStride(PSE, Ptr, TheLoop, Strides, CanAddPredicate, false); in isConsecutivePtr()
|
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/ |
D | ARB_spirv_extensions.txt | 122 (replace section "7.6.2.spv SPIR-V Uniform Offsets and Strides" added by
|
D | ARB_gl_spirv.txt | 703 Add a new subsection 7.6.2.spv "SPIR-V Uniform Offsets and Strides" after 706 "7.6.2.spv SPIR-V Uniform Offsets and Strides
|
D | ARB_enhanced_layouts.txt | 1697 Strides must be associated with a binding point ("xfb_binding"), but
|
/third_party/openGLES/extensions/ARB/ |
D | ARB_spirv_extensions.txt | 137 (replace section "7.6.2.spv SPIR-V Uniform Offsets and Strides" added by
|
D | ARB_gl_spirv.txt | 720 Add a new subsection 7.6.2.spv "SPIR-V Uniform Offsets and Strides" after 723 "7.6.2.spv SPIR-V Uniform Offsets and Strides
|
D | ARB_enhanced_layouts.txt | 1707 Strides must be associated with a binding point ("xfb_binding"), but
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/kernels/data/ |
D | data_utils.cc | 498 dsize_t count = (dst_shape[cur_dim] - min_ind) * dst_shape.Strides()[cur_dim]; in PadEndStringHelper()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | LoopStrengthReduce.cpp | 2653 SmallSetVector<const SCEV *, 4> Strides; in CollectInterestingTypesAndFactors() local 2669 Strides.insert(AR->getStepRecurrence(SE)); in CollectInterestingTypesAndFactors() 2679 I = Strides.begin(), E = Strides.end(); I != E; ++I) in CollectInterestingTypesAndFactors()
|
/third_party/e2fsprogs/po/ |
D | de.po | 5648 "Warnung: Die Stripebreite %u des RAIDs ist kein Vielfaches des Strides %u.\n"
|