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

  /src/sys/arch/evbarm/g42xxeb/
g42xxeb_kmkbd.c 369 * returns bitset of keys being pressed.
415 kmkbd_report(struct kmkbd_softc *sc, u_int bitset)
420 if (bitset == sc->notified_bits)
423 if (sc->notified_bits && bitset == 0){
429 changed = bitset ^ sc->notified_bits;
436 (bitset & (1<<i)) ? WSCONS_EVENT_KEY_DOWN : WSCONS_EVENT_KEY_UP,
440 sc->notified_bits = bitset;
445 kmkbd_report_raw(struct kmkbd_softc *sc, u_int bitset)
451 if (bitset == sc->notified_bits)
455 changed = bitset ^ sc->notified_bits
    [all...]
  /src/sys/kern/
sys_futex.c 781 * futex_wait_init(fw, bitset)
789 futex_wait_init(struct futex_wait *fw, int bitset)
792 KASSERT(bitset);
797 fw->fw_bitset = bitset;
1000 * futex_wake(f, nwake, f2, nrequeue, bitset)
1002 * Wake up to nwake waiters on f matching bitset; then, if f2 is
1004 * bitset to f2. Return the number of waiters actually woken or
1009 unsigned nrequeue, int bitset)
1020 if ((fw->fw_bitset & bitset) == 0)
1049 if ((fw->fw_bitset & bitset) == 0
1679 const int bitset = FUTEX_BITSET_MATCH_ANY; local in function:do_futex
1686 const int bitset = FUTEX_BITSET_MATCH_ANY; local in function:do_futex
1692 const int bitset = val3; local in function:do_futex
1707 const int bitset = val3; local in function:do_futex
    [all...]
  /src/tests/lib/libc/sys/
t_futex_ops.c 79 int bitset; member in struct:lwp_data
183 d->block_val, NULL, NULL, 0, d->bitset) == -1) {
664 lwp_data[i].bitset = __BIT(i);
705 ~(wlwp0->bitset | wlwp1->bitset)));
722 INT_MAX, NULL, NULL, 0, wlwp0->bitset));
740 INT_MAX, NULL, NULL, 0, wlwp1->bitset));
791 lwp_data[i].bitset = 0;
1093 lwp_data[i].bitset = 0;
1409 lwp_data[0].bitset = 0
    [all...]
  /src/sys/arch/arm/amlogic/
meson_rtc.c 168 meson_rtc_send_bit(struct meson_rtc_softc *sc, uint32_t bitset)
171 if (bitset)
  /src/games/adventure/
subr.c 54 static int bitset(int, int);
119 bitset(int l, int n) function in typeref:typename:int
157 if (newloc != loc && !forced(loc) && !bitset(loc, 3)) {
167 if (loc == 0 || forced(loc) || bitset(newloc, 3))
202 || (i == 6 && bitset(newloc, 3))
512 if (!bitset(loc, hint))

Completed in 15 milliseconds