HomeSort by relevance Sort by last modified time
    Searched defs:CEIL (Results 1 - 6 of 6) 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) ? \
111 w2 = CEIL(w1 + ( x1 - x2 ));
112 h2 = CEIL(h1 + ( y1 - y2 ));
120 /* simulate ceil() without math library */
  /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...]
  /external/libvncserver/x11vnc/
scan.c 635 * kludge, simple ceil+floor for non-negative doubles:
637 #define CEIL(x) ( (double) ((int) (x)) == (x) ? \
911 i2 = CEIL( (X2+1)/dx ) - 1;
919 j2 = CEIL( (Y2+1)/dy ) - 1;
987 J2 = (int) CEIL(y2) - 1;
1038 I2 = (int) CEIL(x2) - 1;
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmutils.h 619 #define CEIL(x, y) (((x) + ((y) - 1)) / (y))
  /packages/apps/Calculator/
arity-2.1.2.jar 

Completed in 214 milliseconds