Searched refs:mask_t (Results 1 – 1 of 1) sorted by relevance
244 typedef unsigned char mask_t; typedef245 static const int BITS_PER_MASK_T = sizeof(mask_t) * CHAR_BIT;248 mask_t *mask;249 Mask() { mask = (mask_t *)__kmp_allocate(__kmp_affin_mask_size); } in Mask()255 mask[i / BITS_PER_MASK_T] |= ((mask_t)1 << (i % BITS_PER_MASK_T)); in set()258 return (mask[i / BITS_PER_MASK_T] & ((mask_t)1 << (i % BITS_PER_MASK_T))); in is_set()261 mask[i / BITS_PER_MASK_T] &= ~((mask_t)1 << (i % BITS_PER_MASK_T)); in clear()370 typedef ULONG_PTR mask_t; typedef371 static const int BITS_PER_MASK_T = sizeof(mask_t) * CHAR_BIT;372 mask_t *mask;[all …]