Home
last modified time | relevance | path

Searched +full:- +full:- +full:workspace (Results 1 – 25 of 610) sorted by relevance

12345678910>>...25

/third_party/flutter/skia/docker/
Dcloudbuild.yaml1 # Builds both skia-release:prod and a new fiddler using Google Container
2 # Builder: https://cloud.google.com/container-builder/docs/
7 …# gcloud builds submit --config cloudbuild.yaml --no-source --substitutions=COMMIT_SHA=b2acf0a9…
11 #- name: 'gcr.io/cloud-builders/git'
14 - name: 'debian:testing-slim'
15 args: ['mkdir', '-p', '--mode=777', '/workspace/__doxygen_staging']
17 - name: 'gcr.io/skia-public/doxygen:testing-slim'
22 - name: 'gcr.io/cloud-builders/docker'
23 args: ['build', '-t', 'gcr.io/$PROJECT_ID/skia-release:prod', './docker/skia-release']
26 - name: 'gcr.io/cloud-builders/docker'
[all …]
/third_party/node/tools/
Dupdate-cares.sh2 set -e
3 # Shell script to update c-ares in the source tree to a specific version
9 if [ "$#" -le 0 ]; then
10 echo "Error: please provide an c-ares version to update to"
15 echo "Making temporary workspace"
17 WORKSPACE=$(mktemp -d 2> /dev/null || mktemp -d -t 'tmp')
21 [ -d "$WORKSPACE" ] && rm -rf "$WORKSPACE"
27 ARES_REF="cares-$(echo "$ARES_VERSION" | tr . _)"
28 ARES_TARBALL="c-ares-$ARES_VERSION.tar.gz"
30 cd "$WORKSPACE"
[all …]
Dupdate-npm.sh2 set -e
9 if [ "$#" -le 0 ]; then
14 echo "Making temporary workspace"
16 WORKSPACE=$(mktemp -d 2> /dev/null || mktemp -d -t 'tmp')
20 [ -d "$WORKSPACE" ] && rm -rf "$WORKSPACE"
26 cd "$WORKSPACE"
28 git clone --depth=1 --branch="v$NPM_VERSION" git@github.com:npm/cli.git
39 rm -rf npm/
43 tar zxf "$WORKSPACE"/cli/release/npm-"$NPM_VERSION".tgz
48 echo "Please git add npm, commit the new version, and whitespace-fix:"
[all …]
/third_party/rust/crates/io-lifetimes/.github/workflows/
Dmain.yml6 - main
12 runs-on: ubuntu-latest
14 - uses: actions/checkout@v3
17 - uses: ./.github/actions/install-rust
20 - run: cargo fmt --all -- --check
24 runs-on: ${{ matrix.os }}
29 - build: stable
30 os: ubuntu-latest
32 - build: nightly
33 os: ubuntu-latest
[all …]
/third_party/skia/third_party/externals/libjpeg-turbo/
Djcdctmgr.c5 * Copyright (C) 1994-1996, Thomas G. Lane.
6 * libjpeg-turbo Modifications:
7 * Copyright (C) 1999-2006, MIYASAKA Masaru.
9 * Copyright (C) 2011, 2014-2015, D. R. Commander.
13 * This file contains the forward-DCT management logic.
33 DCTELEM *workspace);
36 FAST_FLOAT *workspace);
39 DCTELEM *workspace);
42 FAST_FLOAT *workspace);
54 /* The actual post-DCT divisors --- not identical to the quant table
[all …]
/third_party/libjpeg-turbo/
Djcdctmgr.c5 * Copyright (C) 1994-1996, Thomas G. Lane.
6 * libjpeg-turbo Modifications:
7 * Copyright (C) 1999-2006, MIYASAKA Masaru.
9 * Copyright (C) 2011, 2014-2015, D. R. Commander.
13 * This file contains the forward-DCT management logic.
33 DCTELEM *workspace);
36 FAST_FLOAT *workspace);
39 DCTELEM *workspace);
42 FAST_FLOAT *workspace);
54 /* The actual post-DCT divisors --- not identical to the quant table
[all …]
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/
Djcdctmgr.c5 * Copyright (C) 1994-1996, Thomas G. Lane.
6 * libjpeg-turbo Modifications:
7 * Copyright (C) 1999-2006, MIYASAKA Masaru.
9 * Copyright (C) 2011, 2014-2015, D. R. Commander.
13 * This file contains the forward-DCT management logic.
33 DCTELEM *workspace);
36 FAST_FLOAT *workspace);
39 DCTELEM *workspace);
42 FAST_FLOAT *workspace);
54 /* The actual post-DCT divisors --- not identical to the quant table
[all …]
/third_party/rust/crates/rustix/.github/workflows/
Dmain.yml6 - main
13 runs-on: ubuntu-latest
15 - uses: actions/checkout@v3
18 - uses: ./.github/actions/install-rust
21 - run: cargo fmt --all -- --check
25 runs-on: ${{ matrix.os }}
30 - build: stable
31 os: ubuntu-latest
33 - build: nightly
34 os: ubuntu-latest
[all …]
/third_party/benchmark/.github/workflows/
Dbuild-and-test.yml1 name: build-and-test
8 # TODO: add 32-bit builds (g++ and clang++) for ubuntu
9 # (requires g++-multilib and libc6:i386)
14 runs-on: ${{ matrix.os }}
16 fail-fast: false
18 os: [ubuntu-latest, ubuntu-20.04, macos-latest]
22 - displayTargetName: windows-latest-release
23 os: windows-latest
25 - displayTargetName: windows-latest-debug
26 os: windows-latest
[all …]
Dbuild-and-test-perfcounters.yml1 name: build-and-test-perfcounters
13 runs-on: ${{ matrix.os }}
15 fail-fast: false
17 os: [ubuntu-latest, ubuntu-20.04]
20 - uses: actions/checkout@v2
22 - name: install libpfm
23 run: sudo apt -y install libpfm4-dev
25 - name: setup cmake
26 uses: jwlawson/actions-setup-cmake@v1.9
28 cmake-version: '3.5.1'
[all …]
/third_party/googletest/docs/
Dquickstart-bazel.md26 ## Set up a Bazel workspace
29 [Bazel workspace](https://docs.bazel.build/versions/master/build-ref.html#workspace)
31 software you want to build. Each workspace directory has a text file named
32 `WORKSPACE` which may be empty, or may contain references to external
35 First, create a directory for your workspace:
41 Next, you’ll create the `WORKSPACE` file to specify dependencies. A common and
46 To do this, in the root directory of your workspace (`my_workspace/`), create a
47 file named `WORKSPACE` with the following contents:
55 strip_prefix = "googletest-609281088cfefc76f9d0ce82e1ff6c30cc3591e5",
67 code, so add the following to the `WORKSPACE` file:
[all …]
/third_party/libjpeg-turbo/simd/arm/
Djquanti-neon.c2 * jquanti-neon.c - sample data conversion and quantization (Arm Neon)
4 * Copyright (C) 2020-2021, Arm Limited. All Rights Reserved.
6 * This software is provided 'as-is', without any express or implied
38 * To prepare sample values for the DCT, load samples into a DCT workspace,
39 * subtracting CENTERJSAMPLE (128). The samples, now in the range [-128, 127],
40 * are also widened from 8- to 16-bit.
46 DCTELEM *workspace) in jsimd_convsamp_neon() argument
74 vst1q_s16(workspace + 0 * DCTSIZE, row0); in jsimd_convsamp_neon()
75 vst1q_s16(workspace + 1 * DCTSIZE, row1); in jsimd_convsamp_neon()
76 vst1q_s16(workspace + 2 * DCTSIZE, row2); in jsimd_convsamp_neon()
[all …]
/third_party/skia/third_party/externals/libjpeg-turbo/simd/arm/
Djquanti-neon.c2 * jquanti-neon.c - sample data conversion and quantization (Arm Neon)
6 * This software is provided 'as-is', without any express or implied
38 * To prepare sample values for the DCT, load samples into a DCT workspace,
39 * subtracting CENTERJSAMPLE (128). The samples, now in the range [-128, 127],
40 * are also widened from 8- to 16-bit.
46 DCTELEM *workspace) in jsimd_convsamp_neon() argument
74 vst1q_s16(workspace + 0 * DCTSIZE, row0); in jsimd_convsamp_neon()
75 vst1q_s16(workspace + 1 * DCTSIZE, row1); in jsimd_convsamp_neon()
76 vst1q_s16(workspace + 2 * DCTSIZE, row2); in jsimd_convsamp_neon()
77 vst1q_s16(workspace + 3 * DCTSIZE, row3); in jsimd_convsamp_neon()
[all …]
/third_party/libjpeg-turbo/simd/powerpc/
Djquanti-altivec.c2 * AltiVec optimizations for libjpeg-turbo
4 * Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved.
6 * This software is provided 'as-is', without any express or implied
52 DCTELEM *workspace) in jsimd_convsamp_altivec() argument
90 vec_st(out0, 0, workspace); in jsimd_convsamp_altivec()
91 vec_st(out1, 16, workspace); in jsimd_convsamp_altivec()
92 vec_st(out2, 32, workspace); in jsimd_convsamp_altivec()
93 vec_st(out3, 48, workspace); in jsimd_convsamp_altivec()
94 vec_st(out4, 64, workspace); in jsimd_convsamp_altivec()
95 vec_st(out5, 80, workspace); in jsimd_convsamp_altivec()
[all …]
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/simd/powerpc/
Djquanti-altivec.c2 * AltiVec optimizations for libjpeg-turbo
4 * Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved.
6 * This software is provided 'as-is', without any express or implied
52 DCTELEM *workspace) in jsimd_convsamp_altivec() argument
90 vec_st(out0, 0, workspace); in jsimd_convsamp_altivec()
91 vec_st(out1, 16, workspace); in jsimd_convsamp_altivec()
92 vec_st(out2, 32, workspace); in jsimd_convsamp_altivec()
93 vec_st(out3, 48, workspace); in jsimd_convsamp_altivec()
94 vec_st(out4, 64, workspace); in jsimd_convsamp_altivec()
95 vec_st(out5, 80, workspace); in jsimd_convsamp_altivec()
[all …]
/third_party/skia/site/docs/dev/contrib/
Dpatch.md1 ---
4 ---
7 externally-submitted patch, this is how to do it. (This technique is useful in
13 - For the examples below, we will assume that this is the change you want to
15 - These instructions should work on Mac or Linux; Windows is trickier, because
19 …//dev.chromium.org/developers/contributing-code#TOC-Instructions-for-Reviewer:-Checking-in-the-pat…
29 1. Prepare your local workspace to accept the patch.
31 - cd into the root directory (usually `trunk/`) of the workspace where you
33 - Make sure that the workspace is up-to-date and clean (or "updated and clean
35 revision of the repo, you may need to sync your local workspace to that
[all …]
/third_party/flutter/skia/site/dev/contrib/
Dpatch.md5 externally-submitted patch, this is how to do it. (This technique is useful in
17 …//dev.chromium.org/developers/contributing-code#TOC-Instructions-for-Reviewer:-Checking-in-the-pat…
27 1. Prepare your local workspace to accept the patch.
29 * cd into the root directory (usually `trunk/`) of the workspace where you
31 * Make sure that the workspace is up-to-date and clean (or "updated and
33 an old revision of the repo, you may need to sync your local workspace
39 link near the upper right-hand corner. Right-click on that link and copy
47 --output patch.txt
50 --output-document=patch.txt
58 * You should still be in the root directory of the workspace where you want
[all …]
/third_party/libjpeg-turbo/simd/i386/
Djquantf-sse2.asm2 ; jquantf.asm - sample data conversion and quantization (SSE & SSE2)
8 ; Copyright (C) 1999-2006, MIYASAKA Masaru.
20 ; --------------------------------------------------------------------------
24 ; Load data into workspace, applying unsigned->signed conversion
28 ; FAST_FLOAT *workspace);
33 %define workspace ebp + 16 ; FAST_FLOAT *workspace
53 mov edi, POINTER [workspace] ; (DCTELEM *)
74 psrad xmm2, (DWORD_BIT-BYTE_BIT) ; xmm2=(0123)
75 psrad xmm0, (DWORD_BIT-BYTE_BIT) ; xmm0=(4567)
78 psrad xmm3, (DWORD_BIT-BYTE_BIT) ; xmm3=(89AB)
[all …]
Djquanti-avx2.asm2 ; jquanti.asm - sample data conversion and quantization (AVX2)
9 ; Copyright (C) 1999-2006, MIYASAKA Masaru.
21 ; --------------------------------------------------------------------------
25 ; Load data into workspace, applying unsigned->signed conversion
29 ; DCTELEM *workspace);
34 %define workspace ebp + 16 ; DCTELEM *workspace
50 mov edi, POINTER [workspace] ; (DCTELEM *)
105 ; --------------------------------------------------------------------------
115 ; DCTELEM *workspace);
127 %define workspace ebp + 16 ; DCTELEM *workspace
[all …]
Djquanti-sse2.asm2 ; jquanti.asm - sample data conversion and quantization (SSE2)
8 ; Copyright (C) 1999-2006, MIYASAKA Masaru.
20 ; --------------------------------------------------------------------------
24 ; Load data into workspace, applying unsigned->signed conversion
28 ; DCTELEM *workspace);
33 %define workspace ebp + 16 ; DCTELEM *workspace
53 mov edi, POINTER [workspace] ; (DCTELEM *)
96 ; --------------------------------------------------------------------------
106 ; DCTELEM *workspace);
118 %define workspace ebp + 16 ; DCTELEM *workspace
[all …]
/third_party/skia/third_party/externals/libjpeg-turbo/simd/i386/
Djquantf-sse2.asm2 ; jquantf.asm - sample data conversion and quantization (SSE & SSE2)
8 ; Copyright (C) 1999-2006, MIYASAKA Masaru.
20 ; --------------------------------------------------------------------------
24 ; Load data into workspace, applying unsigned->signed conversion
28 ; FAST_FLOAT *workspace);
33 %define workspace ebp + 16 ; FAST_FLOAT *workspace
53 mov edi, POINTER [workspace] ; (DCTELEM *)
74 psrad xmm2, (DWORD_BIT-BYTE_BIT) ; xmm2=(0123)
75 psrad xmm0, (DWORD_BIT-BYTE_BIT) ; xmm0=(4567)
78 psrad xmm3, (DWORD_BIT-BYTE_BIT) ; xmm3=(89AB)
[all …]
Djquanti-avx2.asm2 ; jquanti.asm - sample data conversion and quantization (AVX2)
9 ; Copyright (C) 1999-2006, MIYASAKA Masaru.
21 ; --------------------------------------------------------------------------
25 ; Load data into workspace, applying unsigned->signed conversion
29 ; DCTELEM *workspace);
34 %define workspace ebp + 16 ; DCTELEM *workspace
50 mov edi, POINTER [workspace] ; (DCTELEM *)
105 ; --------------------------------------------------------------------------
115 ; DCTELEM *workspace);
127 %define workspace ebp + 16 ; DCTELEM *workspace
[all …]
Djquant-sse.asm2 ; jquant.asm - sample data conversion and quantization (SSE & MMX)
8 ; Copyright (C) 1999-2006, MIYASAKA Masaru.
20 ; --------------------------------------------------------------------------
24 ; Load data into workspace, applying unsigned->signed conversion
28 ; FAST_FLOAT *workspace);
33 %define workspace ebp + 16 ; FAST_FLOAT *workspace
53 mov edi, POINTER [workspace] ; (DCTELEM *)
76 psrad mm4, (DWORD_BIT-BYTE_BIT) ; mm4=(01)
77 psrad mm2, (DWORD_BIT-BYTE_BIT) ; mm2=(23)
80 psrad mm5, (DWORD_BIT-BYTE_BIT) ; mm5=(45)
[all …]
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/simd/i386/
Djquantf-sse2.asm2 ; jquantf.asm - sample data conversion and quantization (SSE & SSE2)
8 ; Copyright (C) 1999-2006, MIYASAKA Masaru.
22 ; --------------------------------------------------------------------------
26 ; Load data into workspace, applying unsigned->signed conversion
30 ; FAST_FLOAT *workspace);
35 %define workspace ebp + 16 ; FAST_FLOAT *workspace
55 mov edi, POINTER [workspace] ; (DCTELEM *)
76 psrad xmm2, (DWORD_BIT-BYTE_BIT) ; xmm2=(0123)
77 psrad xmm0, (DWORD_BIT-BYTE_BIT) ; xmm0=(4567)
80 psrad xmm3, (DWORD_BIT-BYTE_BIT) ; xmm3=(89AB)
[all …]
Djquanti-avx2.asm2 ; jquanti.asm - sample data conversion and quantization (AVX2)
9 ; Copyright (C) 1999-2006, MIYASAKA Masaru.
23 ; --------------------------------------------------------------------------
27 ; Load data into workspace, applying unsigned->signed conversion
31 ; DCTELEM *workspace);
36 %define workspace ebp + 16 ; DCTELEM *workspace
52 mov edi, POINTER [workspace] ; (DCTELEM *)
107 ; --------------------------------------------------------------------------
117 ; DCTELEM *workspace);
129 %define workspace ebp + 16 ; DCTELEM *workspace
[all …]

12345678910>>...25