Home
last modified time | relevance | path

Searched full:no_std (Results 1 – 25 of 393) sorted by relevance

12345678910>>...16

/external/cronet/build/rust/std/rules/
DBUILD.gn10 no_std = true
48 no_std = true
83 no_std = true
108 no_std = true
142 no_std = true
175 no_std = true
198 no_std = true
234 no_std = true
273 no_std = true
312 no_std = true
[all …]
/external/rust/crates/crossbeam-utils/
DREADME.md19 * [`AtomicCell`], a thread-safe mutable memory location.<sup>(no_std)</sup>
20 * [`AtomicConsume`], for reading from primitive atomic types with "consume" ordering.<sup>(no_std)<…
30 * [`Backoff`], for exponential backoff in spin loops.<sup>(no_std)</sup>
31 * [`CachePadded`], for padding and aligning a value to the length of a cache line.<sup>(no_std)</su…
34 *Features marked with <sup>(no_std)</sup> can be used in `no_std` environments.*<br/>
/external/rust/crates/downcast-rs/.github/workflows/
Dmain.yml31 - name: Build for no_std
36 - name: Test for no_std
41 - name: Clippy for no_std
46 - name: Docs for no_std
/external/rust/crates/macaddr/src/
Dlib.rs21 //! in the `no_std` builds.
25 //! This crate can be used in a `no_std` builds with
28 //! Enabled `"serde"` feature will add support for `no_std`
36 #![cfg_attr(not(feature = "std"), no_std)]
/external/rust/crates/weak-table/src/
Dcompat.rs1 //! `no_std` compatibility
14 compile_error!("weak-table: no_std requires that you enable the `ahash` feature.");
23 // Otherwise, we are `no_std`, so alias `lib` to `alloc`.
/external/rust/beto-rust/nearby/presence/ldt_np_adv_ffi/src/
Dlib.rs15 #![no_std]
23 // These features are needed to support no_std + alloc
43 // Pull in the needed deps for std vs no_std
49 // Allow using Box in no_std
50 mod no_std;
/external/rust/crates/ucd-trie/src/
Dlib.rs21 `no_std` functionality by disabling the `std` feature. When `no_std` is
23 provided, which means `no_std` crates can still embed tries into their code.
27 #![cfg_attr(not(feature = "std"), no_std)]
/external/rust/crates/chrono/.github/workflows/
Dtest-release.yml56 no_std:
66 - name: Install rust with no_std toolchain
73 - name: Build no_std lib
Dtest.yml65 no_std:
75 - name: Install rust with no_std toolchain
82 - name: Build no_std lib
/external/flatbuffers/rust/flatbuffers/src/
Dlib.rs31 #![cfg_attr(feature = "no_std", no_std)]
33 #[cfg(feature = "no_std")]
/external/rust/crates/unicode-width/src/
Dtests.rs96 #[cfg(all(feature = "bench", not(feature = "no_std")))]
104 #[cfg(all(feature = "bench", not(feature = "no_std")))]
140 #[cfg(feature = "no_std")] in test_char()
156 #[cfg(feature = "no_std")] in test_char2()
187 #[cfg(feature = "no_std")] in unicode_12()
/external/rust/crates/regex-automata/
DREADME.md6 support for cheap deserialization of automata for use in `no_std` environments.
54 ### Support for `no_std`
63 The intended workflow for `no_std` environments is thus as follows:
70 * In your `no_std` environment, follow the examples above for deserializing
140 minimal runtime requirements, and can therefore be used in `no_std`
141 environments. While `no_std` environments cannot compile regexes, they can
/external/rust/crates/gdbstub/
DREADME.md7 …g/gdb/onlinedocs/gdb/Remote-Protocol.html#Remote-Protocol) in Rust, with full `#![no_std]` support.
31 - **`#![no_std]` Ready & Size Optimized**
32 …- `gdbstub` is a **`no_std` first** library, whereby all protocol features are required to be `n…
108 When using `gdbstub` in `#![no_std]` contexts, make sure to set `default-features = false`.
136 - OS Kernels (using `gdbstub` on `no_std`)
165 …- An _extremely_ minimal example which shows off how `gdbstub` can be used in a `#![no_std]` proje…
196 - Panic infrastructure can be _expensive_, and when you're optimizing for embedded, `no_std` use-ca…
228 - [x] Have a working example of `gdbstub` running in a "bare-metal" `#![no_std]` environment.
/external/rust/crates/once_cell/
DCHANGELOG.md17 - Add `no_std` implementation based on `critical-section`,
87 - Stabilize `once_cell::race` module for "first one wins" no_std-compatible initialization flavor.
104 - add new `once_cell::race` module for "first one wins" no_std-compatible initialization flavor.
139 - actually add `#![no_std]` attribute if std feature is not enabled.
/external/rust/crates/glam/
DREADME.md65 ### `no_std` support
67 `no_std` support can be enabled by compiling with `--no-default-features` to
76 To support both `std` and `no_std` builds in project, you can use the following
94 * [`libm`] - required to compile with `no_std`
96 * [`num-traits`] - required to compile `no_std`, will be included when enabling
Dbuild_and_test_features.sh13 # no_std
29 cargo check -p glam-no_std
/external/rust/crates/bitflags/patches/
Dstd.diff9 -#![cfg_attr(not(test), no_std)]
11 +#![cfg_attr(not(any(test, android_dylib)), no_std)]
/external/rust/crates/lock_api/
DCargo.toml.orig5 description = "Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std."
8 keywords = ["mutex", "rwlock", "lock", "no_std"]
DCargo.toml17 description = "Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std."
22 "no_std",
/external/rust/crates/serde_cbor/
DCargo.toml.orig11 keywords = ["serde", "cbor", "serialization", "no_std"]
29 # `no_std`.
/external/rust/crates/regex-automata/src/
Dlib.rs5 support for cheap deserialization of automata for use in `no_std` environments.
167 # Support for `no_std`
176 The intended workflow for `no_std` environments is thus as follows:
183 * In your `no_std` environment, follow the examples above for deserializing
260 minimal runtime requirements, and can therefore be used in `no_std`
261 environments. While `no_std` environments cannot compile regexes, they can
286 #![cfg_attr(not(feature = "std"), no_std)]
/external/rust/crates/csv-core/
DCargo.toml.orig5 description = "Bare bones CSV parsing with no_std support."
10 keywords = ["csv", "comma", "parser", "delimited", "no_std"]
DCargo.toml18 description = "Bare bones CSV parsing with no_std support."
22 keywords = ["csv", "comma", "parser", "delimited", "no_std"]
/external/rust/crates/der/
DREADME.md17 This crate provides a `no_std`-friendly implementation of a subset of ASN.1 DER
42 - `no_std` friendly: supports "heapless" usage
45 integrations with the following crates, all of which are `no_std` friendly:
/external/flatbuffers/tests/rust_usage_test/
DCargo.toml19 no_std = ["flatbuffers/no_std", "libc_alloc"]

12345678910>>...16