Searched refs:MEGA (Results 1 – 3 of 3) sorted by relevance
134 #define MEGA ((uint64_t)(KILO * 1000)) macro135 #define GIGA ((uint64_t)(MEGA * 1000))
526 } else if (v < MEGA * 10) { in bigno_f()527 pv = (double)v / MEGA; in bigno_f()529 } else if (v < MEGA * 100) { in bigno_f()530 pv = (double)v / MEGA; in bigno_f()532 } else if (v < MEGA * 1000) { in bigno_f()533 pv = (double)v / MEGA; in bigno_f()
268 #define MEGA (KILO * KILO) macro269 #define GIGA (MEGA * KILO)