Lines Matching refs:ConvertToFraction

53 static fInt ConvertToFraction(int);                       /* Use this to convert an INT to a FINT */
112 fInt fPositiveOne = ConvertToFraction(1); in fExponential()
113 fInt fZERO = ConvertToFraction(0); in fExponential()
150 fInt fNegativeOne = ConvertToFraction(-1); in fNaturalLog()
151 fInt solution = ConvertToFraction(0); /*Starting off with baseline of 0 */ in fNaturalLog()
191 fInt f_CONSTANT_NEG13 = ConvertToFraction(-13); in fDecodeLogisticFuse()
192 fInt f_CONSTANT1 = ConvertToFraction(1); in fDecodeLogisticFuse()
217 static fInt ConvertToFraction(int X) /*Add all range checking here. Is it possible to make fInt a p… in ConvertToFraction() function
231 fInt CONSTANT_NEGONE = ConvertToFraction(-1); in fNegate()
285 return ConvertToFraction(X); in GetScaledFraction()
287 fValue = fDivide(ConvertToFraction(X * uPow(-1, bNEGATED)), ConvertToFraction(factor)); in GetScaledFraction()
360 fZERO = ConvertToFraction(0); in fDivide()
403 fInt fZERO = ConvertToFraction(0); in fSqrt()
426 twoShifted = ConvertToFraction(2); in fSqrt()
427 x_new = ConvertToFraction(seed); in fSqrt()
458 f_CONSTANT100 = ConvertToFraction(100); in SolveQuadracticEqn()
459 f_CONSTANT10 = ConvertToFraction(10); in SolveQuadracticEqn()
467 temp = fMultiply(ConvertToFraction(4), A); /* root = 4*A */ in SolveQuadracticEqn()
475 root_first = fDivide(root_first, ConvertToFraction(2)); /* [b +- Sqrt(b^2 - 4AC)]/[2] */ in SolveQuadracticEqn()
478 root_second = fDivide(root_second, ConvertToFraction(2)); /* [b +- Sqrt(b^2 - 4AC)]/[2] */ in SolveQuadracticEqn()