Home
last modified time | relevance | path

Searched refs:next (Results 1 – 23 of 23) sorted by relevance

/rust-libc-0.2.174/
H A Dbuild.rs226 pieces.next(), in rustc_minor_nightly()
231 let minor = pieces.next(); in rustc_minor_nightly()
238 let nightly_raw = otry!(pieces.next()).split('-').nth(1); in rustc_minor_nightly()
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 DCargo.toml151 "ctest-next",
H A DCONTRIBUTING.md108 - The `since` field should have a next version of `libc` (e.g., if the current
/rust-libc-0.2.174/libc-test/test/
H A Dcmsg.rs80 let next = cmsg_nxthdr(&mhdr, pcmsghdr); in test_cmsg_nxthdr() localVariable
81 assert_eq!(libc_next, next); in test_cmsg_nxthdr()
86 let next = cmsg_nxthdr(&mhdr, pcmsghdr); in test_cmsg_nxthdr() localVariable
87 assert_eq!(libc_next, next); in test_cmsg_nxthdr()
/rust-libc-0.2.174/ctest-next/
H A DCargo.toml2 name = "ctest-next"
/rust-libc-0.2.174/ci/
H A Dcreate-artifacts.py59 usepy = next(x for x in dirs if r"\3.1" in str(x))
/rust-libc-0.2.174/libc-test/test/style/
H A Dmod.rs439 .next() in parse()
/rust-libc-0.2.174/src/unix/linux_like/emscripten/
H A Dmod.rs1371 let next = (cmsg as usize + super::CMSG_ALIGN((*cmsg).cmsg_len as usize)) as *mut cmsghdr; localVariable
1373 if (next.offset(1)) as usize > max {
1376 next as *mut cmsghdr
/rust-libc-0.2.174/src/
H A Dpsp.rs1836 pub next: *mut c_void,
2091 pub next: *mut SceNetAdhocctlScanInfo,
2105 pub next: *mut SceNetAdhocPtpStat,
2117 pub next: *mut SceNetAdhocPdpStat,
2335 pub next: *mut SceNetAdhocctlPeerInfo,
/rust-libc-0.2.174/src/unix/bsd/freebsdlike/dragonfly/
H A Dmod.rs1438 let next = cmsg as usize localVariable
1442 if next <= max {
/rust-libc-0.2.174/src/unix/cygwin/
H A Dmod.rs1870 let next = (cmsg as usize + CMSG_ALIGN((*cmsg).cmsg_len as usize)) as *mut cmsghdr; localVariable
1872 if next as usize + CMSG_ALIGN(::core::mem::size_of::<cmsghdr>()) as usize > max {
1875 next
/rust-libc-0.2.174/src/unix/hurd/
H A Dmod.rs3449 let next = (cmsg as usize + CMSG_ALIGN((*cmsg).cmsg_len as usize)) as *mut cmsghdr; localVariable
3451 if (next.offset(1)) as usize > max
3452 || next as usize + CMSG_ALIGN((*next).cmsg_len as usize) > max
3456 next as *mut cmsghdr
/rust-libc-0.2.174/src/unix/bsd/netbsdlike/openbsd/
H A Dmod.rs1873 let next = localVariable
1876 if next > max {
/rust-libc-0.2.174/src/vxworks/
H A Dmod.rs1081 let next = cmsg as usize localVariable
1085 if next <= max {
/rust-libc-0.2.174/src/unix/haiku/
H A Dmod.rs1537 let next = cmsg as usize localVariable
1541 if next > max {
/rust-libc-0.2.174/src/unix/linux_like/linux/
H A Dmod.rs5914 let next = (cmsg as usize + super::CMSG_ALIGN((*cmsg).cmsg_len as usize)) as *mut cmsghdr; localVariable
5916 if (next.wrapping_offset(1)) as usize > max
5917 || next as usize + super::CMSG_ALIGN((*next).cmsg_len as usize) > max
5921 next
/rust-libc-0.2.174/src/unix/linux_like/android/
H A Dmod.rs3392 let next = (cmsg as usize + super::CMSG_ALIGN((*cmsg).cmsg_len as usize)) as *mut cmsghdr; localVariable
3394 if (next.offset(1)) as usize > max {
3397 next as *mut cmsghdr
/rust-libc-0.2.174/src/unix/bsd/netbsdlike/netbsd/
H A Dmod.rs2299 let next = localVariable
2302 if next > max {
/rust-libc-0.2.174/src/unix/bsd/freebsdlike/freebsd/
H A Dmod.rs494 pub next: __c_anonymous_filestat,
4666 let next = localVariable
4669 if next > max {
/rust-libc-0.2.174/src/unix/nto/
H A Dmod.rs2631 let next = cmsg as usize + msg + _CMSG_ALIGN(mem::size_of::<cmsghdr>()); localVariable
2632 if next > (*mhdr).msg_control as usize + (*mhdr).msg_controllen as usize {
/rust-libc-0.2.174/src/unix/solarish/
H A Dmod.rs2426 let next = localVariable
2429 if next > max {
/rust-libc-0.2.174/libc-test/
H A Dbuild.rs922 if ty.chars().next().unwrap().is_uppercase() { in test_windows()
/rust-libc-0.2.174/src/unix/bsd/apple/
H A Dmod.rs5210 let next = cmsg as usize + __DARWIN_ALIGN32(cmsg_len); localVariable
5212 if next + __DARWIN_ALIGN32(mem::size_of::<cmsghdr>()) > max {
5215 next as *mut cmsghdr