Home
last modified time | relevance | path

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

12345

/third_party/rust/crates/libc/ci/
Dbuild.sh24 NO_STD="${3}"
27 if [ "${NO_STD}" != "1" ]; then
43 if [ "${NO_STD}" != "1" ]; then
52 if [ "$NO_STD" != "1" ]; then
60 if [ "${NO_STD}" != "1" ]; then
71 if [ "${NO_STD}" != "1" ]; then
82 if [ "$NO_STD" != "1" ]; then
/third_party/rust/crates/minimal-lexical/ci/
Dtest.sh12 # Force default tests to disable default feature on NO_STD.
13 if [ ! -z $NO_STD ]; then
48 if [ ! -z $NO_STD ]; then
/third_party/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()
/third_party/rust/crates/once_cell/
DCHANGELOG.md13 - Add `no_std` implementation based on `critical-section`,
83 - Stabilize `once_cell::race` module for "first one wins" no_std-compatible initialization flavor.
100 - add new `once_cell::race` module for "first one wins" no_std-compatible initialization flavor.
135 - actually add `#![no_std]` attribute if std feature is not enabled.
/third_party/rust/crates/linux-raw-sys/
DCargo.toml35 no_std = []
36 rustc-dep-of-std = ["core", "compiler_builtins", "no_std"]
/third_party/rust/crates/rustc-hash/
DREADME.md28 ### `no_std`
30 This crate can be used as a `no_std` crate by disabling the `std`
/third_party/rust/crates/tracing/tracing-futures/src/
Dstdlib.rs14 pub(crate) use self::no_std::*;
17 mod no_std { module
/third_party/rust/crates/tracing/tracing/src/
Dstdlib.rs14 pub(crate) use self::no_std::*;
17 mod no_std { module
/third_party/rust/crates/autocfg/src/
Dlib.rs88 no_std: bool, field
175 no_std: false, in with_dir()
180 ac.no_std = true; in with_dir()
183 ac.no_std = false; in with_dir()
229 if self.no_std { in probe()
230 try!(stdin.write_all(b"#![no_std]\n").map_err(error::from_io)); in probe()
/third_party/rust/crates/num-traits/
DRELEASES.md93 in `no_std` builds.
108 - [Fixed feature detection on `no_std` targets][116].
164 - [The `no_std` implementation of `FloatCore::to_degrees` for `f32`][61] now
197 - [The new `FloatCore` trait][32] offers a subset of `Float` for `#![no_std]` use.
218 `#![no_std]` crate.
/third_party/rust/crates/linux-raw-sys/.github/workflows/
Dmain.yml28 cargo check --no-default-features --features "no_std netlink"
29 cargo check --no-default-features --features "no_std general errno"
/third_party/rust/crates/scopeguard/
DREADME.rst8 The `defer!` macro and `guard` are `no_std` compatible (require only core),
98 - Use `no_std` unconditionally
/third_party/rust/crates/tracing/tracing-core/src/
Dlib.rs52 //! `no_std` users may disable this feature with `default-features = false`:
59 //! **Note**:`tracing-core`'s `no_std` support requires `liballoc`.
124 #![cfg_attr(not(feature = "std"), no_std)]
260 // Dependency of no_std lazy_static, not required in a std build
Dstdlib.rs14 pub(crate) use self::no_std::*;
17 mod no_std { module
/third_party/rust/crates/tracing/tracing-subscriber/src/
Dlib.rs79 //! ### `no_std` Support
86 //! `no_std` environments.
91 //! feature). These features are enabled by default, but `no_std` users can
204 #![cfg_attr(not(feature = "std"), no_std)]
/third_party/rust/crates/autocfg/
DREADME.md67 - Relax `std`/`no_std` probing to a warning instead of an error.
71 - Auto-detects if `#![no_std]` is needed for the `$TARGET`.
/third_party/rust/crates/rustix/
DCargo.toml42 …{ version = "0.1.2", default-features = false, features = ["general", "errno", "ioctl", "no_std"] }
59 linux-raw-sys = { version = "0.1.2", default-features = false, features = ["general", "no_std"] }
113 # This enables use of std. Disabling this enables `#![no_std], and requires
/third_party/rust/crates/static-assertions-rs/tests/
Dtype_ne.rs1 #![no_std]
Dobj_safe.rs1 #![no_std]
Dtype_eq.rs1 #![no_std]
/third_party/rust/crates/pin-project-lite/tests/no-std/
Dlib.rs1 #![no_std]
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
Dno-std.h1 // bindgen-flags: --ctypes-prefix "libc" --use-core --raw-line "#![no_std]" --raw-line "mod libc { …
Dctypes-prefix-path.h1 // bindgen-flags: --ctypes-prefix "libc::foo" --use-core --raw-line "#![no_std]" --raw-line "mod li…
/third_party/rust/crates/lazy-static.rs/tests/
Dno_std.rs3 #![no_std]
/third_party/rust/crates/tracing/tracing-core/
DREADME.md78 `no_std` users may disable this feature with `default-features = false`:
85 **Note**:`tracing-core`'s `no_std` support requires `liballoc`.

12345