/external/llvm/include/llvm/IR/ |
D | TypeBuilder.h | 104 template<typename T, bool cross> class TypeBuilder<const T, cross> 105 : public TypeBuilder<T, cross> {}; 106 template<typename T, bool cross> class TypeBuilder<volatile T, cross> 107 : public TypeBuilder<T, cross> {}; 108 template<typename T, bool cross> class TypeBuilder<const volatile T, cross> 109 : public TypeBuilder<T, cross> {}; 112 template<typename T, bool cross> class TypeBuilder<T*, cross> { 115 return PointerType::getUnqual(TypeBuilder<T,cross>::get(Context)); in get() 120 template<typename T, bool cross> class TypeBuilder<T&, cross> {}; 123 template<typename T, size_t N, bool cross> class TypeBuilder<T[N], cross> { [all …]
|
/external/eigen/test/ |
D | geo_orthomethods.cpp | 32 VERIFY_IS_MUCH_SMALLER_THAN(v1.cross(v2).dot(v1), Scalar(1)); in orthomethods_3() 33 VERIFY_IS_MUCH_SMALLER_THAN(v1.dot(v1.cross(v2)), Scalar(1)); in orthomethods_3() 34 VERIFY_IS_MUCH_SMALLER_THAN(v1.cross(v2).dot(v2), Scalar(1)); in orthomethods_3() 35 VERIFY_IS_MUCH_SMALLER_THAN(v2.dot(v1.cross(v2)), Scalar(1)); in orthomethods_3() 38 (v0.cross(v1)).normalized(), in orthomethods_3() 39 (v0.cross(v1).cross(v0)).normalized(); in orthomethods_3() 48 mcross = mat3.colwise().cross(vec3); in orthomethods_3() 49 VERIFY_IS_APPROX(mcross.col(i), mat3.col(i).cross(vec3)); in orthomethods_3() 50 mcross = mat3.rowwise().cross(vec3); in orthomethods_3() 51 VERIFY_IS_APPROX(mcross.row(i), mat3.row(i).cross(vec3)); in orthomethods_3() [all …]
|
/external/opencv3/modules/features2d/misc/java/test/ |
D | SURFFeatureDetectorTest.java | 35 Mat cross = new Mat(matSize, matSize, CvType.CV_8U, new Scalar(255)); in getTestImg() local 36 …Imgproc.line(cross, new Point(20, matSize / 2), new Point(matSize - 21, matSize / 2), new Scalar(1… in getTestImg() 37 …Imgproc.line(cross, new Point(matSize / 2, 20), new Point(matSize / 2, matSize - 21), new Scalar(1… in getTestImg() 39 return cross; in getTestImg() 77 Mat cross = getTestImg(); in testDetectListOfMatListOfListOfKeyPoint() local 79 crosses.add(cross); in testDetectListOfMatListOfListOfKeyPoint() 80 crosses.add(cross); in testDetectListOfMatListOfListOfKeyPoint() 81 crosses.add(cross); in testDetectListOfMatListOfListOfKeyPoint() 104 Mat cross = getTestImg(); in testDetectMatListOfKeyPoint() local 106 detector.detect(cross, keypoints); in testDetectMatListOfKeyPoint() [all …]
|
D | BruteForceL1DescriptorMatcherTest.java | 56 Mat cross = new Mat(matSize, matSize, CvType.CV_8U, new Scalar(255)); 57 …Imgproc.line(cross, new Point(30, matSize / 2), new Point(matSize - 31, matSize / 2), new Scalar(1… 58 …Imgproc.line(cross, new Point(matSize / 2, 30), new Point(matSize / 2, matSize - 31), new Scalar(1… 60 return cross; 76 Mat cross = new Mat(matSize, matSize, CvType.CV_8U, new Scalar(255)); 77 …Imgproc.line(cross, new Point(20, matSize / 2), new Point(matSize - 21, matSize / 2), new Scalar(1… 78 …Imgproc.line(cross, new Point(matSize / 2, 20), new Point(matSize / 2, matSize - 21), new Scalar(1… 80 return cross;
|
D | BruteForceSL2DescriptorMatcherTest.java | 61 Mat cross = new Mat(matSize, matSize, CvType.CV_8U, new Scalar(255)); 62 …Imgproc.line(cross, new Point(30, matSize / 2), new Point(matSize - 31, matSize / 2), new Scalar(1… 63 …Imgproc.line(cross, new Point(matSize / 2, 30), new Point(matSize / 2, matSize - 31), new Scalar(1… 65 return cross; 81 Mat cross = new Mat(matSize, matSize, CvType.CV_8U, new Scalar(255)); 82 …Imgproc.line(cross, new Point(20, matSize / 2), new Point(matSize - 21, matSize / 2), new Scalar(1… 83 …Imgproc.line(cross, new Point(matSize / 2, 20), new Point(matSize / 2, matSize - 21), new Scalar(1… 85 return cross;
|
D | FlannBasedDescriptorMatcherTest.java | 130 Mat cross = new Mat(matSize, matSize, CvType.CV_8U, new Scalar(255)); 131 …Imgproc.line(cross, new Point(30, matSize / 2), new Point(matSize - 31, matSize / 2), new Scalar(1… 132 …Imgproc.line(cross, new Point(matSize / 2, 30), new Point(matSize / 2, matSize - 31), new Scalar(1… 134 return cross; 150 Mat cross = new Mat(matSize, matSize, CvType.CV_8U, new Scalar(255)); 151 …Imgproc.line(cross, new Point(20, matSize / 2), new Point(matSize - 21, matSize / 2), new Scalar(1… 152 …Imgproc.line(cross, new Point(matSize / 2, 20), new Point(matSize / 2, matSize - 21), new Scalar(1… 154 return cross;
|
D | BruteForceDescriptorMatcherTest.java | 56 Mat cross = new Mat(matSize, matSize, CvType.CV_8U, new Scalar(255)); 57 …Imgproc.line(cross, new Point(30, matSize / 2), new Point(matSize - 31, matSize / 2), new Scalar(1… 58 …Imgproc.line(cross, new Point(matSize / 2, 30), new Point(matSize / 2, matSize - 31), new Scalar(1… 60 return cross; 76 Mat cross = new Mat(matSize, matSize, CvType.CV_8U, new Scalar(255)); 77 …Imgproc.line(cross, new Point(20, matSize / 2), new Point(matSize - 21, matSize / 2), new Scalar(1… 78 …Imgproc.line(cross, new Point(matSize / 2, 20), new Point(matSize / 2, matSize - 21), new Scalar(1… 80 return cross;
|
D | BRIEFDescriptorExtractorTest.java | 21 Mat cross = new Mat(matSize, matSize, CvType.CV_8U, new Scalar(255)); in getTestImg() local 22 …Imgproc.line(cross, new Point(20, matSize / 2), new Point(matSize - 21, matSize / 2), new Scalar(1… in getTestImg() 23 …Imgproc.line(cross, new Point(matSize / 2, 20), new Point(matSize / 2, matSize - 21), new Scalar(1… in getTestImg() 25 return cross; in getTestImg()
|
D | SIFTDescriptorExtractorTest.java | 23 Mat cross = new Mat(matSize, matSize, CvType.CV_8U, new Scalar(255)); in getTestImg() local 24 …Imgproc.line(cross, new Point(20, matSize / 2), new Point(matSize - 21, matSize / 2), new Scalar(1… in getTestImg() 25 …Imgproc.line(cross, new Point(matSize / 2, 20), new Point(matSize / 2, matSize - 21), new Scalar(1… in getTestImg() 27 return cross; in getTestImg()
|
D | SURFDescriptorExtractorTest.java | 21 Mat cross = new Mat(matSize, matSize, CvType.CV_8U, new Scalar(255)); in getTestImg() local 22 …Imgproc.line(cross, new Point(20, matSize / 2), new Point(matSize - 21, matSize / 2), new Scalar(1… in getTestImg() 23 …Imgproc.line(cross, new Point(matSize / 2, 20), new Point(matSize / 2, matSize - 21), new Scalar(1… in getTestImg() 25 return cross; in getTestImg()
|
D | ORBDescriptorExtractorTest.java | 26 Mat cross = new Mat(matSize, matSize, CvType.CV_8U, new Scalar(255)); in getTestImg() local 27 …Imgproc.line(cross, new Point(20, matSize / 2), new Point(matSize - 21, matSize / 2), new Scalar(1… in getTestImg() 28 …Imgproc.line(cross, new Point(matSize / 2, 20), new Point(matSize / 2, matSize - 21), new Scalar(1… in getTestImg() 30 return cross; in getTestImg()
|
/external/mesa3d/src/mesa/swrast/ |
D | s_aatriangle.c | 224 GLfloat cross = (dx0 * (sy - v0[1]) - dy0 * (sx - v0[0])); in compute_coveragef() local 228 if (cross == 0.0F) in compute_coveragef() 229 cross = dx0 + dy0; in compute_coveragef() 230 if (cross < 0.0F) { in compute_coveragef() 237 cross = (dx1 * (sy - v1[1]) - dy1 * (sx - v1[0])); in compute_coveragef() 238 if (cross == 0.0F) in compute_coveragef() 239 cross = dx1 + dy1; in compute_coveragef() 240 if (cross < 0.0F) { in compute_coveragef() 247 cross = (dx2 * (sy - v2[1]) - dy2 * (sx - v2[0])); in compute_coveragef() 248 if (cross == 0.0F) in compute_coveragef() [all …]
|
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/ |
D | do_plc.c | 41 int32_t cross, ener, cross_comp, ener_comp = 0; in WebRtcIlbcfix_DoThePlc() local 92 WebRtcIlbcfix_CompCorr( &cross, &ener, in WebRtcIlbcfix_DoThePlc() 96 shiftMax = WebRtcSpl_GetSizeInBits(WEBRTC_SPL_ABS_W32(cross))-15; in WebRtcIlbcfix_DoThePlc() 98 (int16_t)WEBRTC_SPL_SHIFT_W32(cross, -shiftMax) * in WebRtcIlbcfix_DoThePlc() 99 (int16_t)WEBRTC_SPL_SHIFT_W32(cross, -shiftMax)) >> 15); in WebRtcIlbcfix_DoThePlc() 134 cross = cross_comp; in WebRtcIlbcfix_DoThePlc() 167 tmp1 = (int16_t)WEBRTC_SPL_SHIFT_W32(cross, (totscale>>1)); in WebRtcIlbcfix_DoThePlc() 168 tmp2 = (int16_t)WEBRTC_SPL_SHIFT_W32(cross, totscale-(totscale>>1)); in WebRtcIlbcfix_DoThePlc()
|
/external/opencv/cvaux/src/ |
D | cvepilines.cpp | 1019 CvPoint2D64d *cross,int* result) in icvGetCrossDirectDirect() argument 1026 cross->x = detx/det; in icvGetCrossDirectDirect() 1027 cross->y = (-direct1[0]*direct2[2] + direct2[0]*direct1[2])/det; in icvGetCrossDirectDirect() 1055 CvPoint2D64d *cross,int* result) in icvGetCrossPieceDirect() argument 1082 cross->x = detxc / det; in icvGetCrossPieceDirect() 1083 cross->y = detyc / det; in icvGetCrossPieceDirect() 1097 CvPoint2D64d* cross, in icvGetCrossPiecePiece() argument 1141 cross->x = delX / del; in icvGetCrossPiecePiece() 1142 cross->y = delY / del; in icvGetCrossPiecePiece() 1181 CvPoint2D64d cross[4]; in icvGetCrossRectDirect() local [all …]
|
D | cv3dtracker.cpp | 531 CvPoint3D32f cross = cvPoint3D32f(d1.y*d2.z - d1.z*d2.y, in intersection() local 534 double den = cross.x*cross.x + cross.y*cross.y + cross.z*cross.z; in intersection() 539 double t1 = det(x, d2, cross) / den; in intersection() 540 double t2 = det(x, d1, cross) / den; in intersection()
|
/external/clang/docs/ |
D | CrossCompilation.rst | 9 for cross-compiling your code to a different architecture. It assumes you 17 `instructions for cross-compiling LLVM itself 21 related to cross-compilation, and what main compiler options Clang provides 22 for performing cross-compilation. 33 On the other hand, Clang/LLVM is natively a cross-compiler, meaning that 40 But, as is true to any cross-compiler, and given the complexity of 56 true when your cross-compiler was installed by the distribution's package 131 There are three main options to control access to your cross-compiler: 136 There are two main ways to have a cross-compiler: 138 #. When you have extracted your cross-compiler from a zip file into [all …]
|
/external/llvm/unittests/IR/ |
D | TypeBuilderTest.cpp | 184 template<bool cross> class TypeBuilder<MyType, cross> { 190 st.push_back(TypeBuilder<int, cross>::get(Context)); in get() 191 st.push_back(TypeBuilder<int*, cross>::get(Context)); in get() 192 st.push_back(TypeBuilder<void*[], cross>::get(Context)); in get() 207 template<bool cross> class TypeBuilder<MyPortableType, cross> { 213 st.push_back(TypeBuilder<types::i<32>, cross>::get(Context)); in get() 214 st.push_back(TypeBuilder<types::i<32>*, cross>::get(Context)); in get() 215 st.push_back(TypeBuilder<types::i<8>*[], cross>::get(Context)); in get()
|
/external/eigen/bench/ |
D | eig33.cpp | 151 evecs.col (2) = tmp.row (0).cross (tmp.row (1)).normalized (); in eigen33() 155 evecs.col(1) = tmp.row (0).cross(tmp.row (1)); in eigen33() 163 evecs.col(1) = evecs.col(2).cross(evecs.col(1).cross(evecs.col(2))).normalized(); in eigen33() 164 evecs.col(0) = evecs.col(2).cross(evecs.col(1)); in eigen33()
|
/external/opencv3/3rdparty/openexr/Imath/ |
D | ImathFrame.h | 96 Vec3<T> n = t.cross( pk - pi ); n.normalize(); in firstFrame() 103 n = t.cross( v ); n.normalize(); in firstFrame() 106 Vec3<T> b = t.cross( n ); in firstFrame() 150 a = ti.cross( tj ); in nextFrame()
|
/external/skia/tests/ |
D | GeometryTest.cpp | 123 REPORTER_ASSERT(reporter, SkScalarNearlyZero(start.cross(mid))); in test_quad_tangents() 124 REPORTER_ASSERT(reporter, SkScalarNearlyZero(mid.cross(end))); in test_quad_tangents() 143 REPORTER_ASSERT(reporter, SkScalarNearlyZero(start.cross(mid))); in test_conic_tangents() 144 REPORTER_ASSERT(reporter, SkScalarNearlyZero(mid.cross(end))); in test_conic_tangents() 164 REPORTER_ASSERT(reporter, SkScalarNearlyZero(start.cross(mid))); in test_cubic_tangents() 165 REPORTER_ASSERT(reporter, SkScalarNearlyZero(mid.cross(end))); in test_cubic_tangents()
|
/external/llvm/docs/ |
D | HowToCrossCompileLLVM.rst | 11 For more information on how to use Clang as a cross-compiler, 20 system, cross-compiling from an x86_64 host (most Intel and AMD chips 30 * ``libgcc1-armhf-cross`` 31 * ``libsfgcc1-armhf-cross`` 32 * ``libstdc++6-armhf-cross`` 33 * ``libstdc++6-4.7-dev-armhf-cross`` 55 using Clang as a cross-compiler, you will *also* have to set ``-ccc-gcc-name``, 74 #. If you're using Clang as the cross-compiler, there is a problem in 118 If you're using Clang as the cross-compiler, run:
|
/external/bison/doc/ |
D | Makefile.am | 20 bison_TEXINFOS = $(srcdir)/cross-options.texi gpl-3.0.texi fdl.texi 27 CROSS_OPTIONS_PL = $(top_srcdir)/build-aux/cross-options.pl 28 $(srcdir)/cross-options.texi: $(top_srcdir)/src/getargs.c $(CROSS_OPTIONS_PL) 36 MAINTAINERCLEANFILES = $(srcdir)/cross-options.texi
|
/external/skia/src/utils/ |
D | SkCamera.cpp | 52 void SkUnit3D::Cross(const SkUnit3D& a, const SkUnit3D& b, SkUnit3D* cross) { in Cross() argument 53 SkASSERT(cross); in Cross() 61 cross->set(x, y, z); in Cross() 215 SkUnit3D axis, zenith, cross; in doUpdate() local 229 SkUnit3D::Cross(axis, zenith, &cross); in doUpdate() 237 orien->set(SkMatrix::kMScaleX, x * axis.fX - z * cross.fX); in doUpdate() 238 orien->set(SkMatrix::kMSkewX, x * axis.fY - z * cross.fY); in doUpdate() 239 orien->set(SkMatrix::kMTransX, x * axis.fZ - z * cross.fZ); in doUpdate()
|
/external/vulkan-validation-layers/libs/glm/gtx/ |
D | intersect.inl | 47 genType p = glm::cross(dir, e2); 64 genType q = glm::cross(s, e1); 89 // genType pvec = cross(dir, edge2); 101 // genType qvec = cross(tvec, edge1); 126 genType pvec = cross(dir, edge2); 140 genType qvec = cross(tvec, edge1);
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/winedlls/ |
D | Makefile.wine | 6 default: lib$(LIBNAME).def lib$(LIBNAME).cross.a $(LIBNAME).dll.so 17 lib%.cross.a: %.spec
|