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

  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
ComposableFunction.java 176 /** The {@code FastMath.ceil} method wrapped as a {@link ComposableFunction}. */
177 public static final ComposableFunction CEIL = new ComposableFunction() {
181 return FastMath.ceil(d);
  /external/libvncserver/libvncserver/
scale.c 65 #define CEIL(x) ( (double) ((int) (x)) == (x) ? \
117 w2 = CEIL(w1 + ( x1 - x2 ));
118 h2 = CEIL(h1 + ( y1 - y2 ));
126 /* simulate ceil() without math library */
  /system/netd/server/
MDnsSdListener.cpp 46 #define CEIL(x, y) (((x) + (y) - 1) / (y))
264 size_t dstLength = CEIL(CEIL(txtLen * 4, 3), 4) * 4 + 1;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
system.h 349 #define CEIL(x,y) (((x) + (y) - 1) / (y))
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmutils.h 619 #define CEIL(x, y) (((x) + ((y) - 1)) / (y))

Completed in 167 milliseconds