Home
last modified time | relevance | path

Searched refs:cross (Results 1 – 25 of 1026) sorted by relevance

12345678910>>...42

/external/swiftshader/third_party/LLVM/include/llvm/Support/
DTypeBuilder.h96 template<typename T, bool cross> class TypeBuilder<const T, cross>
97 : public TypeBuilder<T, cross> {};
98 template<typename T, bool cross> class TypeBuilder<volatile T, cross>
99 : public TypeBuilder<T, cross> {};
100 template<typename T, bool cross> class TypeBuilder<const volatile T, cross>
101 : public TypeBuilder<T, cross> {};
104 template<typename T, bool cross> class TypeBuilder<T*, cross> {
107 return PointerType::getUnqual(TypeBuilder<T,cross>::get(Context)); in get()
112 template<typename T, bool cross> class TypeBuilder<T&, cross> {};
115 template<typename T, size_t N, bool cross> class TypeBuilder<T[N], cross> {
[all …]
/external/llvm/include/llvm/IR/
DTypeBuilder.h104 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/
Dgeo_orthomethods.cpp32 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()
36 VERIFY_IS_MUCH_SMALLER_THAN(v1.cross(Vector3::Random()).dot(v1), Scalar(1)); in orthomethods_3()
39 (v0.cross(v1)).normalized(), in orthomethods_3()
40 (v0.cross(v1).cross(v0)).normalized(); in orthomethods_3()
44 VERIFY_IS_APPROX(v0.cross(mat3*v1), -(mat3*v1).cross(v0)); in orthomethods_3()
45 VERIFY_IS_APPROX(v0.cross(mat3.lazyProduct(v1)), -(mat3.lazyProduct(v1)).cross(v0)); in orthomethods_3()
52 mcross = mat3.colwise().cross(vec3); in orthomethods_3()
[all …]
/external/mesa3d/src/mesa/swrast/
Ds_aatriangle.c209 GLfloat cross = (dx0 * (sy - v0[1]) - dy0 * (sx - v0[0])); in compute_coveragef() local
213 if (cross == 0.0F) in compute_coveragef()
214 cross = dx0 + dy0; in compute_coveragef()
215 if (cross < 0.0F) { in compute_coveragef()
222 cross = (dx1 * (sy - v1[1]) - dy1 * (sx - v1[0])); in compute_coveragef()
223 if (cross == 0.0F) in compute_coveragef()
224 cross = dx1 + dy1; in compute_coveragef()
225 if (cross < 0.0F) { in compute_coveragef()
232 cross = (dx2 * (sy - v2[1]) - dy2 * (sx - v2[0])); in compute_coveragef()
233 if (cross == 0.0F) in compute_coveragef()
[all …]
/external/capstone/
DCOMPILE.TXT2 Linux, *BSD & Solaris. We also show steps to cross-compile for Microsoft Windows.
58 - On 64-bit OS, run the command below to cross-compile Capstone for 32-bit binary:
100 To cross-compile for Windows, Linux & gcc-mingw-w64-i686 (and also gcc-mingw-w64-x86-64
103 - To cross-compile Windows 32-bit binary, simply run:
105 $ ./make.sh cross-win32
107 - To cross-compile Windows 64-bit binary, run:
109 $ ./make.sh cross-win64
118 To cross-compile for iOS (iPhone/iPad/iPod), Mac OSX with XCode installed is required.
120 - To cross-compile for ArmV7 (iPod 4, iPad 1/2/3, iPhone4, iPhone4S), run:
123 - To cross-compile for ArmV7s (iPad 4, iPhone 5C, iPad mini), run:
[all …]
/external/freetype/docs/
DINSTALL.CROSS1 This document contains instructions on how to cross-build the FreeType
15 The GNU C compiler to cross-build the target system is required.
16 Currently, using a non-GNU cross compiler is untested. The cross
19 system is Linux/MIPS, the cross compiler should be installed with
32 To configure a cross-build, the options `--host=<system>' and
55 `configure' script while trying to find the cross and native C
66 cross-building system, the prefix is expected to be different
72 use a prefix to install the cross-build into a separate system
87 (cross-compiled) libraries on the build system.
96 cross-compile and cross-link with the target platform's
[all …]
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
Ddo_plc.c41 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/clang/docs/
DCrossCompilation.rst9 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/kmod/testsuite/module-playground/
DREADME4 Some modules are pre-compiled due to needing cross-compilers present on the
10 kernel $ make ARCH=<arch> CROSS_COMPILER=<cross-compiler-prefix> defconfig
11 kernel $ make ARCH=<arch> CROSS_COMPILER=<cross-compiler-prefix> modules_prepare
22 cross-compiler is not needed (example: you are
/external/swiftshader/third_party/LLVM/unittests/Support/
DTypeBuilderTest.cpp185 template<bool cross> class TypeBuilder<MyType, cross> {
191 st.push_back(TypeBuilder<int, cross>::get(Context)); in get()
192 st.push_back(TypeBuilder<int*, cross>::get(Context)); in get()
193 st.push_back(TypeBuilder<void*[], cross>::get(Context)); in get()
208 template<bool cross> class TypeBuilder<MyPortableType, cross> {
214 st.push_back(TypeBuilder<types::i<32>, cross>::get(Context)); in get()
215 st.push_back(TypeBuilder<types::i<32>*, cross>::get(Context)); in get()
216 st.push_back(TypeBuilder<types::i<8>*[], cross>::get(Context)); in get()
/external/llvm/unittests/IR/
DTypeBuilderTest.cpp217 template<bool cross> class TypeBuilder<MyType, cross> {
223 st.push_back(TypeBuilder<int, cross>::get(Context)); in get()
224 st.push_back(TypeBuilder<int*, cross>::get(Context)); in get()
225 st.push_back(TypeBuilder<void*[], cross>::get(Context)); in get()
240 template<bool cross> class TypeBuilder<MyPortableType, cross> {
246 st.push_back(TypeBuilder<types::i<32>, cross>::get(Context)); in get()
247 st.push_back(TypeBuilder<types::i<32>*, cross>::get(Context)); in get()
248 st.push_back(TypeBuilder<types::i<8>*[], cross>::get(Context)); in get()
/external/eigen/bench/
Deig33.cpp144 evecs.col (2) = tmp.row (0).cross (tmp.row (1)).normalized (); in eigen33()
148 evecs.col(1) = tmp.row (0).cross(tmp.row (1)); in eigen33()
156 evecs.col(1) = evecs.col(2).cross(evecs.col(1).cross(evecs.col(2))).normalized(); in eigen33()
157 evecs.col(0) = evecs.col(2).cross(evecs.col(1)); in eigen33()
/external/skqp/infra/bots/assets/armhf_sysroot/
DREADME.md1 ARM (hard float) sysroot for cross-compiling c++ code on a x86_64 Linux bot.
6 libstdc++-4.8-dev-armhf-cross libgcc-4.8-dev-armhf-cross binutils-arm-linux-gnueabihf
/external/skia/infra/bots/assets/armhf_sysroot/
DREADME.md1 ARM (hard float) sysroot for cross-compiling c++ code on a x86_64 Linux bot.
6 libstdc++-4.8-dev-armhf-cross libgcc-4.8-dev-armhf-cross binutils-arm-linux-gnueabihf
/external/llvm/docs/
DHowToCrossCompileLLVM.rst11 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``
61 * ``'-target arm-linux-gnueabihf'`` or whatever is the triple of your cross GCC.
64 * Appropriate use of ``-I`` and ``-L``, depending on how the cross GCC is installed,
71 using Clang as a cross-compiler, you will *also* have to set ``--sysroot``
95 #. If you're using Clang as the cross-compiler, there is a problem in
[all …]
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_Cross.pbtxt18 Pairwise cross product of the vectors in `a` and `b`.
21 summary: "Compute the pairwise cross product."
25 of corresponding 3-element vectors is cross-multiplied independently.
/external/skia/src/utils/
DSkInsetConvexPolygon.cpp24 SkScalar perpDot = v0.cross(v1); in compute_side()
103 SkScalar perpDot = v0.cross(v1); in compute_intersection()
124 SkScalar localS = d.cross(v1) / perpDot; in compute_intersection()
128 SkScalar localT = d.cross(v0) / perpDot; in compute_intersection()
148 SkScalar winding = v0.cross(v1); in is_convex()
156 SkScalar perpDot = v0.cross(v1); in is_convex()
DSkCamera.cpp52 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
230 SkUnit3D::Cross(axis, zenith, &cross); in doUpdate()
252 orien->set(SkMatrix::kMScaleX, x * axis.fX - z * cross.fX); in doUpdate()
253 orien->set(SkMatrix::kMSkewX, x * axis.fY - z * cross.fY); in doUpdate()
254 orien->set(SkMatrix::kMTransX, x * axis.fZ - z * cross.fZ); in doUpdate()
/external/skqp/src/utils/
DSkInsetConvexPolygon.cpp24 SkScalar perpDot = v0.cross(v1); in compute_side()
103 SkScalar perpDot = v0.cross(v1); in compute_intersection()
124 SkScalar localS = d.cross(v1) / perpDot; in compute_intersection()
128 SkScalar localT = d.cross(v0) / perpDot; in compute_intersection()
148 SkScalar winding = v0.cross(v1); in is_convex()
156 SkScalar perpDot = v0.cross(v1); in is_convex()
DSkCamera.cpp52 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
230 SkUnit3D::Cross(axis, zenith, &cross); in doUpdate()
252 orien->set(SkMatrix::kMScaleX, x * axis.fX - z * cross.fX); in doUpdate()
253 orien->set(SkMatrix::kMSkewX, x * axis.fY - z * cross.fY); in doUpdate()
254 orien->set(SkMatrix::kMTransX, x * axis.fZ - z * cross.fZ); in doUpdate()
/external/v8/
Dsnapshot_toolchain.gni48 # TODO(GYP): Currently only regular (non-cross) compiles, and cross-compiles
54 # This is not a cross-compile, so build the snapshot with the current
59 # This is an x64 -> x86 cross-compile, but x64 hosts can usually run x86
64 # This is a mac -> win cross-compile, which is only supported w/ clang.
67 # This is a cross-compile from an x64 host to either a non-Intel target
/external/vulkan-validation-layers/libs/glm/gtx/
Dintersect.inl47 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/ltp/
Dbuild.sh112 cross cross-compile in-tree build (requires set compiler via -c switch)
128 cross) build="build_cross";;
/external/capstone/suite/
Dcompile_all.sh6 for x in default nix32 cross-win32 cross-win64 cygwin-mingw32 cygwin-mingw64 bsd clang gcc; do
/external/skia/docs/
DSkPoint_Reference.bmh1153 #Line # returns cross product ##
1154 Returns the cross product of Vector a and Vector b.
1157 cross product is a three-dimensional vector with x-axis and y-axis values equal
1158 to zero. The cross product z-axis component is returned.
1160 #Param a left side of cross product ##
1161 #Param b right side of cross product ##
1178 SkScalar cross = SkPoint::CrossProduct(vectors[i][1], vectors[i][0]);
1179 str.printf("cross = %g", cross);
1180 paint.setColor(cross >= 0 ? SK_ColorRED : SK_ColorBLUE);
1185 #SeeAlso cross DotProduct
[all …]

12345678910>>...42