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

References

lib/Support/APFloat.cpp
  646   unsigned int result = count;
  648   assert(count != 0 && count <= APFloatBase::integerPartWidth / 4);
  648   assert(count != 0 && count <= APFloatBase::integerPartWidth / 4);
  650   part >>= (APFloatBase::integerPartWidth - 4 * count);
  651   while (count--) {
  652     dst[count] = hexDigitChars[part & 0xf];