reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Support/Endian.h
  155   assert(startBit < 8);
  156   if (startBit == 0)
  170     val[0] &= ((make_unsigned_t<value_type>)1 << startBit) - 1;
  172         (sizeof(value_type) * 8) - startBit;
  174     if (startBit > 0) {
  180       lowerVal <<= startBit;
  186     val[1] &= ~(((make_unsigned_t<value_type>)1 << startBit) - 1);
  190     upperVal &= ((make_unsigned_t<value_type>)1 << startBit) - 1;