Searched defs:fractionSize (Results 1 - 1 of 1) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/
H A DGEOLocationElement.java258 static double fixToFloat(long value, int fractionSize, int width) { argument
262 return -(double) (value & (sign - 1)) / (double) (1L << fractionSize);
264 return (double) (value & (sign - 1)) / (double) (1L << fractionSize);
268 private static long floatToFix(double value, int fractionSize, int width) { argument
269 return Math.round(value * (1L << fractionSize)) & ((1L << width) - 1);

Completed in 2088 milliseconds