Home
last modified time | relevance | path

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

/dports/lang/seed7/seed7/src/
H A Dbig_rtl.c83 #define POWER_OF_5_IN_BIGDIGIT 125 macro
127 #define POWER_OF_5_IN_BIGDIGIT 15625 macro
171 #define POWER_OF_5_IN_BIGDIGIT 1220703125 macro
665 bigdigit = (bigDigitType) (carry / POWER_OF_5_IN_BIGDIGIT); in uBigDivideByPowerOf5()
675 carry = (carry - bigdigit * POWER_OF_5_IN_BIGDIGIT) & BIGDIGIT_MASK; in uBigDivideByPowerOf5()
681 carry %= POWER_OF_5_IN_BIGDIGIT; in uBigDivideByPowerOf5()