HomeSort by relevance Sort by last modified time
    Searched refs:absMask (Results 1 - 11 of 11) sorted by null

  /external/compiler-rt/lib/
comparedf2.c 54 const rep_t aAbs = aInt & absMask;
55 const rep_t bAbs = bInt & absMask;
93 const rep_t aAbs = aInt & absMask;
94 const rep_t bAbs = bInt & absMask;
112 const rep_t aAbs = toRep(a) & absMask;
113 const rep_t bAbs = toRep(b) & absMask;
comparesf2.c 54 const rep_t aAbs = aInt & absMask;
55 const rep_t bAbs = bInt & absMask;
93 const rep_t aAbs = aInt & absMask;
94 const rep_t bAbs = bInt & absMask;
112 const rep_t aAbs = toRep(a) & absMask;
113 const rep_t bAbs = toRep(b) & absMask;
fixdfsi.c 27 const rep_t aAbs = aRep & absMask;
fixsfsi.c 25 const rep_t aAbs = aRep & absMask;
muldf3.c 34 const rep_t aAbs = toRep(a) & absMask;
35 const rep_t bAbs = toRep(b) & absMask;
mulsf3.c 34 const rep_t aAbs = toRep(a) & absMask;
35 const rep_t bAbs = toRep(b) & absMask;
adddf3.c 25 const rep_t aAbs = aRep & absMask;
26 const rep_t bAbs = bRep & absMask;
addsf3.c 24 const rep_t aAbs = aRep & absMask;
25 const rep_t bAbs = bRep & absMask;
divdf3.c 37 const rep_t aAbs = toRep(a) & absMask;
38 const rep_t bAbs = toRep(b) & absMask;
divsf3.c 37 const rep_t aAbs = toRep(a) & absMask;
38 const rep_t bAbs = toRep(b) & absMask;
fp_lib.h 99 #define absMask (signBit - 1U)
100 #define exponentMask (absMask ^ significandMask)

Completed in 59 milliseconds