Home
last modified time | relevance | path

Searched refs:BITSET_WORD (Results 1 – 2 of 2) sorted by relevance

/Linux-v5.15/drivers/staging/vc04_services/interface/vchiq_arm/
Dvchiq_core.h83 #define BITSET_WORD(b) (b >> 5) macro
85 #define BITSET_IS_SET(bs, b) (bs[BITSET_WORD(b)] & BITSET_BIT(b))
86 #define BITSET_SET(bs, b) (bs[BITSET_WORD(b)] |= BITSET_BIT(b))
87 #define BITSET_CLR(bs, b) (bs[BITSET_WORD(b)] &= ~BITSET_BIT(b))
Dvchiq_core.c643 index = BITSET_WORD(service->localport); in request_poll()