Home
last modified time | relevance | path

Searched refs:by_ref (Results 1 - 25 of 25) sorted by relevance

/third_party/rust/crates/rustix/src/backend/linux_raw/thread/
H A Dsyscalls.rs11 by_ref, c_int, c_uint, ret, ret_c_int, ret_usize, ret_usize_infallible, zero,
36 by_ref(req),
60 by_ref(req),
85 by_ref(&old_req), in clock_nanosleep_relative_old()
108 by_ref(req),
127 by_ref(req),
143 by_ref(&old_req), in clock_nanosleep_absolute_old()
157 by_ref(req),
177 match ret(syscall!(__NR_nanosleep, by_ref(req), &mut rem)) {
195 ret(syscall!(__NR_nanosleep, by_ref( in nanosleep_old()
[all...]
/third_party/rust/crates/rustix/src/backend/linux_raw/net/
H A Dsyscalls.rs11 by_mut, by_ref, c_int, c_uint, ret, ret_owned_fd, ret_usize, size_of, slice, slice_mut,
320 by_ref(&encode_sockaddr_v4(addr)),
334 by_ref(&encode_sockaddr_v4(addr)),
358 by_ref(&encode_sockaddr_v6(addr)),
372 by_ref(&encode_sockaddr_v6(addr)),
396 by_ref(&addr.unix),
410 by_ref(&addr.unix),
592 by_ref(&encode_sockaddr_v4(addr)),
603 by_ref(&encode_sockaddr_v4(addr)),
617 by_ref(
[all...]
/third_party/rust/crates/rustix/src/backend/linux_raw/process/
H A Dsyscalls.rs11 by_mut, by_ref, c_int, c_uint, negative_pid, pass_usize, ret, ret_c_int, ret_c_uint,
388 by_ref(&lim),
402 ret(syscall_readonly!(__NR_setrlimit, limit, by_ref(&lim))) in setrlimit_old()
414 by_ref(&lim),
/third_party/rust/crates/syn/src/
H A Dpat.rs102 pub by_ref: Option<Token![ref]>,
445 by_ref: input.parse()?, in pat_ident()
526 let by_ref: Option<Token![ref]> = input.parse()?; in field_pat()
529 let member = if boxed.is_some() || by_ref.is_some() || mutability.is_some() { in field_pat()
535 if boxed.is_none() && by_ref.is_none() && mutability.is_none() && input.peek(Token![:]) in field_pat()
556 by_ref, in field_pat()
785 self.by_ref.to_tokens(tokens); in to_tokens()
H A Dpath.rs843 for (i, segment) in segments.by_ref().take(pos).enumerate() {
/third_party/rust/crates/rustix/src/backend/linux_raw/time/
H A Dsyscalls.rs10 use super::super::conv::{by_ref, ret_owned_fd};
89 by_ref(new_value),
101 by_ref(new_value),
158 by_ref(&old_new_value), in timerfd_settime_old()
/third_party/rust/crates/clap/src/output/textwrap/
H A Dword_separators.rs7 for (idx, ch) in char_indices.by_ref() {
/third_party/rust/crates/rustix/src/backend/linux_raw/io/
H A Dsyscalls.rs13 by_ref, c_int, c_uint, opt_mut, pass_usize, raw_fd, ret, ret_c_uint, ret_discarded_fd,
322 by_ref(&data)
578 by_ref(event)
593 by_ref(event)
/third_party/rust/crates/syn/tests/
H A Dtest_receiver.rs54 fn by_ref(self: &Self); in test_by_ref() functions
/third_party/rust/crates/rustix/src/backend/linux_raw/termios/
H A Dsyscalls.rs9 use super::super::conv::{by_ref, c_uint, ret};
75 by_ref(termios)
134 by_ref(&winsize)
/third_party/rust/crates/rustix/src/backend/linux_raw/
H A Dconv.rs207 pub(super) fn by_ref<T: Sized, Num: ArgNumber>(t: &T) -> ArgReg<Num> {
237 Some(t) => by_ref(t),
/third_party/rust/crates/rustix/src/backend/linux_raw/fs/
H A Dsyscalls.rs12 by_ref, c_int, c_uint, dev_t, oflags_for_open_how, opt_mut, pass_usize, raw_fd, ret, ret_c_int,
102 by_ref(&open_how {
116 by_ref(&open_how {
1234 by_ref(times), in _utimensat()
1247 by_ref(times), in _utimensat()
/third_party/rust/crates/bindgen/bindgen/ir/
H A Dvar.rs164 let left = spelled.by_ref().take(boundary + 1); in handle_function_macro()
H A Dcomp.rs509 // `raw_fields` again after the `by_ref` iterator adaptor is dropped. in raw_fields_to_fields_and_bitfield_units()
512 .by_ref() in raw_fields_to_fields_and_bitfield_units()
522 .by_ref() in raw_fields_to_fields_and_bitfield_units()
H A Ditem.rs892 for id in ids_iter.by_ref() { in real_canonical_name()
/third_party/rust/crates/humantime/src/
H A Dduration.rs110 for c in self.iter.by_ref() { in parse_first_char()
/third_party/rust/crates/syn/src/gen/
H A Dclone.rs1480 by_ref: self.by_ref.clone(), in clone()
H A Deq.rs1416 self.attrs == other.attrs && self.by_ref == other.by_ref in eq()
H A Dhash.rs1921 self.by_ref.hash(state); in hash()
H A Dfold.rs2653 by_ref: node.by_ref, in fold_pat_ident()
H A Ddebug.rs2089 formatter.field("by_ref", &self.by_ref); in fmt()
H A Dvisit_mut.rs2946 skip!(node.by_ref); in visit_pat_ident_mut()
/third_party/rust/crates/serde/serde/src/private/
H A Dde.rs2800 for entry in self.iter.by_ref() { in next_key_seed()
/third_party/rust/crates/memchr/bench/data/code/
H A Drust-library.rs2480 let mut heap: BinaryHeap<_> = iter.by_ref().take(1000).collect(); in bench_find_smallest_1000()
3000 for _ in iter.by_ref() { in drain_filter_false()
4084 iter.by_ref().count(); // exhaust it
4092 iter.by_ref().count(); // exhaust it
7733 for _ in iter.by_ref() { in drain_filter_false()
[all...]
/third_party/rust/crates/syn/tests/debug/
H A Dgen.rs3087 if _val.by_ref.is_some() { in fmt()
3088 formatter.field("by_ref", &Present); in fmt()
3294 if self.value.by_ref.is_some() { in fmt()
3295 formatter.field("by_ref", &Present); in fmt()

Completed in 93 milliseconds