Home
last modified time | relevance | path

Searched refs:LONG_BIT (Results 1 – 5 of 5) sorted by relevance

/aosp12/bionic/libc/include/android/
H A Dlegacy_signal_inlines.h92 return (int)((local_set[bit / LONG_BIT] >> (bit % LONG_BIT)) & 1);
103 local_set[bit / LONG_BIT] |= 1UL << (bit % LONG_BIT);
115 local_set[bit / LONG_BIT] &= ~(1UL << (bit % LONG_BIT));
/aosp12/bionic/libc/bionic/
H A Dsignal.cpp67 local_set[bit / LONG_BIT] |= 1UL << (bit % LONG_BIT); in SigAddSet()
96 local_set[bit / LONG_BIT] &= ~(1UL << (bit % LONG_BIT)); in SigDelSet()
174 return static_cast<int>((local_set[bit / LONG_BIT] >> (bit % LONG_BIT)) & 1); in SigIsMember()
/aosp12/bionic/libc/include/
H A Dlimits.h60 # define LONG_BIT 64 macro
62 # define LONG_BIT 32 macro
/aosp12/bionic/libc/include/bits/
H A Dsignal_types.h64 typedef struct { unsigned long __bits[_KERNEL__NSIG/LONG_BIT]; } sigset64_t;
/aosp12/bionic/tests/headers/posix/
H A Dlimits_h.c189 MACRO(LONG_BIT); in limits_h()