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

  /external/compiler-rt/lib/
fixdfsi.c 26 const rep_t aRep = toRep(a);
27 const rep_t aAbs = aRep & absMask;
28 const int sign = aRep & signBit ? -1 : 1;
fixsfsi.c 24 const rep_t aRep = toRep(a);
25 const rep_t aAbs = aRep & absMask;
26 const int sign = aRep & signBit ? -1 : 1;
adddf3.c 23 rep_t aRep = toRep(a);
25 const rep_t aAbs = aRep & absMask;
59 const rep_t temp = aRep;
60 aRep = bRep;
65 int aExponent = aRep >> significandBits & maxExponent;
67 rep_t aSignificand = aRep & significandMask;
76 const rep_t resultSign = aRep & signBit;
77 const bool subtraction = (aRep ^ bRep) & signBit;
addsf3.c 22 rep_t aRep = toRep(a);
24 const rep_t aAbs = aRep & absMask;
58 const rep_t temp = aRep;
59 aRep = bRep;
64 int aExponent = aRep >> significandBits & maxExponent;
66 rep_t aSignificand = aRep & significandMask;
75 const rep_t resultSign = aRep & signBit;
76 const bool subtraction = (aRep ^ bRep) & signBit;
truncdfsf2.c 101 const src_rep_t aRep = srcToRep(a);
102 const src_rep_t aAbs = aRep & srcAbsMask;
103 const src_rep_t sign = aRep & srcSignMask;
145 const src_rep_t significand = (aRep & significandMask) | srcMinNormal;
extendsfdf2.c 95 const src_rep_t aRep = srcToRep(a);
96 const src_rep_t aAbs = aRep & srcAbsMask;
97 const src_rep_t sign = aRep & srcSignMask;

Completed in 36 milliseconds