Home
last modified time | relevance | path

Searched defs:futex_wait (Results 1 – 7 of 7) sorted by relevance

/third_party/mesa3d/src/util/
Dfutex.c51 int futex_wait(uint32_t *addr, int32_t value, const struct timespec *timeout) in futex_wait() function
73 int futex_wait(uint32_t *addr, int32_t value, const struct timespec *timeout) in futex_wait() function
102 int futex_wait(uint32_t *addr, int32_t value, const struct timespec *timeout) in futex_wait() function
138 int futex_wait(uint32_t *addr, int32_t value, const struct timespec *timeout) in futex_wait() function
/third_party/rust/rust/library/std/src/sys/unix/
Dfutex.rs20 pub fn futex_wait(futex: &AtomicU32, expected: u32, timeout: Option<Duration>) -> bool { in futex_wait() function
139 pub fn futex_wait(futex: &AtomicU32, expected: u32, timeout: Option<Duration>) -> bool { in futex_wait() function
185 pub fn futex_wait(futex: &AtomicU32, expected: u32, timeout: Option<Duration>) -> bool { in futex_wait() function
222 pub fn futex_wait(futex: &AtomicU32, expected: u32, timeout: Option<Duration>) -> bool { in futex_wait() function
275 pub fn futex_wait(futex: &AtomicU32, expected: u32, timeout: Option<Duration>) -> bool { in futex_wait() function
/third_party/rust/rust/library/std/src/sys/hermit/
Dfutex.rs6 pub fn futex_wait(futex: &AtomicU32, expected: u32, timeout: Option<Duration>) -> bool { in futex_wait() function
/third_party/rust/rust/library/std/src/sys/wasm/atomics/
Dfutex.rs10 pub fn futex_wait(futex: &AtomicU32, expected: u32, timeout: Option<Duration>) -> bool { in futex_wait() function
/third_party/rust/rust/src/tools/miri/src/shims/unix/linux/
Dsync.rs41 let futex_wait = this.eval_libc_i32("FUTEX_WAIT"); in futex() localVariable
/third_party/ltp/testcases/kernel/syscalls/futex/
Dfutextest.h87 futex_wait(enum futex_fn_type fntype, futex_t *uaddr, futex_t val, in futex_wait() function
/third_party/rust/rust/src/tools/miri/src/concurrency/
Dsync.rs651 fn futex_wait(&mut self, addr: u64, thread: ThreadId, bitset: u32) { in futex_wait() method