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

Declarations

include/llvm/ADT/APFloat.h
  638   fltCategory getCategory() const;

References

lib/Support/APFloat.cpp
 4032   if (LHS.getCategory() == fcNaN) {
 4036   if (RHS.getCategory() == fcNaN) {
 4040   if (LHS.getCategory() == fcZero) {
 4044   if (RHS.getCategory() == fcZero) {
 4048   if (LHS.getCategory() == fcInfinity && RHS.getCategory() == fcInfinity &&
 4048   if (LHS.getCategory() == fcInfinity && RHS.getCategory() == fcInfinity &&
 4053   if (LHS.getCategory() == fcInfinity) {
 4057   if (RHS.getCategory() == fcInfinity) {
 4061   assert(LHS.getCategory() == fcNormal && RHS.getCategory() == fcNormal);
 4061   assert(LHS.getCategory() == fcNormal && RHS.getCategory() == fcNormal);
 4106   if (LHS.getCategory() == fcNaN) {
 4110   if (RHS.getCategory() == fcNaN) {
 4114   if ((LHS.getCategory() == fcZero && RHS.getCategory() == fcInfinity) ||
 4114   if ((LHS.getCategory() == fcZero && RHS.getCategory() == fcInfinity) ||
 4115       (LHS.getCategory() == fcInfinity && RHS.getCategory() == fcZero)) {
 4115       (LHS.getCategory() == fcInfinity && RHS.getCategory() == fcZero)) {
 4119   if (LHS.getCategory() == fcZero || LHS.getCategory() == fcInfinity) {
 4119   if (LHS.getCategory() == fcZero || LHS.getCategory() == fcInfinity) {
 4123   if (RHS.getCategory() == fcZero || RHS.getCategory() == fcInfinity) {
 4123   if (RHS.getCategory() == fcZero || RHS.getCategory() == fcInfinity) {
 4127   assert(LHS.getCategory() == fcNormal && RHS.getCategory() == fcNormal &&
 4127   assert(LHS.getCategory() == fcNormal && RHS.getCategory() == fcNormal &&
 4386   return getCategory() == fcNormal &&
 4393   if (getCategory() != fcNormal)
 4401   if (getCategory() != fcNormal)
 4444   if (Arg.getCategory() == APFloat::fcNormal)