HomeSort by relevance Sort by last modified time
    Searched defs:RINT (Results 1 - 2 of 2) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
ComposableFunction.java 247 /** The {@code FastMath.rint} method wrapped as a {@link ComposableFunction}. */
248 public static final ComposableFunction RINT = new ComposableFunction() {
252 return FastMath.rint(d);
  /external/pdfium/third_party/libtiff/
tif_color.c 73 #define RINT(R) ((uint32)((R)>0?((R)+0.5):((R)-0.5)))
103 *r = RINT(cielab->Yr2r[i]);
107 *g = RINT(cielab->Yg2g[i]);
111 *b = RINT(cielab->Yb2b[i]);
118 #undef RINT

Completed in 970 milliseconds