Home
last modified time | relevance | path

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

/external/jackson-core/src/main/java/com/fasterxml/jackson/core/io/
DNumberOutput.java7 private static long BILLION_L = 1000000000L; field in NumberOutput
176 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 …]