Home | History | Annotate | Download | only in jit

Lines Matching refs:BitField

85     typedef uint64_t BitField;
94 COMPILE_ASSERT(entries <= (sizeof(BitField) * 8), AllocationTableLeaf_entries_fit_in_BitField);
114 BitField mask = ((1ull << count) - 1) << (alignment - count);
133 BitField mask = ((1ull << count) - 1) << entry;
169 BitField m_allocated;
240 typedef uint64_t BitField;
249 COMPILE_ASSERT(entries <= (sizeof(BitField) * 8), AllocationTableDirectory_entries_fit_in_BitField);
268 BitField bit = 1;
286 BitField allocated = m_full | m_hasSuballocation;
291 BitField mask = ((1ull << count) - 1) << (alignment - count);
311 BitField bit = 1ull << entry;
320 BitField mask = ((1ull << count) - 1) << entry;
359 BitField bit = 1ull << i;
368 BitField bit = 1ull << i;
383 BitField m_full;
384 BitField m_hasSuballocation;