/third_party/skia/third_party/externals/spirv-cross/ |
D | CMakeLists.txt | 73 set(spirv-cross-link-flags "") 76 set(spirv-cross-build-version "unknown") 82 OUTPUT_VARIABLE spirv-cross-build-version 86 message(STATUS "SPIRV-Cross: Git hash: ${spirv-cross-build-version}") 91 string(TIMESTAMP spirv-cross-timestamp) 126 set(spirv-cross-link-flags "${spirv-cross-link-flags} -fsanitize=address") 131 set(spirv-cross-link-flags "${spirv-cross-link-flags} -fsanitize=undefined") 136 set(spirv-cross-link-flags "${spirv-cross-link-flags} -fsanitize=memory") 141 set(spirv-cross-link-flags "${spirv-cross-link-flags} -fsanitize=thread") 201 set(spirv-cross-core-sources [all …]
|
D | test_shaders.sh | 18 ./test_shaders.py shaders ${OPTS} --spirv-cross "$SPIRV_CROSS_PATH" || exit 1 19 ./test_shaders.py shaders ${OPTS} --opt --spirv-cross "$SPIRV_CROSS_PATH" || exit 1 20 ./test_shaders.py shaders-no-opt ${OPTS} --spirv-cross "$SPIRV_CROSS_PATH" || exit 1 21 ./test_shaders.py shaders-msl ${OPTS} --msl --spirv-cross "$SPIRV_CROSS_PATH" || exit 1 22 ./test_shaders.py shaders-msl ${OPTS} --msl --opt --spirv-cross "$SPIRV_CROSS_PATH" || exit 1 23 ./test_shaders.py shaders-msl-no-opt ${OPTS} --msl --spirv-cross "$SPIRV_CROSS_PATH" || exit 1 24 ./test_shaders.py shaders-hlsl ${OPTS} --hlsl --spirv-cross "$SPIRV_CROSS_PATH" || exit 1 25 ./test_shaders.py shaders-hlsl ${OPTS} --hlsl --opt --spirv-cross "$SPIRV_CROSS_PATH" || exit 1 26 ./test_shaders.py shaders-hlsl-no-opt ${OPTS} --hlsl --spirv-cross "$SPIRV_CROSS_PATH" || exit 1 27 ./test_shaders.py shaders-reflection ${OPTS} --reflect --spirv-cross "$SPIRV_CROSS_PATH" || exit 1 [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | es6ClassTest8.types | 51 static cross(v1:Vector, v2:Vector):Vector {return null;} 52 >cross : (v1: Vector, v2: Vector) => Vector 118 this.right = Vector.times(down, Vector.norm(Vector.cross(this.forward, down))); 119 >this.right = Vector.times(down, Vector.norm(Vector.cross(this.forward, down))) : Vector 123 >Vector.times(down, Vector.norm(Vector.cross(this.forward, down))) : Vector 128 >Vector.norm(Vector.cross(this.forward, down)) : Vector 132 >Vector.cross(this.forward, down) : Vector 133 >Vector.cross : (v1: Vector, v2: Vector) => Vector 135 >cross : (v1: Vector, v2: Vector) => Vector 141 this.up = Vector.times(down, Vector.norm(Vector.cross(this.forward, this.right))); [all …]
|
D | classStaticBlock8.errors.txt | 1 …ssStaticBlock/classStaticBlock8.ts(6,21): error TS1107: Jump target cannot cross function boundary. 2 …ssStaticBlock/classStaticBlock8.ts(9,21): error TS1107: Jump target cannot cross function boundary. 3 …sStaticBlock/classStaticBlock8.ts(12,21): error TS1107: Jump target cannot cross function boundary. 4 …sStaticBlock/classStaticBlock8.ts(15,21): error TS1107: Jump target cannot cross function boundary. 15 !!! error TS1107: Jump target cannot cross function boundary. 20 !!! error TS1107: Jump target cannot cross function boundary. 25 !!! error TS1107: Jump target cannot cross function boundary. 30 !!! error TS1107: Jump target cannot cross function boundary.
|
D | es6ClassTest8.js | 18 static cross(v1:Vector, v2:Vector):Vector {return null;} 36 this.right = Vector.times(down, Vector.norm(Vector.cross(this.forward, down))); 37 this.up = Vector.times(down, Vector.norm(Vector.cross(this.forward, this.right))); 63 Vector.cross = function (v1, v2) { return null; }; function in Vector 72 this.right = Vector.times(down, Vector.norm(Vector.cross(this.forward, down))); 73 this.up = Vector.times(down, Vector.norm(Vector.cross(this.forward, this.right)));
|
D | es6ClassTest8.symbols | 52 static cross(v1:Vector, v2:Vector):Vector {return null;} 53 >cross : Symbol(Vector.cross, Decl(es6ClassTest8.ts, 15, 60)) 120 this.right = Vector.times(down, Vector.norm(Vector.cross(this.forward, down))); 131 >Vector.cross : Symbol(Vector.cross, Decl(es6ClassTest8.ts, 15, 60)) 133 >cross : Symbol(Vector.cross, Decl(es6ClassTest8.ts, 15, 60)) 139 this.up = Vector.times(down, Vector.norm(Vector.cross(this.forward, this.right))); 150 >Vector.cross : Symbol(Vector.cross, Decl(es6ClassTest8.ts, 15, 60)) 152 >cross : Symbol(Vector.cross, Decl(es6ClassTest8.ts, 15, 60))
|
/third_party/skia/tests/ |
D | GrVxTest.cpp | 19 REPORTER_ASSERT(r, grvx::cross({0,1}, {0,1}) == 0); in DEF_TEST() 20 REPORTER_ASSERT(r, grvx::cross({1,0}, {1,0}) == 0); in DEF_TEST() 21 REPORTER_ASSERT(r, grvx::cross({1,1}, {1,1}) == 0); in DEF_TEST() 22 REPORTER_ASSERT(r, grvx::cross({1,1}, {1,-1}) == -2); in DEF_TEST() 23 REPORTER_ASSERT(r, grvx::cross({1,1}, {-1,1}) == 2); in DEF_TEST() 37 grvx::cross({a,b}, {c,d}), SkPoint::CrossProduct({a,b}, {c,d}), kTolerance)); in DEF_TEST()
|
/third_party/skia/resources/sksl/intrinsics/ |
D | Cross.sksl | 4 sk_FragColor.x = cross(ah, bh); 5 sk_FragColor.y = half(cross(af, bf)); 6 sk_FragColor.z = cross(half2(3, 0), half2(-1, 4)); 7 sk_FragColor.xyz = cross(half3(3, 0, 2), half3(-1, 4, 2)); 8 sk_FragColor.yzw = cross(half3(1, 4, -7), half3(2, -1, 4));
|
/third_party/libwebsockets/READMEs/ |
D | README.build.md | 387 For cross-build or building against local miniz, you need the following kind of 506 @section cross Cross compiling 508 To enable cross-compiling **libwebsockets** using CMake you need to create 510 CMake will then use the cross compilers and build paths specified in this file 513 …Libwebsockets** includes an example toolchain file [cross-arm-linux-gnueabihf.cmake](../contrib/cr… 516 The commandline to configure for cross with this would look like 518 $ cmake .. -DCMAKE_INSTALL_PREFIX:PATH=/usr/lib/my-cross-root \ 519 -DCMAKE_TOOLCHAIN_FILE=../contrib/cross-arm-linux-gnueabihf.cmake \ 523 The example shows how to build with no external cross lib dependencies, you 524 need to provide the cross libraries otherwise. [all …]
|
D | README.build-android.md | 16 `./contrib/cross-aarch64-android.cmake` toolchain file is shipped. You can 19 ## Fetching lws (needed first for cross toolchain file) 30 The reason is that building mbedtls need the cross toolchain file from 46 cmake .. -DCMAKE_TOOLCHAIN_FILE=../libwebsockets/contrib/cross-aarch64-android.cmake \ 54 The lws toolchain file sets the path to install into as the cross root path, so 62 same toolchain file that sets the cross root to the same place as mbedtls, it 69 cmake .. -DCMAKE_TOOLCHAIN_FILE=../libwebsockets/contrib/cross-aarch64-android.cmake \ 77 ndk cross root.
|
D | README.porting.md | 10 ## 1) Prepare the cmake cross-build file if necessary 12 CMake isolates its settings for cross-build into a separate file, which can be 15 Find a similar examples already in `./contrib/cross-*` and copy and adapt it 18 All settings related to toolchain should go in there. For cross-toolchain, 55 You can now do test builds using the cross-build file, your platform flag in
|
/third_party/toybox/scripts/ |
D | cross.sh | 38 "$0" $TARGET "$@" 2>&1 || mv cross-log-$TARGET.{txt,failed} 39 } | tee cross-log-$TARGET.txt 47 Y=$(echo "$CCC/$X"-*cross) 49 Y=$(readlink -f "$CCC"/$X-*cross)
|
D | mcm-buildall.sh | 8 echo Run this script in musl-cross-make directory to make "ccc" directory. 10 echo " "git clone https://github.com/richfelker/musl-cross-make 11 echo " "cd musl-cross-make 43 TYPE=cross 82 if [ ! -z "$RENAME" ] && [ "$TYPE" == cross ]
|
/third_party/skia/docs/examples/ |
D | Point_cross.cpp | 20 SkScalar cross = vectors[i][0].cross(vectors[i][1]); 21 str.printf("cross = %g", cross); 22 paint.setColor(cross >= 0 ? SK_ColorRED : SK_ColorBLUE);
|
D | Point_CrossProduct.cpp | 20 SkScalar cross = SkPoint::CrossProduct(vectors[i][1], vectors[i][0]); 21 str.printf("cross = %g", cross); 22 paint.setColor(cross >= 0 ? SK_ColorRED : SK_ColorBLUE);
|
/third_party/skia/third_party/externals/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 …]
|
/third_party/skia/src/core/ |
D | SkDrawShadowInfo.cpp | 95 h0 = (pts3D[1].cross(pts3D[0])).cross(pts3D[2].cross(pts3D[3])); in GetSpotShadowTransform() 97 h1 = (pts3D[0].cross(pts3D[3])).cross(pts3D[1].cross(pts3D[2])); in GetSpotShadowTransform() 99 h2 = (pts3D[0].cross(pts3D[2])).cross(pts3D[1].cross(pts3D[3])); in GetSpotShadowTransform()
|
/third_party/protobuf/kokoro/release/ruby/macos/ruby/ |
D | ruby_build_environment.sh | 24 curl https://raw.githubusercontent.com/rake-compiler/rake-compiler/v1.1.0/tasks/bin/cross-ruby.rake… 28 --- cross-ruby.rake 2018-04-10 11:32:16.000000000 -0700 60 rake -f "$CROSS_RUBY" cross-ruby VERSION="$v" HOST=x86_64-darwin11 MAKE="$MAKE" 68 rake -f "$CROSS_RUBY" cross-ruby VERSION="$v" HOST=x86_64-darwin11 MAKE="$MAKE"
|
/third_party/libwebsockets/contrib/ |
D | cross-w32.cmake | 6 # cmake .. -DCMAKE_TOOLCHAIN_FILE=../contrib/cross-w32.cmake -DLWS_WITH_SSL=0 9 # the outermost path to your cross toolchain 12 # your cross root 27 # our desire for cross-build release optimization policy for code built to run 31 # sane value for cross-build here. Notice some gcc versions enable broken
|
D | cross-w64.cmake | 6 # cmake .. -DCMAKE_TOOLCHAIN_FILE=../contrib/cross-w64.cmake 9 # the outermost path to your cross toolchain 12 # your cross root 29 # our desire for cross-build release optimization policy for code built to run 33 # sane value for cross-build here. Notice some gcc versions enable broken
|
/third_party/ltp/ |
D | build.sh | 172 cross cross-compile build (requires set compiler via -c switch) 179 test run only 'make test' (not supported for cross-compile build) 180 test-c run only 'make test-c' (not supported for cross-compile build) 181 test-shell run only 'make test-shell' (not supported for cross-compile build) 213 32|cross|native) build="$OPTARG";;
|
/third_party/mesa3d/.gitlab-ci/container/debian/ |
D | android_build.sh | 26 sh .gitlab-ci/container/create-android-cross-file.sh /$ndk x86_64-linux-android x86_64 x86_64 27 sh .gitlab-ci/container/create-android-cross-file.sh /$ndk i686-linux-android x86 x86 28 sh .gitlab-ci/container/create-android-cross-file.sh /$ndk aarch64-linux-android arm armv8 29 sh .gitlab-ci/container/create-android-cross-file.sh /$ndk arm-linux-androideabi arm armv7hl armv7a… 46 --cross-file=/cross_file-$arch.txt \
|
/third_party/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
|
/third_party/typescript/tests/cases/compiler/ |
D | es6ClassTest8.ts | 17 static cross(v1:Vector, v2:Vector):Vector {return null;} method in Vector 35 this.right = Vector.times(down, Vector.norm(Vector.cross(this.forward, down))); 36 this.up = Vector.times(down, Vector.norm(Vector.cross(this.forward, this.right)));
|
/third_party/skia/src/utils/ |
D | SkCamera.cpp | 73 SkV3 axis, zenith, cross; in doUpdate() local 81 cross = axis.cross(zenith); in doUpdate() 101 orien->set(SkMatrix::kMScaleX, x * axis.x - z * cross.x); in doUpdate() 102 orien->set(SkMatrix::kMSkewX, x * axis.y - z * cross.y); in doUpdate() 103 orien->set(SkMatrix::kMTransX, x * axis.z - z * cross.z); in doUpdate()
|