/external/swiftshader/third_party/llvm-7.0/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/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | TypeBuilder.h | 96 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/ |
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() 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/ |
D | s_aatriangle.c | 209 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/ |
D | COMPILE.TXT | 2 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/skqp/src/core/ |
D | SkDrawShadowInfo.cpp | 73 h0 = (pts3D[1].cross(pts3D[0])).cross(pts3D[2].cross(pts3D[3])); in GetSpotShadowTransform() 75 h1 = (pts3D[0].cross(pts3D[3])).cross(pts3D[1].cross(pts3D[2])); in GetSpotShadowTransform() 77 h2 = (pts3D[0].cross(pts3D[2])).cross(pts3D[1].cross(pts3D[3])); in GetSpotShadowTransform()
|
/external/skia/src/core/ |
D | SkDrawShadowInfo.cpp | 73 h0 = (pts3D[1].cross(pts3D[0])).cross(pts3D[2].cross(pts3D[3])); in GetSpotShadowTransform() 75 h1 = (pts3D[0].cross(pts3D[3])).cross(pts3D[1].cross(pts3D[2])); in GetSpotShadowTransform() 77 h2 = (pts3D[0].cross(pts3D[2])).cross(pts3D[1].cross(pts3D[3])); in GetSpotShadowTransform()
|
/external/freetype/docs/ |
D | INSTALL.CROSS | 1 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/ |
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/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/CrossDSOCFI/ |
D | thumb.ll | 1 ; RUN: opt -mtriple=armv7-linux-android -S -cross-dso-cfi < %s | FileCheck --check-prefix=THUMB %s 2 ; RUN: opt -mtriple=thumbv7-linux-android -S -cross-dso-cfi < %s | FileCheck --check-prefix=THUMB %s 3 ; RUN: opt -mtriple=i386-linux -S -cross-dso-cfi < %s | FileCheck --check-prefix=NOTHUMB %s 4 ; RUN: opt -mtriple=x86_64-linux -S -cross-dso-cfi < %s | FileCheck --check-prefix=NOTHUMB %s
|
/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/grpc-grpc/ |
D | Rakefile | 29 # cross-compilation is contained in the "ext.cross_platform" array. 101 w64 = { cross: 'x86_64-w64-mingw32', out: 'grpc_c.64.ruby' } 102 w32 = { cross: 'i686-w64-mingw32', out: 'grpc_c.32.ruby' } 105 env_comp = "CC=#{opt[:cross]}-gcc " 106 env_comp += "CXX=#{opt[:cross]}-g++ " 107 env_comp += "LD=#{opt[:cross]}-gcc " 108 … --system --no-ri --no-doc && #{env} #{env_comp} make -j #{out} && #{opt[:cross]}-strip -x -S #{ou… 127 …system "rake cross native gem RUBY_CC_VERSION=2.5.0:2.4.0:2.3.0:2.2.2:2.1.6:2.0.0 V=#{verbose} GRP… 130 …docker_for_windows "gem update --system --no-ri --no-doc && bundle && rake cross native gem RUBY_C…
|
/external/kmod/testsuite/module-playground/ |
D | README | 4 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-7.0/llvm/unittests/IR/ |
D | TypeBuilderTest.cpp | 217 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/swiftshader/third_party/LLVM/unittests/Support/ |
D | TypeBuilderTest.cpp | 185 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/ |
D | TypeBuilderTest.cpp | 217 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/ |
D | eig33.cpp | 144 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/ |
D | README.md | 1 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/grpc-grpc/tools/distrib/ |
D | build_ruby_environment_macos.sh | 22 curl https://raw.githubusercontent.com/rake-compiler/rake-compiler/v1.0.3/tasks/bin/cross-ruby.rake… 26 --- cross-ruby.rake 2018-04-10 11:32:16.000000000 -0700 54 rake -f "$CROSS_RUBY" cross-ruby VERSION="$v" HOST=x86_64-darwin11 MAKE="$MAKE"
|
/external/skia/infra/bots/assets/armhf_sysroot/ |
D | README.md | 1 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/swiftshader/third_party/llvm-7.0/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`` 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/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`` 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/ |
D | api_def_Cross.pbtxt | 18 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/skqp/src/utils/ |
D | SkPolyUtils.cpp | 34 SkScalar perpDot = v.cross(w); in compute_side() 53 quadArea += v0.cross(v1); in SkGetPolygonWinding() 90 SkScalar denom = v0.cross(v1); in compute_intersection() 95 if (!SkScalarNearlyZero(w.cross(v0), kCrossTolerance) || in compute_intersection() 96 !SkScalarNearlyZero(w.cross(v1), kCrossTolerance)) { in compute_intersection() 151 sNumer = w.cross(v1); in compute_intersection() 155 tNumer = w.cross(v0); in compute_intersection() 193 SkScalar perpDot = v0.cross(v1); in SkIsConvexPolygon() 203 SkScalar quadArea = w0.cross(w1); in SkIsConvexPolygon() 264 SkScalar denom = v0.cross(v1); in computeCrossingDistance() [all …]
|