reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
411 assert(I <= E && "Attempted to set backwards range!"); 412 assert(E <= size() && "Attempted to set out-of-bounds range!"); 414 if (I == E) return *this; 416 if (I / BITWORD_SIZE == E / BITWORD_SIZE) { 417 BitWord EMask = 1UL << (E % BITWORD_SIZE); 428 for (; I + BITWORD_SIZE <= E; I += BITWORD_SIZE) 431 BitWord PostfixMask = (1UL << (E % BITWORD_SIZE)) - 1; 432 if (I < E)