Home
last modified time | relevance | path

Searched refs:int_value (Results 1 – 1 of 1) sorted by relevance

/arch/parisc/math-emu/
Dcnv_float.h63 #define Int_isinexact_to_sgl(int_value) ((int_value << 33 - SGL_EXP_LENGTH) != 0) argument
65 #define Sgl_roundnearest_from_int(int_value,sgl_value) \ argument
66 if (int_value & 1<<(SGL_EXP_LENGTH - 2)) /* round bit */ \
67 if (((int_value << 34 - SGL_EXP_LENGTH) != 0) || Slow(sgl_value)) \
224 #define Int_negate(int_value) int_value = -int_value argument
319 #define Suint_isinexact_to_sgl(int_value) \ argument
320 (int_value << 32 - SGL_EXP_LENGTH)