Searched refs:x (Results 1 – 17 of 17) sorted by relevance
| /rust-libc-0.2.174/ |
| H A D | build.rs | 80 x if x < 10 => panic!("FreeBSD older than 10 is not supported"), in main() 284 let major = pieces.next().and_then(|x| x.parse().ok()).unwrap_or(0); in emcc_version_code() 285 let minor = pieces.next().and_then(|x| x.parse().ok()).unwrap_or(0); in emcc_version_code() 286 let patch = pieces.next().and_then(|x| x.parse().ok()).unwrap_or(0); in emcc_version_code()
|
| H A D | Cargo.toml | 168 identity_op = "allow" # some expressions like `0 | x` are clearer for bit ops
|
| H A D | CONTRIBUTING.md | 12 If a pull request to `main` is a good candidate for inclusion in an `0.2.x`
|
| /rust-libc-0.2.174/ci/ |
| H A D | create-artifacts.py | 59 usepy = next(x for x in dirs if r"\3.1" in str(x))
|
| H A D | rust.css | 315 overflow-x: auto;
|
| H A D | README.md | 203 10. `chmod +x /root/foo.sh`
|
| /rust-libc-0.2.174/src/teeos/ |
| H A D | mod.rs | 1277 pub fn atan(x: c_double) -> c_double; in atan() 1279 pub fn ceil(x: c_double) -> c_double; in ceil() 1281 pub fn ceilf(x: c_float) -> c_float; in ceilf() 1283 pub fn exp(x: c_double) -> c_double; in exp() 1285 pub fn fabs(x: c_double) -> c_double; in fabs() 1287 pub fn floor(x: c_double) -> c_double; in floor() 1291 pub fn log(x: c_double) -> c_double; in log() 1293 pub fn log2(x: c_double) -> c_double; in log2() 1297 pub fn roundf(x: c_float) -> c_float; in roundf() 1301 pub fn sqrt(x: c_double) -> c_double; in sqrt() [all …]
|
| /rust-libc-0.2.174/src/ |
| H A D | psp.rs | 1860 pub x: i16, 1867 pub x: i32, 1874 pub x: u64, 1881 pub x: i16, 1886 pub x: i32, 1891 pub x: u64, 1896 pub x: i16, 1902 pub x: i32, 1908 pub x: u64, 1914 pub x: i16, [all …]
|
| /rust-libc-0.2.174/src/unix/bsd/freebsdlike/freebsd/ |
| H A D | mod.rs | 4747 pub fn PROT_MAX(x: c_int) -> c_int { 4748 x << 16 4751 pub fn PROT_MAX_EXTRACT(x: c_int) -> c_int { 4762 (x) & 0xfffffff0 4774 x & 0x0f 4778 PR_SCTP_POLICY(x) != SCTP_PR_SCTP_NONE && PR_SCTP_POLICY(x) != SCTP_PR_SCTP_ALL 4782 PR_SCTP_POLICY(x) == SCTP_PR_SCTP_TTL 4786 PR_SCTP_POLICY(x) == SCTP_PR_SCTP_BUF 4790 PR_SCTP_POLICY(x) == SCTP_PR_SCTP_RTX 4794 PR_SCTP_POLICY(x) > SCTP_PR_SCTP_MAX [all …]
|
| /rust-libc-0.2.174/.github/workflows/ |
| H A D | ci.yaml | 285 set -x
|
| /rust-libc-0.2.174/src/unix/bsd/netbsdlike/netbsd/ |
| H A D | mod.rs | 2325 pub fn PROT_MPROTECT(x: c_int) -> c_int { 2326 x << 3 2329 pub fn PROT_MPROTECT_EXTRACT(x: c_int) -> c_int { 2330 (x >> 3) & 0x7
|
| /rust-libc-0.2.174/libc-test/ |
| H A D | build.rs | 19 if !exclude.iter().any(|x| target.contains(x)) { in do_cc()
|
| /rust-libc-0.2.174/src/unix/linux_like/ |
| H A D | mod.rs | 1903 pub {const} fn IPTOS_ECN(x: u8) -> u8 { 1904 x & crate::IPTOS_ECN_MASK
|
| /rust-libc-0.2.174/src/unix/nto/ |
| H A D | mod.rs | 2741 pub {const} fn IPTOS_ECN(x: u8) -> u8 { 2742 x & crate::IPTOS_ECN_MASK
|
| /rust-libc-0.2.174/src/unix/aix/ |
| H A D | mod.rs | 2547 let x = dev >> 16; localVariable 2548 x as c_uint
|
| /rust-libc-0.2.174/src/unix/hurd/ |
| H A D | mod.rs | 4614 pub {const} fn IPTOS_ECN(x: u8) -> u8 { 4615 x & crate::IPTOS_ECN_MASK
|
| /rust-libc-0.2.174/src/unix/linux_like/linux/ |
| H A D | mod.rs | 6009 pub fn TPACKET_ALIGN(x: usize) -> usize { 6010 (x + TPACKET_ALIGNMENT - 1) & !(TPACKET_ALIGNMENT - 1)
|