Home
last modified time | relevance | path

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

/external/compiler-rt/lib/
Dadddf3.c24 rep_t bRep = toRep(b); in __adddf3() local
26 const rep_t bAbs = bRep & absMask; in __adddf3()
60 aRep = bRep; in __adddf3()
61 bRep = temp; in __adddf3()
66 int bExponent = bRep >> significandBits & maxExponent; in __adddf3()
68 rep_t bSignificand = bRep & significandMask; in __adddf3()
77 const bool subtraction = (aRep ^ bRep) & signBit; in __adddf3()
Daddsf3.c23 rep_t bRep = toRep(b); in __addsf3() local
25 const rep_t bAbs = bRep & absMask; in __addsf3()
59 aRep = bRep; in __addsf3()
60 bRep = temp; in __addsf3()
65 int bExponent = bRep >> significandBits & maxExponent; in __addsf3()
67 rep_t bSignificand = bRep & significandMask; in __addsf3()
76 const bool subtraction = (aRep ^ bRep) & signBit; in __addsf3()