Searched refs:implicitBit (Results 1 - 13 of 13) sorted by relevance

/freebsd-10.2-release/contrib/compiler-rt/lib/
H A Dfloatunsisf.c37 result = (rep_t)a << shift ^ implicitBit;
40 result = (rep_t)a >> shift ^ implicitBit;
H A Dmuldf3.c64 if (aAbs < implicitBit) scale += normalize(&aSignificand);
65 if (bAbs < implicitBit) scale += normalize(&bSignificand);
71 aSignificand |= implicitBit;
72 bSignificand |= implicitBit;
86 if (productHi & implicitBit) productExponent++;
H A Dmulsf3.c64 if (aAbs < implicitBit) scale += normalize(&aSignificand);
65 if (bAbs < implicitBit) scale += normalize(&bSignificand);
71 aSignificand |= implicitBit;
72 bSignificand |= implicitBit;
86 if (productHi & implicitBit) productExponent++;
H A Dfloatsisf.c45 result = (rep_t)a << shift ^ implicitBit;
48 result = (rep_t)a >> shift ^ implicitBit;
H A Dfixdfsi.c30 const rep_t significand = (aAbs & significandMask) | implicitBit;
H A Dfixsfsi.c28 const rep_t significand = (aAbs & significandMask) | implicitBit;
H A Dfloatsidf.c46 result = (rep_t)(unsigned int)a << shift ^ implicitBit;
H A Dfloatunsidf.c36 result = (rep_t)a << shift ^ implicitBit;
H A Dadddf3.c83 aSignificand = (aSignificand | implicitBit) << 3;
84 bSignificand = (bSignificand | implicitBit) << 3;
106 if (aSignificand < implicitBit << 3) {
107 const int shift = rep_clz(aSignificand) - rep_clz(implicitBit << 3);
118 if (aSignificand & implicitBit << 4) {
H A Daddsf3.c82 aSignificand = (aSignificand | implicitBit) << 3;
83 bSignificand = (bSignificand | implicitBit) << 3;
105 if (aSignificand < implicitBit << 3) {
106 const int shift = rep_clz(aSignificand) - rep_clz(implicitBit << 3);
117 if (aSignificand & implicitBit << 4) {
H A Ddivdf3.c67 if (aAbs < implicitBit) scale += normalize(&aSignificand);
68 if (bAbs < implicitBit) scale -= normalize(&bSignificand);
74 aSignificand |= implicitBit;
75 bSignificand |= implicitBit;
151 if (quotient < (implicitBit << 1)) {
H A Ddivsf3.c67 if (aAbs < implicitBit) scale += normalize(&aSignificand);
68 if (bAbs < implicitBit) scale -= normalize(&bSignificand);
74 aSignificand |= implicitBit;
75 bSignificand |= implicitBit;
136 if (quotient < (implicitBit << 1)) {
H A Dfp_lib.h96 #define implicitBit (REP_C(1) << significandBits) macro
97 #define significandMask (implicitBit - 1U)
103 #define quietBit (implicitBit >> 1)
117 const int shift = rep_clz(*significand) - rep_clz(implicitBit);

Completed in 381 milliseconds