Searched refs:__bits (Results 1 - 6 of 6) sorted by relevance

/barrelfish-master/include/sys/
H A Dbitset.h43 ((p)->__bits[__bitset_word(_s, n)] &= ~__bitset_mask((_s), (n)))
48 ((((p)->__bits[__bitset_word(_s, n)] & __bitset_mask((_s), (n))) != 0))
51 ((p)->__bits[__bitset_word(_s, n)] |= __bitset_mask((_s), (n)))
56 (p)->__bits[__i] = 0L; \
62 (p)->__bits[__i] = -1L; \
67 (p)->__bits[__bitset_word(_s, n)] = __bitset_mask((_s), (n)); \
74 if ((p)->__bits[__i]) \
83 if ((p)->__bits[__i] != (long)-1) \
92 if (((c)->__bits[__i] & \
93 (p)->__bits[__
[all...]
H A D_bitset.h47 long __bits[__bitset_words((_s))]; \
53 * Sadly we cannot declare a bitset struct with '__bits[]', because it's
H A D_sigset.h52 __uint32_t __bits[_SIG_WORDS]; member in struct:__sigset
/barrelfish-master/lib/libc/gen/
H A Dsigsetops.c49 set->__bits[_SIG_WORD(signo)] |= _SIG_BIT(signo);
61 set->__bits[_SIG_WORD(signo)] &= ~_SIG_BIT(signo);
71 set->__bits[i] = 0;
81 set->__bits[i] = ~0U;
93 return ((set->__bits[_SIG_WORD(signo)] & _SIG_BIT(signo)) ? 1 : 0);
/barrelfish-master/lib/msun/powerpc/
H A Dfenv.h107 } __bits; member in union:__fpscr
118 __r.__bits.__reg &= ~__excepts;
129 *__flagp = __r.__bits.__reg & __excepts;
141 __r.__bits.__reg &= ~__excepts;
142 __r.__bits.__reg |= *__flagp & __excepts;
155 __r.__bits.__reg |= __excepts;
166 return (__r.__bits.__reg & __excepts);
175 return (__r.__bits.__reg & _ROUND_MASK);
186 __r.__bits.__reg &= ~_ROUND_MASK;
187 __r.__bits
[all...]
/barrelfish-master/lib/libc/compat-43/
H A Dsigcompat.c55 sa.sa_mask.__bits[0] = sv->sv_mask;
64 osv->sv_mask = osa.sa_mask.__bits[0];
76 set.__bits[0] = mask;
80 return (oset.__bits[0]);
90 set.__bits[0] = mask;
94 return (oset.__bits[0]);
103 set.__bits[0] = mask;

Completed in 64 milliseconds