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)
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 in typeref:typename:uintptr_t
338 next = rw_cas(rw, owner, (owner + incr) &
393 next = rw_cas(rw, owner, owner | set_wait);
475 next = rw_cas(rw, owner, newown);
572 next = rw_cas(rw, owner, owner + incr);
618 next = rw_cas(rw, owner, newown + RW_READ_INCR);
653 next = rw_cas(rw, owner, newown);
669 next = rw_cas(rw, owner, newown);
704 next = rw_cas(rw, owner, newown)
    [all...]

Completed in 13 milliseconds