Home | History | Annotate | Download | only in wtf

Lines Matching refs:exponent

37     // if the exponent is negative the number decimal representation is of the form:
90 int exponent = (m_exponent >= 0) ? m_exponent : -m_exponent;
92 // Add the exponent
93 if (exponent >= 100)
95 if (exponent >= 10)
110 // if the exponent is negative the number decimal representation is of the form:
180 int exponent;
183 exponent = m_exponent;
186 exponent = -m_exponent;
189 // Add the exponent
190 if (exponent >= 100)
191 *next++ = '0' + exponent / 100;
192 if (exponent >= 10)
193 *next++ = '0' + (exponent % 100) / 10;
194 *next++ = '0' + exponent % 10;