Lines Matching defs:const
91 Interval::Interval(const Interval& that) : head(NULL), tail(NULL)
156 bool Interval::contains(int pos) const
164 bool Interval::overlaps(const Interval &that) const
189 void Interval::insert(const Interval &that)
206 int Interval::length() const
214 void Interval::print() const
219 for (const Range *r = head->next; r; r = r->next)
225 BitSet::andNot(const BitSet &set)
233 BitSet& BitSet::operator|=(const BitSet &set)
246 const unsigned int p = (size + 31) / 32;
247 const unsigned int n = (nBits + 31) / 32;
285 unsigned int BitSet::popCount() const
314 int BitSet::findFreeRange(unsigned int count, unsigned int max) const
316 const uint32_t m = (1 << count) - 1;
319 const unsigned int end = (max + 31) / 32;
379 void BitSet::print() const