Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dsignal.cpp62 unsigned long* local_set = reinterpret_cast<unsigned long*>(set); in SigAddSet() local
67 local_set[bit / LONG_BIT] |= 1UL << (bit % LONG_BIT); in SigAddSet()
91 unsigned long* local_set = reinterpret_cast<unsigned long*>(set); in SigDelSet() local
96 local_set[bit / LONG_BIT] &= ~(1UL << (bit % LONG_BIT)); in SigDelSet()
169 const unsigned long* local_set = reinterpret_cast<const unsigned long*>(set); in SigIsMember() local
174 return static_cast<int>((local_set[bit / LONG_BIT] >> (bit % LONG_BIT)) & 1); in SigIsMember()