Lines Matching defs:units
124 const unsigned units = (sizeof(unsigned long) * CHAR_BIT);
126 return ((p[n / units] & (1UL << (n % units))) != 0);
132 const unsigned units = (sizeof(unsigned long) * CHAR_BIT);
134 p[n / units] |= (1UL << (n % units));
140 const unsigned units = (sizeof(unsigned long) * CHAR_BIT);
142 p[n / units] &= ~(1UL << (n % units));
148 const unsigned units = (sizeof(unsigned long) * CHAR_BIT);
150 p[n / units] ^= (1UL << (n % units));
156 const unsigned int units = (sizeof(*ptr) * CHAR_BIT);
157 volatile unsigned long *const p = &ptr[bit / units];
158 const unsigned long mask = (1UL << (bit % units));
170 const unsigned int units = (sizeof(*ptr) * CHAR_BIT);
171 volatile unsigned long *const p = &ptr[bit / units];
172 const unsigned long mask = (1UL << (bit % units));
184 const unsigned int units = (sizeof(*ptr) * CHAR_BIT);
185 volatile unsigned long *const p = &ptr[bit / units];
186 const unsigned long mask = (1UL << (bit % units));
292 const unsigned int units = (sizeof(*ptr) * CHAR_BIT);
295 atomic_or_ulong(&ptr[bit / units], (1UL << (bit % units)));
301 const unsigned int units = (sizeof(*ptr) * CHAR_BIT);
304 atomic_and_ulong(&ptr[bit / units], ~(1UL << (bit % units)));
310 const unsigned int units = (sizeof(*ptr) * CHAR_BIT);
314 atomic_and_ulong(&ptr[bit / units], ~(1UL << (bit % units)));
320 const unsigned int units = (sizeof(*ptr) * CHAR_BIT);
321 volatile unsigned long *const p = &ptr[bit / units];
322 const unsigned long mask = (1UL << (bit % units));
332 const unsigned int units = (sizeof(*ptr) * CHAR_BIT);
333 volatile unsigned long *const p = &ptr[bit / units];
334 const unsigned long mask = (1UL << (bit % units));
347 const unsigned int units = (sizeof(*ptr) * CHAR_BIT);
348 volatile unsigned long *const p = &ptr[bit / units];
349 const unsigned long mask = (1UL << (bit % units));
362 const unsigned int units = (sizeof(*ptr) * CHAR_BIT);
363 volatile unsigned long *const p = &ptr[bit / units];
364 const unsigned long mask = (1UL << (bit % units));