HomeSort by: relevance | last modified time | path
    Searched refs:rw_cas (Results 1 - 2 of 2) sorted by relevancy

  /src/lib/libpthread/
pthread_rwlock.c 84 rw_cas(pthread_rwlock_t *ptr, uintptr_t o, uintptr_t n) function
174 next = rw_cas(ptr, owner, owner + RW_READ_INCR);
214 next = rw_cas(ptr, owner, owner | RW_HAS_WAITERS);
265 next = rw_cas(ptr, owner, owner + RW_READ_INCR);
296 next = rw_cas(ptr, owner,
336 next = rw_cas(ptr, owner,
385 next = rw_cas(ptr, owner, (uintptr_t)self | RW_WRITE_LOCKED);
487 next = rw_cas(ptr, owner, new);
604 next = rw_cas(ptr, owner, newval);
  /src/sys/kern/
kern_rwlock.c 140 * rw_cas:
145 rw_cas(krwlock_t *rw, uintptr_t o, uintptr_t n) function
339 next = rw_cas(rw, owner, (owner + incr) &
394 next = rw_cas(rw, owner, owner | set_wait);
476 next = rw_cas(rw, owner, newown);
573 next = rw_cas(rw, owner, owner + incr);
619 next = rw_cas(rw, owner, newown + RW_READ_INCR);
655 next = rw_cas(rw, owner, newown);
671 next = rw_cas(rw, owner, newown);
706 next = rw_cas(rw, owner, newown)
    [all...]

Completed in 63 milliseconds