Lines Matching refs:size_t
12 #define BITS_IN_SIZE_T (sizeof(size_t) * 8)
33 bool are_bits_clear(const ulong *lmap, size_t bit, size_t nbits) in are_bits_clear()
35 size_t pos = bit & 7; in are_bits_clear()
48 pos = ((size_t)map) & (sizeof(size_t) - 1); in are_bits_clear()
50 pos = sizeof(size_t) - pos; in are_bits_clear()
59 for (pos = nbits / BITS_IN_SIZE_T; pos; pos--, map += sizeof(size_t)) { in are_bits_clear()
60 if (*((size_t *)map)) in are_bits_clear()
81 bool are_bits_set(const ulong *lmap, size_t bit, size_t nbits) in are_bits_set()
84 size_t pos = bit & 7; in are_bits_set()
99 pos = ((size_t)map) & (sizeof(size_t) - 1); in are_bits_set()
101 pos = sizeof(size_t) - pos; in are_bits_set()
110 for (pos = nbits / BITS_IN_SIZE_T; pos; pos--, map += sizeof(size_t)) { in are_bits_set()
111 if (*((size_t *)map) != MINUS_ONE_T) in are_bits_set()