HomeSort by: relevance | last modified time | path
    Searched defs:fp_class (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/arch/sparc/fpu/
fpu_emu.h 83 int fp_class; /* see below */ member in struct:fpn
110 #define ISNAN(fp) ((fp)->fp_class < 0)
111 #define ISZERO(fp) ((fp)->fp_class == 0)
112 #define ISINF(fp) ((fp)->fp_class == FPC_INF)
130 if ((u_int)(x)->fp_class > (u_int)(y)->fp_class) \
  /src/sys/arch/powerpc/fpu/
fpu_emu.h 79 int fp_class; /* see below */ member in struct:fpn
106 #define ISSNAN(fp) ((fp)->fp_class == FPC_SNAN)
107 #define ISQNAN(fp) ((fp)->fp_class == FPC_QNAN)
108 #define ISNAN(fp) ((fp)->fp_class < 0)
109 #define ISZERO(fp) ((fp)->fp_class == 0)
110 #define ISINF(fp) ((fp)->fp_class == FPC_INF)
128 if ((u_int)(x)->fp_class > (u_int)(y)->fp_class) \
  /src/sys/arch/m68k/fpe/
fpu_emulate.h 80 int fp_class; /* see below */ member in struct:fpn
115 #define ISNAN(fp) ((fp)->fp_class < 0)
116 #define ISZERO(fp) ((fp)->fp_class == 0)
117 #define ISINF(fp) ((fp)->fp_class == FPC_INF)
135 if ((uint32_t)(x)->fp_class > (uint32_t)(y)->fp_class) \

Completed in 12 milliseconds