Lines Matching refs:ConvertToFraction
59 static fInt ConvertToFraction(int); /* Use this to convert an INT to a FINT */
119 fInt fPositiveOne = ConvertToFraction(1); in fExponential()
120 fInt fZERO = ConvertToFraction(0); in fExponential()
157 fInt fNegativeOne = ConvertToFraction(-1); in fNaturalLog()
158 fInt solution = ConvertToFraction(0); /*Starting off with baseline of 0 */ in fNaturalLog()
198 fInt f_CONSTANT_NEG13 = ConvertToFraction(-13); in fDecodeLogisticFuse()
199 fInt f_CONSTANT1 = ConvertToFraction(1); in fDecodeLogisticFuse()
224 static fInt ConvertToFraction(int X) /*Add all range checking here. Is it possible to make fInt a p… in ConvertToFraction() function
238 fInt CONSTANT_NEGONE = ConvertToFraction(-1); in fNegate()
292 return ConvertToFraction(X); in GetScaledFraction()
294 fValue = fDivide(ConvertToFraction(X * uPow(-1, bNEGATED)), ConvertToFraction(factor)); in GetScaledFraction()
367 fZERO = ConvertToFraction(0); in fDivide()
410 fInt fZERO = ConvertToFraction(0); in fSqrt()
433 twoShifted = ConvertToFraction(2); in fSqrt()
434 x_new = ConvertToFraction(seed); in fSqrt()
465 f_CONSTANT100 = ConvertToFraction(100); in SolveQuadracticEqn()
466 f_CONSTANT10 = ConvertToFraction(10); in SolveQuadracticEqn()
474 temp = fMultiply(ConvertToFraction(4), A); /* root = 4*A */ in SolveQuadracticEqn()
482 root_first = fDivide(root_first, ConvertToFraction(2)); /* [b +- Sqrt(b^2 - 4AC)]/[2] */ in SolveQuadracticEqn()
485 root_second = fDivide(root_second, ConvertToFraction(2)); /* [b +- Sqrt(b^2 - 4AC)]/[2] */ in SolveQuadracticEqn()