Searched refs:BILLION_L (Results 1 – 1 of 1) sorted by relevance
7 private static long BILLION_L = 1000000000L; field in NumberOutput176 long upper = v / BILLION_L; in outputLong()177 v -= (upper * BILLION_L); in outputLong()180 if (upper < BILLION_L) { in outputLong()184 long hi = upper / BILLION_L; in outputLong()185 upper -= (hi * BILLION_L); in outputLong()210 long upper = v / BILLION_L; in outputLong()211 v -= (upper * BILLION_L); in outputLong()214 if (upper < BILLION_L) { in outputLong()218 long hi = upper / BILLION_L; in outputLong()[all …]