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))
527 } else if (v < MEGA * 10) { in bigno_f()528 pv = (double)v / MEGA; in bigno_f()530 } else if (v < MEGA * 100) { in bigno_f()531 pv = (double)v / MEGA; in bigno_f()533 } else if (v < MEGA * 1000) { in bigno_f()534 pv = (double)v / MEGA; in bigno_f()
268 #define MEGA (KILO * KILO) macro269 #define GIGA (MEGA * KILO)