Home
last modified time | relevance | path

Searched refs:add (Results 1 – 17 of 17) sorted by relevance

/rust-libc-0.2.174/
H A DCHANGELOG.md189 - Musl: add CLONE_NEWTIME <https://github.com/rust-lang/libc/pull/4226>
257 - CI: add caching <https://github.com/rust-lang/libc/pull/4183>
303 - Apple: add `in6_ifreq` <https://github.com/rust-lang/libc/pull/3617>
319 - Musl: add `utmpx` API <https://github.com/rust-lang/libc/pull/3213>
427 - Linux: add `confstr` <https://github.com/rust-lang/libc/pull/3612>
428 - Solarish: add `aio` <https://github.com/rust-lang/libc/pull/4033>
440 - CI: add Solaris <https://github.com/rust-lang/libc/pull/4035>
457 - Illumos: add `syncfs` <https://github.com/rust-lang/libc/pull/3990>
506 - Linux: add `tcp_info` <https://github.com/rust-lang/libc/pull/3480>
517 - Unix: add `fnmatch.h` <https://github.com/rust-lang/libc/pull/3937>
[all …]
H A DCONTRIBUTING.md29 `git` will automatically add the "cherry picked from commit" note, but try to
30 add a backport note so the original PR gets crosslinked:
35 (backport <https://github.com/rust-lang/libc/pull/1234>) # add manually
46 Want to use an API which currently isn't bound in `libc`? It's quite easy to add
50 `#[cfg]` attributes in order to easily be able to add new items which apply to
H A D.cirrus.yml30 - if [ "$TARGET" = "i686-unknown-freebsd" ]; then rustup target add i686-unknown-freebsd; fi
H A D.release-plz.toml36 { message = '(?i)^(\w+: )?add', group = "added" },
H A DLICENSE-APACHE117 do not modify the License. You may add Your own attribution
123 You may add Your own copyright statement to Your modifications and
/rust-libc-0.2.174/ctest-next/src/
H A Dlib.rs1 pub fn add(left: usize, right: usize) -> usize { in add() function
11 let result = add(2, 2); in it_works()
/rust-libc-0.2.174/ci/
H A Dinstall-rust.sh32 rustup target add "$TARGET"
37 rustup component add rust-src
H A Dverify-build.sh28 rustup component add rust-src
62 if rustup target add "$target" --toolchain "$rust" ; then
/rust-libc-0.2.174/ci/docker/i686-unknown-linux-musl/
H A DDockerfile6 dpkg --add-architecture i386 && \
/rust-libc-0.2.174/ci/docker/aarch64-linux-android/
H A DDockerfile3 RUN dpkg --add-architecture i386
/rust-libc-0.2.174/ci/docker/arm-linux-androideabi/
H A DDockerfile3 RUN dpkg --add-architecture i386
/rust-libc-0.2.174/ci/docker/i686-linux-android/
H A DDockerfile3 RUN dpkg --add-architecture i386
/rust-libc-0.2.174/.github/workflows/
H A Dci.yaml29 run: ./ci/install-rust.sh && rustup component add rustfmt
294 # protection, rather than having to add each job separately.
/rust-libc-0.2.174/src/unix/bsd/netbsdlike/netbsd/
H A Dmod.rs2288 (cmsg as *mut c_uchar).add(_ALIGN(mem::size_of::<cmsghdr>()))
/rust-libc-0.2.174/src/fuchsia/
H A Dmod.rs3314 } else if __CMSG_NEXT(cmsg).add(mem::size_of::<cmsghdr>()) >= __MHDR_END(mhdr) {
/rust-libc-0.2.174/src/unix/bsd/freebsdlike/freebsd/
H A Dmod.rs4655 (cmsg as *mut c_uchar).add(_ALIGN(mem::size_of::<cmsghdr>()))
/rust-libc-0.2.174/src/unix/bsd/apple/
H A Dmod.rs5220 (cmsg as *mut c_uchar).add(__DARWIN_ALIGN32(mem::size_of::<cmsghdr>()))