Home
last modified time | relevance | path

Searched refs:IM (Results 1 – 25 of 539) sorted by relevance

12345678910>>...22

/third_party/mindspore/mindspore/ccsrc/minddata/dataset/kernels/image/lite_cv/
Dwarp_affine.cc395 double IM[6]; in WarpAffineBilinear() local
398 IM[i] = M_Ptr[i]; in WarpAffineBilinear()
401 double D = IM[0] * IM[4] - IM[1] * IM[3]; in WarpAffineBilinear()
403 double A11 = IM[4] * D, A22 = IM[0] * D; in WarpAffineBilinear()
404 IM[0] = A11; in WarpAffineBilinear()
405 IM[1] *= -D; in WarpAffineBilinear()
406 IM[3] *= -D; in WarpAffineBilinear()
407 IM[4] = A22; in WarpAffineBilinear()
408 double b1 = -IM[0] * IM[2] - IM[1] * IM[5]; in WarpAffineBilinear()
409 double b2 = -IM[3] * IM[2] - IM[4] * IM[5]; in WarpAffineBilinear()
[all …]
Dimage_process.cc1140 double IM[6]; in ImplementAffine() local
1142 IM[i] = M[i]; in ImplementAffine()
1145 double D = IM[0] * IM[4] - IM[1] * IM[3]; in ImplementAffine()
1147 double A11 = IM[4] * D, A22 = IM[0] * D; in ImplementAffine()
1148 IM[0] = A11; in ImplementAffine()
1149 IM[1] *= -D; in ImplementAffine()
1150 IM[3] *= -D; in ImplementAffine()
1151 IM[4] = A22; in ImplementAffine()
1152 double b1 = -IM[0] * IM[2] - IM[1] * IM[5]; in ImplementAffine()
1153 double b2 = -IM[3] * IM[2] - IM[4] * IM[5]; in ImplementAffine()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DIntervalMap.h1739 IntervalMap &IM = *this->map; in insertNode() local
1744 if (IM.rootSize < RootBranch::Capacity) { in insertNode()
1745 IM.rootBranch().insert(P.offset(0), IM.rootSize, Node, Stop); in insertNode()
1746 P.setSize(0, ++IM.rootSize); in insertNode()
1753 IdxPair Offset = IM.splitRoot(P.offset(0)); in insertNode()
1754 P.replaceRoot(&IM.rootBranch(), IM.rootSize, Offset); in insertNode()
1784 IntervalMap &IM = *this->map; in insert() local
1788 unsigned Size = IM.rootLeaf().insertFrom(P.leafOffset(), IM.rootSize, a, b, y); in insert()
1792 P.setSize(0, IM.rootSize = Size); in insert()
1797 IdxPair Offset = IM.branchRoot(P.leafOffset()); in insert()
[all …]
/third_party/boost/libs/geometry/doc/generated/
Drelation.qbk19 Calculates the relation between a pair of geometries as defined in DE-9IM.
36 The DE-9IM matrix expressing the relation between geometries.
56 Calculates the relation between a pair of geometries as defined in DE-9IM.
72 The DE-9IM matrix expressing the relation between geometries.
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
DMipsDelaySlotFiller.cpp257 InspectMemInstr &IM) const;
263 RegDefsUses &RegDU, InspectMemInstr &IM, Iter Slot,
691 InspectMemInstr &IM, Iter Slot, in searchRange() argument
726 if (delayHasHazard(*CurrI, RegDU, IM)) in searchRange()
834 std::unique_ptr<InspectMemInstr> IM; in searchSuccBBs() local
851 IM.reset(new LoadFromStackOrConst()); in searchSuccBBs()
854 IM.reset(new MemDefsUses(Fn->getDataLayout(), &MFI)); in searchSuccBBs()
857 if (!searchRange(MBB, SuccBB->begin(), SuccBB->end(), RegDU, *IM, Slot, in searchSuccBBs()
946 InspectMemInstr &IM) const { in delayHasHazard()
952 HasHazard |= IM.hasHazard(Candidate); in delayHasHazard()
/third_party/ffmpeg/libavfilter/
Davf_showspatial.c221 #define IM(y, ch) s->fft_data[ch][y].im macro
255 float l = hypotf(RE(idx, 0), IM(idx, 0)); in draw_spatial()
256 float r = hypotf(RE(idx, 1), IM(idx, 1)); in draw_spatial()
258 float lp = atan2f(IM(idx, 0), RE(idx, 0)); in draw_spatial()
259 float rp = atan2f(IM(idx, 1), RE(idx, 1)); in draw_spatial()
Davf_showfreqs.c404 #define IM(x, ch) s->fft_data[ch][x].im in plot_freqs() macro
429 a = av_clipd(M(RE(f, ch), IM(f, ch)) / s->scale, 0, 1); in plot_freqs()
439 a = av_clipd((M_PI + P(RE(f, ch), IM(f, ch))) / (2. * M_PI), 0, 1); in plot_freqs()
448 a = av_clipd((M_PI - P(IM(f, ch) * RE(f-1, ch) - IM(f-1, ch) * RE(f, ch), in plot_freqs()
449 … RE(f, ch) * RE(f-1, ch) + IM(f, ch) * IM(f-1, ch))) / (2. * M_PI), 0, 1); in plot_freqs()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
DLoadStoreVectorizer.cpp515 Instruction *IM = dyn_cast<Instruction>(IW->getOperand(i)); in reorder() local
516 if (!IM || IM->getOpcode() == Instruction::PHI) in reorder()
521 if (IM->getParent() != I->getParent()) in reorder()
524 if (!OBB.dominates(IM, I)) { in reorder()
525 InstructionsToMove.insert(IM); in reorder()
526 Worklist.push_back(IM); in reorder()
536 Instruction *IM = &*BBI; in reorder() local
538 IM->removeFromParent(); in reorder()
539 IM->insertBefore(I); in reorder()
/third_party/mindspore/tests/ut/data/dataset/testFlowers102Dataset/
Dimagelabels.mat1 … Fri Aug 6 00:40:09 2021 ���������IM���-���x��c``p�b6 ��…
Dsetid.mat1 … Fri Aug 6 00:39:43 2021 ���������IM���*���x��c``��b6 ��…
/third_party/flutter/skia/third_party/externals/icu/source/data/region/
Dgv.txt6 IM{"Ellan Vannin"}
Dsah.txt18 IM{"Мэн арыы"}
/third_party/skia/third_party/externals/icu/source/data/region/
Dgv.txt7 IM{"Ellan Vannin"}
Dsah.txt19 IM{"Мэн арыы"}
/third_party/icu/icu4c/source/data/region/
Dgv.txt7 IM{"Ellan Vannin"}
Dsah.txt19 IM{"Мэн арыы"}
/third_party/mindspore/tests/ut/data/dataset/testSBData/sbd/cls/
D000001.mat1 …un 25 10:42:15 2021�������������������������������������������������������IM������x���1NA���U…
D000006.mat1 …un 25 10:42:15 2021�������������������������������������������������������IM������x���1NA���U…
D000005.mat1 …un 25 10:42:23 2021�������������������������������������������������������IM������x���1N�P���*…
D000002.mat1 …un 25 10:42:23 2021�������������������������������������������������������IM������x���1N�P���*…
D000004.mat1 …un 25 10:42:23 2021�������������������������������������������������������IM������x���1N�P���*…
D000003.mat1 …un 25 10:42:29 2021�������������������������������������������������������IM������x���1NA�ٍ…
/third_party/openssl/test/certs/
Dserver-pss-restrict-cert.pem19 /vDI5hPj9RHvjjta6FQx140wA6c8ZB59x9YIv1alJWf6s3+TM8bv70L/aBBT8+IM
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DDeadStoreElimination.cpp442 auto &IM = IOL[DepWrite]; in isOverwrite() local
456 auto ILI = IM.lower_bound(LaterIntStart); in isOverwrite()
457 if (ILI != IM.end() && ILI->second <= LaterIntEnd) { in isOverwrite()
463 ILI = IM.erase(ILI); in isOverwrite()
471 while (ILI != IM.end() && ILI->second <= LaterIntEnd) { in isOverwrite()
474 ILI = IM.erase(ILI); in isOverwrite()
478 IM[LaterIntEnd] = LaterIntStart; in isOverwrite()
480 ILI = IM.begin(); in isOverwrite()
/third_party/boost/libs/geometry/doc/reference/algorithms/
Drelation.qbk16 The spatial relation is represented by DE-9IM matrix.

12345678910>>...22