Home
last modified time | relevance | path

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

1234

/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()
Dlib.rs32 //! unicode-width supports a `no_std` feature. This eliminates dependence
50 #![no_std]
/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/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/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/syn/
Dbuild.rs47 // Set #![no_std] to bypass loading libstd.rlib. This is a 7.5% speedup. in unstable()
48 cmd.arg("-Zcrate-attr=no_std"); in unstable()
/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/syn/tests/
Dtest_parse_quote.rs23 let attr: Attribute = parse_quote!(#![no_std]); in test_attribute()
30 ident: "no_std", in test_attribute()
/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]
Dconst.rs1 #![no_std]
/third_party/rust/crates/serde/.github/workflows/
Dci.yml67 - run: cd test_suite/no_std && cargo build
147 - run: cd test_suite/no_std && cargo clippy -- -Dclippy::all -Dclippy::pedantic
/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/pin-utils/src/
Dlib.rs3 #![no_std]
/third_party/rust/crates/minimal-lexical/.github/workflows/
DFeatures.yml23 - run: NIGHTLY=1 NO_STD=1 ci/test.sh
/third_party/rust/crates/shlex/
DCHANGELOG.md4 * Disabling the `std` feature makes the crate work in `#![no_std]` mode, assuming presence of the `…
/third_party/rust/crates/bitflags/tests/
Dbasic.rs1 #![no_std]

1234