Searched full:no_std (Results 1 – 25 of 93) sorted by relevance
1234
| /third_party/rust/crates/libc/ci/ |
| D | build.sh | 24 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/ |
| D | test.sh | 12 # 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/ |
| D | tests.rs | 96 #[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()
|
| D | lib.rs | 32 //! unicode-width supports a `no_std` feature. This eliminates dependence 50 #![no_std]
|
| /third_party/rust/crates/once_cell/ |
| D | CHANGELOG.md | 13 - 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/ |
| D | Cargo.toml | 35 no_std = [] 36 rustc-dep-of-std = ["core", "compiler_builtins", "no_std"]
|
| /third_party/rust/crates/rustc-hash/ |
| D | README.md | 28 ### `no_std` 30 This crate can be used as a `no_std` crate by disabling the `std`
|
| /third_party/rust/crates/autocfg/src/ |
| D | lib.rs | 88 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/ |
| D | main.yml | 28 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/ |
| D | build.rs | 47 // 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/ |
| D | README.md | 67 - 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/ |
| D | test_parse_quote.rs | 23 let attr: Attribute = parse_quote!(#![no_std]); in test_attribute() 30 ident: "no_std", in test_attribute()
|
| /third_party/rust/crates/rustix/ |
| D | Cargo.toml | 42 …{ 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/ |
| D | type_ne.rs | 1 #![no_std]
|
| D | obj_safe.rs | 1 #![no_std]
|
| D | type_eq.rs | 1 #![no_std]
|
| D | const.rs | 1 #![no_std]
|
| /third_party/rust/crates/serde/.github/workflows/ |
| D | ci.yml | 67 - 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/ |
| D | no-std.h | 1 // bindgen-flags: --ctypes-prefix "libc" --use-core --raw-line "#![no_std]" --raw-line "mod libc { …
|
| D | ctypes-prefix-path.h | 1 // bindgen-flags: --ctypes-prefix "libc::foo" --use-core --raw-line "#![no_std]" --raw-line "mod li…
|
| /third_party/rust/crates/lazy-static.rs/tests/ |
| D | no_std.rs | 3 #![no_std]
|
| /third_party/rust/crates/pin-utils/src/ |
| D | lib.rs | 3 #![no_std]
|
| /third_party/rust/crates/minimal-lexical/.github/workflows/ |
| D | Features.yml | 23 - run: NIGHTLY=1 NO_STD=1 ci/test.sh
|
| /third_party/rust/crates/shlex/ |
| D | CHANGELOG.md | 4 * Disabling the `std` feature makes the crate work in `#![no_std]` mode, assuming presence of the `…
|
| /third_party/rust/crates/bitflags/tests/ |
| D | basic.rs | 1 #![no_std]
|
1234