Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_compare_impl.inc47 const rep_t aAbs = aInt & absMask;
48 const rep_t bAbs = bInt & absMask;
91 const rep_t aAbs = aInt & absMask;
92 const rep_t bAbs = bInt & absMask;
116 const rep_t aAbs = toRep(a) & absMask;
117 const rep_t bAbs = toRep(b) & absMask;
H A Dfp_lib.h220 #define absMask (signBit - 1U) macro
221 #define exponentMask (absMask ^ significandMask)
282 rep &= absMask; in __compiler_rt_logbX()
H A Dfp_mul_impl.inc29 const rep_t aAbs = toRep(a) & absMask;
30 const rep_t bAbs = toRep(b) & absMask;
H A Dfp_fixuint_impl.inc19 const rep_t aAbs = aRep & absMask;
H A Dfp_fixint_impl.inc21 const rep_t aAbs = aRep & absMask;
H A Dfp_add_impl.inc20 const rep_t aAbs = aRep & absMask;
21 const rep_t bAbs = bRep & absMask;
H A Dfp_div_impl.inc49 const rep_t aAbs = toRep(a) & absMask;
50 const rep_t bAbs = toRep(b) & absMask;