Home | History | Annotate | Download | only in ppc

Lines Matching refs:int64_t

5 /* int64_t __fixunstfdi(long double x);
6 * This file implements the PowerPC 128-bit double-double -> int64_t conversion
26 int64_t result = hibits.x & INT64_C(0x000fffffffffffff); /* mantissa(hi) */
30 const int64_t hiNegationMask = ((int64_t)(hibits.x)) >> 63;
36 int64_t tailMantissa = lobits.x & INT64_C(0x000fffffffffffff);
41 const int64_t loNegationMask = ((int64_t)(lobits.x)) >> 63;
42 const int64_t negationMask = loNegationMask ^ hiNegationMask;
74 int64_t result = INT64_MIN;
83 int64_t tailMantissa = lobits.x & INT64_C(0x000fffffffffffff);