| /external/rust/crates/grpcio/.github/workflows/ |
| D | ci.yml | 7 - master 9 - cron: '0 22 * * *' 13 …# Some of the bindgen tests generate "deref-nullptr" warnings, see https://github.com/rust-lang/ru… 14 RUSTFLAGS: "--deny=warnings --allow deref-nullptr" 18 Linux-Format: 19 name: Linux-Format 20 runs-on: ubuntu-latest 22 - uses: actions/checkout@v2 23 - run: sudo apt-get install -y clang-tidy-9 24 … - run: sudo update-alternatives --install /usr/bin/clang-tidy clang-tidy /usr/bin/clang-tidy-9 100 [all …]
|
| /external/angle/scripts/ |
| D | vk_mandatory_format_support_capture_to_json.js | 2 * Copyright 2018 The ANGLE Project Authors. All rights reserved. 3 * Use of this source code is governed by a BSD-style license that can be 6 * Instructions: Copy all the tables from the HTML source to a plain document 17 // Map all features to indexes of squares. 18 $("#features-formats-mandatory-features-subbyte td").each(function() { 22 indexToFeatureMap[index--] = $(this).text(); 28 ["features-formats-mandatory-features-subbyte", 29 "features-formats-mandatory-features-2byte", 30 "features-formats-mandatory-features-4byte", 31 "features-formats-mandatory-features-10bit", [all …]
|
| /external/rust/beto-rust/nearby/scripts/ |
| D | build-script.sh | 7 # http://www.apache.org/licenses/LICENSE-2.0 16 # specific components of the beto-rust repo. To load these into your environment 17 # run `source ./scripts/build-script.sh` Then run the functions from root 20 export SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) 24 set -e 25 …icense -c "Google LLC" -l apache -ignore=**/android/build/** -ignore=target/** -ignore=**/target/*… 30 set -e 32 cargo deny --workspace check 35 # Checks everything in beto-rust 37 set -e [all …]
|
| /external/rust/crates/ring/src/ |
| D | cpu.rs | 5 // copyright notice and this permission notice appear in all copies. 7 // THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES 8 // WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 15 /// A witness indicating that CPU features have been detected and cached. 17 /// TODO: Eventually all feature detection logic should be done through 18 /// functions that accept a `Features` parameter, to guarantee that nothing 21 /// This is a zero-sized type so that it can be "stored" wherever convenient. 23 pub(crate) struct Features(()); struct 26 pub(crate) fn features() -> Features { in features() function 27 // We don't do runtime feature detection on aarch64-apple-* as all AAarch64 in features() [all …]
|
| /external/crosvm/ |
| D | Cargo.toml | 6 default-run = "crosvm" 15 name = "crosvm-direct" 17 required-features = [ "direct" ] 21 overflow-checks = true 23 [profile.release-test] 30 opt-level = "s" 39 # Explicitly list all crates of crosvm as workspace members since not all of them may be referenced 53 "common/cros-fuzz", 64 "crosvm-fuzz", 78 "media/cros-codecs", [all …]
|
| /external/rust/crates/vulkano/src/device/ |
| D | features.rs | 3 // <LICENSE-APACHE or 4 // https://www.apache.org/licenses/LICENSE-2.0> or the MIT 5 // license <LICENSE-MIT or https://opensource.org/licenses/MIT>, 6 // at your option. All files in the project carrying such 13 macro_rules! features { macro 24 /// Represents all the features that are available on a physical device or enabled on 27 /// Note that the `robust_buffer_access` is guaranteed to be supported by all Vulkan 33 /// use vulkano::device::Features; 35 /// let minimal_features = Features { 37 /// .. Features::none() [all …]
|
| /external/llvm/lib/Support/ |
| D | Host.cpp | 1 //===-- Host.cpp - Implement OS Host Concept --------------------*- C++ -*-===// 8 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 25 // Include the platform-specific parts of this class. 42 #define DEBUG_TYPE "host-detection" 44 //===----------------------------------------------------------------------===// 48 //===----------------------------------------------------------------------===// 62 return -1; in readCpuInfo() 67 return -1; in readCpuInfo() 172 /// getX86CpuIDAndInfo - Execute the specified cpuid and return the 4 values in [all …]
|
| /external/rust/crates/rusticata-macros/ |
| D | .travis.yml | 5 - rust: stable 7 - NAME="stable" 8 - FEATURES='' 9 - rust: stable 11 - NAME="stable,clippy" 12 - FEATURES='' 13 - CLIPPY=yes 14 - rust: stable 16 - NAME="stable,fmt" 17 - FEATURES='' [all …]
|
| /external/rust/crates/criterion/ci/ |
| D | script.sh | 1 set -ex 5 FEATURES="async_smol async_tokio async_std async_futures" 8 cargo clippy --all -- -D warnings 11 cargo doc --features "$FEATURES" --all --no-deps 15 cp -r book/book/html/ target/doc/book/ 16 travis-cargo doc-upload || true 18 cargo fmt --all -- --check 21 cargo build -Z minimal-versions 23 export RUSTFLAGS="-D warnings" 25 cargo build --features "$FEATURES" $BUILD_ARGS [all …]
|
| /external/rust/crates/regex/ |
| D | Cargo.toml.orig | 5 license = "MIT OR Apache-2.0" 7 repository = "https://github.com/rust-lang/regex" 9 homepage = "https://github.com/rust-lang/regex" 12 finite automata and guarantees linear time matching on all inputs. 14 categories = ["text-processing"] 21 "bench", "regex-capi", "regex-debug", "regex-syntax", 27 # Doc tests fail when some features aren't present. The easiest way to work 29 # with `cargo test --doc`. 32 # Features are documented in the "Crate features" section of the crate docs: 33 # https://docs.rs/regex/*/#crate-features [all …]
|
| /external/rust/crates/combine/ |
| D | ci.sh | 1 #!/bin/bash -x 2 set -ex 5 cargo "$@" test --all-features 6 cargo "$@" test --all-features --examples 8 cargo "$@" test --bench json --bench http -- --test 9 cargo "$@" check --bench mp4 --features mp4 11 cargo "$@" build --no-default-features --features alloc 12 cargo "$@" test --no-default-features --features alloc --examples 14 cargo "$@" build --no-default-features 15 cargo "$@" test --no-default-features --examples [all …]
|
| /external/rust/crates/futures/ |
| D | Cargo.toml.orig | 5 rust-version = "1.45" 6 license = "MIT OR Apache-2.0" 9 repository = "https://github.com/rust-lang/futures-rs" 10 homepage = "https://rust-lang.github.io/futures-rs" 13 composability, and iterator-like interfaces. 18 futures-core = { path = "../futures-core", version = "0.3.26", default-features = false } 19 futures-task = { path = "../futures-task", version = "0.3.26", default-features = false } 20 futures-channel = { path = "../futures-channel", version = "0.3.26", default-features = false, feat… 21 futures-executor = { path = "../futures-executor", version = "0.3.26", default-features = false, op… 22 futures-io = { path = "../futures-io", version = "0.3.26", default-features = false } [all …]
|
| D | Cargo.toml | 5 # with all versions of Cargo and also rewrite `path` dependencies 14 rust-version = "1.45" 19 composability, and iterator-like interfaces. 21 homepage = "https://rust-lang.github.io/futures-rs" 29 license = "MIT OR Apache-2.0" 30 repository = "https://github.com/rust-lang/futures-rs" 33 all-features = true 34 rustdoc-args = [ 35 "--cfg", 40 features = [ [all …]
|
| /external/rust/crates/serde_json/.github/workflows/ |
| D | ci.yml | 12 RUSTFLAGS: -Dwarnings 17 runs-on: ${{matrix.os}}-latest 19 fail-fast: false 22 timeout-minutes: 45 24 - uses: actions/checkout@v3 25 - uses: dtolnay/rust-toolchain@nightly 26 - run: cargo test 27 - run: cargo test --features preserve_order --tests -- --skip ui --exact 28 - run: cargo test --features float_roundtrip --tests -- --skip ui --exact 29 - run: cargo test --features arbitrary_precision --tests -- --skip ui --exact [all …]
|
| /external/rust/crates/bstr/ |
| D | Cargo.toml.orig | 5 description = "A string type that is not required to be valid UTF-8." 11 license = "MIT OR Apache-2.0" 12 categories = ["text-processing", "encoding"] 15 rust-version = "1.60" 24 [features] 28 unicode = ["dep:once_cell", "dep:regex-automata"] 32 memchr = { version = "2.4.0", default-features = false } 34 regex-automata = { version = "0.1.5", default-features = false, optional = true } 35 serde = { version = "1.0.85", default-features = false, optional = true } 37 [dev-dependencies] [all …]
|
| /external/rust/crates/virtio-drivers/.github/workflows/ |
| D | main.yml | 10 runs-on: ubuntu-latest 12 - uses: actions/checkout@v2 13 - uses: actions-rs/toolchain@v1 18 - name: Check code format 19 uses: actions-rs/cargo@v1 22 args: --all -- --check 23 - name: Clippy 24 uses: actions-rs/clippy-check@v1 29 runs-on: ubuntu-latest 31 - uses: actions/checkout@v2 [all …]
|
| /external/rust/crates/libfuzzer-sys/libfuzzer/ |
| D | FuzzerMerge.cpp | 1 //===- FuzzerMerge.cpp - merging corpora ----------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 //===----------------------------------------------------------------------===// 78 const size_t kInvalidStartMarker = -1; in Parse() 107 Files[CurrentFileIdx].Features = TmpFeatures; in Parse() 129 Res += sizeof(F) + F.Features.size() * sizeof(F.Features[0]); in ApproximateMemoryConsumption() 134 // Returns the number of new features added. 140 NewFiles->clear(); in Merge() 141 NewFeatures->clear(); in Merge() [all …]
|
| /external/rust/crates/serde_cbor/ |
| D | .travis.yml | 3 - 1.40.0 4 - stable 5 - beta 6 - nightly 9 - rust: nightly 12 - rustup component add rustfmt 13 …- rustup target add thumbv7em-none-eabihf # Any target that does not have a standard library w… 15 - cargo fmt --all -- --check 16 - (rustup component add clippy && cargo clippy --all -- -D clippy::all) || true 17 - cargo build [all …]
|
| /external/cronet/net/docs/ |
| D | life-of-a-feature.md | 3 In the years since the Chromium browser was first open-sourced, the `//net` 6 both in the Chromium browser and in other Google and third-party products 14 To make it easier to contribute new features or to change existing 26 constraints, see [Supported Projects](supported-projects.md). When 30 * Does this feature apply to all supported projects, or is this something 31 like a Browser-only feature? 32 * Does this feature apply to all supported platforms, or is this something 38 * Does it depend on Google services or Google-specific behaviors or 39 features? 56 In general, `//net` features try to support all platforms with a common [all …]
|
| /external/rust/crates/chrono/ |
| D | Cargo.toml | 5 # with all versions of Cargo and also rewrite `path` dependencies 9 # issue against the rust-lang/cargo repository. If you're 23 categories = ["date-and-time"] 24 license = "MIT/Apache-2.0" 27 features = ["serde"] 30 features = ["serde"] 38 required-features = ["__internal_bench"] 43 required-features = ["serde"] 48 [dependencies.num-integer] 50 default-features = false [all …]
|
| /external/rust/crates/tokio/ |
| D | Cargo.toml.orig | 4 # - Remove path dependencies 5 # - Update doc url 6 # - README.md 7 # - Update CHANGELOG.md. 8 # - Create "v1.x.y" git tag. 11 rust-version = "1.49" 15 repository = "https://github.com/tokio-rs/tokio" 18 An event-driven, non-blocking I/O platform for writing asynchronous I/O 21 categories = ["asynchronous", "network-programming"] 22 keywords = ["io", "async", "non-blocking", "futures"] [all …]
|
| D | Cargo.toml | 5 # with all versions of Cargo and also rewrite `path` dependencies 14 rust-version = "1.49" 19 An event-driven, non-blocking I/O platform for writing asynchronous I/O 27 "non-blocking", 32 "network-programming", 35 repository = "https://github.com/tokio-rs/tokio" 38 all-features = true 39 rustdoc-args = [ 40 "--cfg", 42 "--cfg", [all …]
|
| /external/vixl/src/ |
| D | cpu-features.h | 2 // All rights reserved. 33 #include "globals-vixl.h" 38 // VIXL aims to handle and detect all architectural features that are likely to 39 // influence code-generation decisions at EL0 (user-space). 41 // - There may be multiple VIXL feature flags for a given architectural 50 // - Conversely, some extensions have configuration options that do not affect 57 // - VIXL offers separate flags for separate features even if they're 62 // separate features. 64 // - VIXL can detect every feature for which it can generate code. 66 // - VIXL can detect some features for which it cannot generate code. [all …]
|
| /external/tflite-support/third_party/zlib/ |
| D | cpu_features.c | 1 /* cpu_features.c -- Processor features detection. 3 * Copyright 2018 The Chromium Authors. All rights reserved. 4 * Use of this source code is governed by a BSD-style license that can be 21 /* crc32 is a baseline feature in ARMv8.1-A, and macOS running on arm64 is new 39 #include <cpu-features.h> 44 #include <zircon/features.h> 61 // _cpu_check_features() doesn't need to do anything on mac/arm since all 62 // features are known at build time, so don't call it. 63 // Do provide cpu_check_features() (with a no-op implementation) so that we 64 // don't have to make all callers of it check for mac/arm. [all …]
|
| /external/rust/crates/gdbstub/ |
| D | README.md | 5 [](./LICENSE) 7 … and easy-to-integrate implementation of the [GDB Remote Serial Protocol](https://sourceware.org/g… 11 …-overhead-protocol-extensions) (IDETs) to expose fine-grained, zero-cost control over enabled GDB … 15 - [Documentation (gdbstub)](https://docs.rs/gdbstub) 16 - [Documentation (gdbstub_arch)](https://docs.rs/gdbstub_arch) 17 - [Changelog](CHANGELOG.md) 18 - [0.5 to 0.6 Transition Guide](docs/transition_guide.md) 22 - **Excellent Ergonomics** 23 …- Instead of simply exposing the underlying GDB protocol "warts and all", `gdbstub` tries to abs… 24 …- Instead of having to dig through [obscure XML files deep the GDB codebase](https://github.com/… [all …]
|